Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1 | /* |
| 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_READER_H |
| 18 | #define _UI_INPUT_READER_H |
| 19 | |
| 20 | #include "EventHub.h" |
| 21 | #include "PointerControllerInterface.h" |
| 22 | #include "InputListener.h" |
| 23 | |
Santos Cordon | fa5cf46 | 2017-04-05 10:37:00 -0700 | [diff] [blame] | 24 | #include <input/DisplayViewport.h> |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 25 | #include <input/Input.h> |
| 26 | #include <input/VelocityControl.h> |
| 27 | #include <input/VelocityTracker.h> |
| 28 | #include <ui/DisplayInfo.h> |
| 29 | #include <utils/KeyedVector.h> |
Siarhei Vishniakou | e54cb85 | 2017-03-21 17:48:16 -0700 | [diff] [blame] | 30 | #include <utils/Condition.h> |
| 31 | #include <utils/Thread.h> |
| 32 | #include <utils/Mutex.h> |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 33 | #include <utils/Timers.h> |
| 34 | #include <utils/RefBase.h> |
| 35 | #include <utils/String8.h> |
| 36 | #include <utils/BitSet.h> |
Siarhei Vishniakou | e54cb85 | 2017-03-21 17:48:16 -0700 | [diff] [blame] | 37 | #include <utils/SortedVector.h> |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 38 | |
| 39 | #include <stddef.h> |
| 40 | #include <unistd.h> |
| 41 | |
| 42 | // Maximum supported size of a vibration pattern. |
| 43 | // Must be at least 2. |
| 44 | #define MAX_VIBRATE_PATTERN_SIZE 100 |
| 45 | |
| 46 | // Maximum allowable delay value in a vibration pattern before |
| 47 | // which the delay will be truncated. |
| 48 | #define MAX_VIBRATE_PATTERN_DELAY_NSECS (1000000 * 1000000000LL) |
| 49 | |
| 50 | namespace android { |
| 51 | |
| 52 | class InputDevice; |
| 53 | class InputMapper; |
| 54 | |
| 55 | /* |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 56 | * Input reader configuration. |
| 57 | * |
| 58 | * Specifies various options that modify the behavior of the input reader. |
| 59 | */ |
| 60 | struct InputReaderConfiguration { |
| 61 | // Describes changes that have occurred. |
| 62 | enum { |
| 63 | // The pointer speed changed. |
| 64 | CHANGE_POINTER_SPEED = 1 << 0, |
| 65 | |
| 66 | // The pointer gesture control changed. |
| 67 | CHANGE_POINTER_GESTURE_ENABLEMENT = 1 << 1, |
| 68 | |
| 69 | // The display size or orientation changed. |
| 70 | CHANGE_DISPLAY_INFO = 1 << 2, |
| 71 | |
| 72 | // The visible touches option changed. |
| 73 | CHANGE_SHOW_TOUCHES = 1 << 3, |
| 74 | |
| 75 | // The keyboard layouts must be reloaded. |
| 76 | CHANGE_KEYBOARD_LAYOUTS = 1 << 4, |
| 77 | |
| 78 | // The device name alias supplied by the may have changed for some devices. |
| 79 | CHANGE_DEVICE_ALIAS = 1 << 5, |
| 80 | |
Jason Gerecke | 12d6baa | 2014-01-27 18:34:20 -0800 | [diff] [blame] | 81 | // The location calibration matrix changed. |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 82 | CHANGE_TOUCH_AFFINE_TRANSFORMATION = 1 << 6, |
| 83 | |
| 84 | // The presence of an external stylus has changed. |
| 85 | CHANGE_EXTERNAL_STYLUS_PRESENCE = 1 << 7, |
Jason Gerecke | 12d6baa | 2014-01-27 18:34:20 -0800 | [diff] [blame] | 86 | |
Vladislav Kaznacheev | 78f97b3 | 2016-12-15 18:14:58 -0800 | [diff] [blame] | 87 | // The pointer capture mode has changed. |
| 88 | CHANGE_POINTER_CAPTURE = 1 << 8, |
| 89 | |
Siarhei Vishniakou | e54cb85 | 2017-03-21 17:48:16 -0700 | [diff] [blame] | 90 | // The set of disabled input devices (disabledDevices) has changed. |
| 91 | CHANGE_ENABLED_STATE = 1 << 9, |
| 92 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 93 | // All devices must be reopened. |
| 94 | CHANGE_MUST_REOPEN = 1 << 31, |
| 95 | }; |
| 96 | |
| 97 | // Gets the amount of time to disable virtual keys after the screen is touched |
| 98 | // in order to filter out accidental virtual key presses due to swiping gestures |
| 99 | // or taps near the edge of the display. May be 0 to disable the feature. |
| 100 | nsecs_t virtualKeyQuietTime; |
| 101 | |
| 102 | // The excluded device names for the platform. |
| 103 | // Devices with these names will be ignored. |
| 104 | Vector<String8> excludedDeviceNames; |
| 105 | |
| 106 | // Velocity control parameters for mouse pointer movements. |
| 107 | VelocityControlParameters pointerVelocityControlParameters; |
| 108 | |
| 109 | // Velocity control parameters for mouse wheel movements. |
| 110 | VelocityControlParameters wheelVelocityControlParameters; |
| 111 | |
| 112 | // True if pointer gestures are enabled. |
| 113 | bool pointerGesturesEnabled; |
| 114 | |
| 115 | // Quiet time between certain pointer gesture transitions. |
| 116 | // Time to allow for all fingers or buttons to settle into a stable state before |
| 117 | // starting a new gesture. |
| 118 | nsecs_t pointerGestureQuietInterval; |
| 119 | |
| 120 | // The minimum speed that a pointer must travel for us to consider switching the active |
| 121 | // touch pointer to it during a drag. This threshold is set to avoid switching due |
| 122 | // to noise from a finger resting on the touch pad (perhaps just pressing it down). |
| 123 | float pointerGestureDragMinSwitchSpeed; // in pixels per second |
| 124 | |
| 125 | // Tap gesture delay time. |
| 126 | // The time between down and up must be less than this to be considered a tap. |
| 127 | nsecs_t pointerGestureTapInterval; |
| 128 | |
| 129 | // Tap drag gesture delay time. |
| 130 | // The time between the previous tap's up and the next down must be less than |
| 131 | // this to be considered a drag. Otherwise, the previous tap is finished and a |
| 132 | // new tap begins. |
| 133 | // |
| 134 | // Note that the previous tap will be held down for this entire duration so this |
| 135 | // interval must be shorter than the long press timeout. |
| 136 | nsecs_t pointerGestureTapDragInterval; |
| 137 | |
| 138 | // The distance in pixels that the pointer is allowed to move from initial down |
| 139 | // to up and still be called a tap. |
| 140 | float pointerGestureTapSlop; // in pixels |
| 141 | |
| 142 | // Time after the first touch points go down to settle on an initial centroid. |
| 143 | // This is intended to be enough time to handle cases where the user puts down two |
| 144 | // fingers at almost but not quite exactly the same time. |
| 145 | nsecs_t pointerGestureMultitouchSettleInterval; |
| 146 | |
| 147 | // The transition from PRESS to SWIPE or FREEFORM gesture mode is made when |
| 148 | // at least two pointers have moved at least this far from their starting place. |
| 149 | float pointerGestureMultitouchMinDistance; // in pixels |
| 150 | |
| 151 | // The transition from PRESS to SWIPE gesture mode can only occur when the |
| 152 | // cosine of the angle between the two vectors is greater than or equal to than this value |
| 153 | // which indicates that the vectors are oriented in the same direction. |
| 154 | // When the vectors are oriented in the exactly same direction, the cosine is 1.0. |
| 155 | // (In exactly opposite directions, the cosine is -1.0.) |
| 156 | float pointerGestureSwipeTransitionAngleCosine; |
| 157 | |
| 158 | // The transition from PRESS to SWIPE gesture mode can only occur when the |
| 159 | // fingers are no more than this far apart relative to the diagonal size of |
| 160 | // the touch pad. For example, a ratio of 0.5 means that the fingers must be |
| 161 | // no more than half the diagonal size of the touch pad apart. |
| 162 | float pointerGestureSwipeMaxWidthRatio; |
| 163 | |
| 164 | // The gesture movement speed factor relative to the size of the display. |
| 165 | // Movement speed applies when the fingers are moving in the same direction. |
| 166 | // Without acceleration, a full swipe of the touch pad diagonal in movement mode |
| 167 | // will cover this portion of the display diagonal. |
| 168 | float pointerGestureMovementSpeedRatio; |
| 169 | |
| 170 | // The gesture zoom speed factor relative to the size of the display. |
| 171 | // Zoom speed applies when the fingers are mostly moving relative to each other |
| 172 | // to execute a scale gesture or similar. |
| 173 | // Without acceleration, a full swipe of the touch pad diagonal in zoom mode |
| 174 | // will cover this portion of the display diagonal. |
| 175 | float pointerGestureZoomSpeedRatio; |
| 176 | |
| 177 | // True to show the location of touches on the touch screen as spots. |
| 178 | bool showTouches; |
| 179 | |
Vladislav Kaznacheev | 78f97b3 | 2016-12-15 18:14:58 -0800 | [diff] [blame] | 180 | // True if pointer capture is enabled. |
| 181 | bool pointerCapture; |
| 182 | |
Siarhei Vishniakou | e54cb85 | 2017-03-21 17:48:16 -0700 | [diff] [blame] | 183 | // The set of currently disabled input devices. |
| 184 | SortedVector<int32_t> disabledDevices; |
| 185 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 186 | InputReaderConfiguration() : |
| 187 | virtualKeyQuietTime(0), |
| 188 | pointerVelocityControlParameters(1.0f, 500.0f, 3000.0f, 3.0f), |
| 189 | wheelVelocityControlParameters(1.0f, 15.0f, 50.0f, 4.0f), |
| 190 | pointerGesturesEnabled(true), |
| 191 | pointerGestureQuietInterval(100 * 1000000LL), // 100 ms |
| 192 | pointerGestureDragMinSwitchSpeed(50), // 50 pixels per second |
| 193 | pointerGestureTapInterval(150 * 1000000LL), // 150 ms |
| 194 | pointerGestureTapDragInterval(150 * 1000000LL), // 150 ms |
| 195 | pointerGestureTapSlop(10.0f), // 10 pixels |
| 196 | pointerGestureMultitouchSettleInterval(100 * 1000000LL), // 100 ms |
| 197 | pointerGestureMultitouchMinDistance(15), // 15 pixels |
| 198 | pointerGestureSwipeTransitionAngleCosine(0.2588f), // cosine of 75 degrees |
| 199 | pointerGestureSwipeMaxWidthRatio(0.25f), |
| 200 | pointerGestureMovementSpeedRatio(0.8f), |
| 201 | pointerGestureZoomSpeedRatio(0.3f), |
| 202 | showTouches(false) { } |
| 203 | |
Santos Cordon | fa5cf46 | 2017-04-05 10:37:00 -0700 | [diff] [blame] | 204 | bool getDisplayViewport(ViewportType viewportType, const String8* displayId, |
| 205 | DisplayViewport* outViewport) const; |
| 206 | void setPhysicalDisplayViewport(ViewportType viewportType, const DisplayViewport& viewport); |
| 207 | void setVirtualDisplayViewports(const Vector<DisplayViewport>& viewports); |
| 208 | |
| 209 | |
| 210 | void dump(String8& dump) const; |
| 211 | void dumpViewport(String8& dump, const DisplayViewport& viewport) const; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 212 | |
| 213 | private: |
| 214 | DisplayViewport mInternalDisplay; |
| 215 | DisplayViewport mExternalDisplay; |
Santos Cordon | fa5cf46 | 2017-04-05 10:37:00 -0700 | [diff] [blame] | 216 | Vector<DisplayViewport> mVirtualDisplays; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | |
Jason Gerecke | af126fb | 2012-05-10 14:22:47 -0700 | [diff] [blame] | 220 | struct TouchAffineTransformation { |
| 221 | float x_scale; |
| 222 | float x_ymix; |
| 223 | float x_offset; |
| 224 | float y_xmix; |
| 225 | float y_scale; |
| 226 | float y_offset; |
| 227 | |
| 228 | TouchAffineTransformation() : |
| 229 | x_scale(1.0f), x_ymix(0.0f), x_offset(0.0f), |
| 230 | y_xmix(0.0f), y_scale(1.0f), y_offset(0.0f) { |
| 231 | } |
| 232 | |
Jason Gerecke | 489fda8 | 2012-09-07 17:19:40 -0700 | [diff] [blame] | 233 | TouchAffineTransformation(float xscale, float xymix, float xoffset, |
| 234 | float yxmix, float yscale, float yoffset) : |
| 235 | x_scale(xscale), x_ymix(xymix), x_offset(xoffset), |
| 236 | y_xmix(yxmix), y_scale(yscale), y_offset(yoffset) { |
| 237 | } |
| 238 | |
Jason Gerecke | af126fb | 2012-05-10 14:22:47 -0700 | [diff] [blame] | 239 | void applyTo(float& x, float& y) const; |
| 240 | }; |
| 241 | |
| 242 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 243 | /* |
| 244 | * Input reader policy interface. |
| 245 | * |
| 246 | * The input reader policy is used by the input reader to interact with the Window Manager |
| 247 | * and other system components. |
| 248 | * |
| 249 | * The actual implementation is partially supported by callbacks into the DVM |
| 250 | * via JNI. This interface is also mocked in the unit tests. |
| 251 | * |
| 252 | * These methods must NOT re-enter the input reader since they may be called while |
| 253 | * holding the input reader lock. |
| 254 | */ |
| 255 | class InputReaderPolicyInterface : public virtual RefBase { |
| 256 | protected: |
| 257 | InputReaderPolicyInterface() { } |
| 258 | virtual ~InputReaderPolicyInterface() { } |
| 259 | |
| 260 | public: |
| 261 | /* Gets the input reader configuration. */ |
| 262 | virtual void getReaderConfiguration(InputReaderConfiguration* outConfig) = 0; |
| 263 | |
| 264 | /* Gets a pointer controller associated with the specified cursor device (ie. a mouse). */ |
| 265 | virtual sp<PointerControllerInterface> obtainPointerController(int32_t deviceId) = 0; |
| 266 | |
| 267 | /* Notifies the input reader policy that some input devices have changed |
| 268 | * and provides information about all current input devices. |
| 269 | */ |
| 270 | virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) = 0; |
| 271 | |
| 272 | /* Gets the keyboard layout for a particular input device. */ |
| 273 | virtual sp<KeyCharacterMap> getKeyboardLayoutOverlay( |
| 274 | const InputDeviceIdentifier& identifier) = 0; |
| 275 | |
| 276 | /* Gets a user-supplied alias for a particular input device, or an empty string if none. */ |
| 277 | virtual String8 getDeviceAlias(const InputDeviceIdentifier& identifier) = 0; |
Jason Gerecke | 12d6baa | 2014-01-27 18:34:20 -0800 | [diff] [blame] | 278 | |
| 279 | /* Gets the affine calibration associated with the specified device. */ |
| 280 | virtual TouchAffineTransformation getTouchAffineTransformation( |
Jason Gerecke | 71b16e8 | 2014-03-10 09:47:59 -0700 | [diff] [blame] | 281 | const String8& inputDeviceDescriptor, int32_t surfaceRotation) = 0; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 282 | }; |
| 283 | |
| 284 | |
| 285 | /* Processes raw input events and sends cooked event data to an input listener. */ |
| 286 | class InputReaderInterface : public virtual RefBase { |
| 287 | protected: |
| 288 | InputReaderInterface() { } |
| 289 | virtual ~InputReaderInterface() { } |
| 290 | |
| 291 | public: |
| 292 | /* Dumps the state of the input reader. |
| 293 | * |
| 294 | * This method may be called on any thread (usually by the input manager). */ |
| 295 | virtual void dump(String8& dump) = 0; |
| 296 | |
| 297 | /* Called by the heatbeat to ensures that the reader has not deadlocked. */ |
| 298 | virtual void monitor() = 0; |
| 299 | |
Siarhei Vishniakou | e54cb85 | 2017-03-21 17:48:16 -0700 | [diff] [blame] | 300 | /* Returns true if the input device is enabled. */ |
| 301 | virtual bool isInputDeviceEnabled(int32_t deviceId) = 0; |
| 302 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 303 | /* Runs a single iteration of the processing loop. |
| 304 | * Nominally reads and processes one incoming message from the EventHub. |
| 305 | * |
| 306 | * This method should be called on the input reader thread. |
| 307 | */ |
| 308 | virtual void loopOnce() = 0; |
| 309 | |
| 310 | /* Gets information about all input devices. |
| 311 | * |
| 312 | * This method may be called on any thread (usually by the input manager). |
| 313 | */ |
| 314 | virtual void getInputDevices(Vector<InputDeviceInfo>& outInputDevices) = 0; |
| 315 | |
| 316 | /* Query current input state. */ |
| 317 | virtual int32_t getScanCodeState(int32_t deviceId, uint32_t sourceMask, |
| 318 | int32_t scanCode) = 0; |
| 319 | virtual int32_t getKeyCodeState(int32_t deviceId, uint32_t sourceMask, |
| 320 | int32_t keyCode) = 0; |
| 321 | virtual int32_t getSwitchState(int32_t deviceId, uint32_t sourceMask, |
| 322 | int32_t sw) = 0; |
| 323 | |
Andrii Kulian | 763a3a4 | 2016-03-08 10:46:16 -0800 | [diff] [blame] | 324 | /* Toggle Caps Lock */ |
| 325 | virtual void toggleCapsLockState(int32_t deviceId) = 0; |
| 326 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 327 | /* Determine whether physical keys exist for the given framework-domain key codes. */ |
| 328 | virtual bool hasKeys(int32_t deviceId, uint32_t sourceMask, |
| 329 | size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) = 0; |
| 330 | |
| 331 | /* Requests that a reconfiguration of all input devices. |
| 332 | * The changes flag is a bitfield that indicates what has changed and whether |
| 333 | * the input devices must all be reopened. */ |
| 334 | virtual void requestRefreshConfiguration(uint32_t changes) = 0; |
| 335 | |
| 336 | /* Controls the vibrator of a particular input device. */ |
| 337 | virtual void vibrate(int32_t deviceId, const nsecs_t* pattern, size_t patternSize, |
| 338 | ssize_t repeat, int32_t token) = 0; |
| 339 | virtual void cancelVibrate(int32_t deviceId, int32_t token) = 0; |
| 340 | }; |
| 341 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 342 | struct StylusState { |
| 343 | /* Time the stylus event was received. */ |
| 344 | nsecs_t when; |
| 345 | /* Pressure as reported by the stylus, normalized to the range [0, 1.0]. */ |
| 346 | float pressure; |
| 347 | /* The state of the stylus buttons as a bitfield (e.g. AMOTION_EVENT_BUTTON_SECONDARY). */ |
| 348 | uint32_t buttons; |
| 349 | /* Which tool type the stylus is currently using (e.g. AMOTION_EVENT_TOOL_TYPE_ERASER). */ |
| 350 | int32_t toolType; |
| 351 | |
| 352 | void copyFrom(const StylusState& other) { |
| 353 | when = other.when; |
| 354 | pressure = other.pressure; |
| 355 | buttons = other.buttons; |
| 356 | toolType = other.toolType; |
| 357 | } |
| 358 | |
| 359 | void clear() { |
| 360 | when = LLONG_MAX; |
| 361 | pressure = 0.f; |
| 362 | buttons = 0; |
| 363 | toolType = AMOTION_EVENT_TOOL_TYPE_UNKNOWN; |
| 364 | } |
| 365 | }; |
| 366 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 367 | |
| 368 | /* Internal interface used by individual input devices to access global input device state |
| 369 | * and parameters maintained by the input reader. |
| 370 | */ |
| 371 | class InputReaderContext { |
| 372 | public: |
| 373 | InputReaderContext() { } |
| 374 | virtual ~InputReaderContext() { } |
| 375 | |
| 376 | virtual void updateGlobalMetaState() = 0; |
| 377 | virtual int32_t getGlobalMetaState() = 0; |
| 378 | |
| 379 | virtual void disableVirtualKeysUntil(nsecs_t time) = 0; |
| 380 | virtual bool shouldDropVirtualKey(nsecs_t now, |
| 381 | InputDevice* device, int32_t keyCode, int32_t scanCode) = 0; |
| 382 | |
| 383 | virtual void fadePointer() = 0; |
| 384 | |
| 385 | virtual void requestTimeoutAtTime(nsecs_t when) = 0; |
| 386 | virtual int32_t bumpGeneration() = 0; |
| 387 | |
Michael Wright | b85401d | 2015-04-17 18:35:15 +0100 | [diff] [blame] | 388 | virtual void getExternalStylusDevices(Vector<InputDeviceInfo>& outDevices) = 0; |
| 389 | virtual void dispatchExternalStylusState(const StylusState& outState) = 0; |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 390 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 391 | virtual InputReaderPolicyInterface* getPolicy() = 0; |
| 392 | virtual InputListenerInterface* getListener() = 0; |
| 393 | virtual EventHubInterface* getEventHub() = 0; |
| 394 | }; |
| 395 | |
| 396 | |
| 397 | /* The input reader reads raw event data from the event hub and processes it into input events |
| 398 | * that it sends to the input listener. Some functions of the input reader, such as early |
| 399 | * event filtering in low power states, are controlled by a separate policy object. |
| 400 | * |
| 401 | * The InputReader owns a collection of InputMappers. Most of the work it does happens |
| 402 | * on the input reader thread but the InputReader can receive queries from other system |
| 403 | * components running on arbitrary threads. To keep things manageable, the InputReader |
| 404 | * uses a single Mutex to guard its state. The Mutex may be held while calling into the |
| 405 | * EventHub or the InputReaderPolicy but it is never held while calling into the |
| 406 | * InputListener. |
| 407 | */ |
| 408 | class InputReader : public InputReaderInterface { |
| 409 | public: |
| 410 | InputReader(const sp<EventHubInterface>& eventHub, |
| 411 | const sp<InputReaderPolicyInterface>& policy, |
| 412 | const sp<InputListenerInterface>& listener); |
| 413 | virtual ~InputReader(); |
| 414 | |
| 415 | virtual void dump(String8& dump); |
| 416 | virtual void monitor(); |
| 417 | |
| 418 | virtual void loopOnce(); |
| 419 | |
| 420 | virtual void getInputDevices(Vector<InputDeviceInfo>& outInputDevices); |
| 421 | |
Siarhei Vishniakou | e54cb85 | 2017-03-21 17:48:16 -0700 | [diff] [blame] | 422 | virtual bool isInputDeviceEnabled(int32_t deviceId); |
| 423 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 424 | virtual int32_t getScanCodeState(int32_t deviceId, uint32_t sourceMask, |
| 425 | int32_t scanCode); |
| 426 | virtual int32_t getKeyCodeState(int32_t deviceId, uint32_t sourceMask, |
| 427 | int32_t keyCode); |
| 428 | virtual int32_t getSwitchState(int32_t deviceId, uint32_t sourceMask, |
| 429 | int32_t sw); |
| 430 | |
Andrii Kulian | 763a3a4 | 2016-03-08 10:46:16 -0800 | [diff] [blame] | 431 | virtual void toggleCapsLockState(int32_t deviceId); |
| 432 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 433 | virtual bool hasKeys(int32_t deviceId, uint32_t sourceMask, |
| 434 | size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags); |
| 435 | |
| 436 | virtual void requestRefreshConfiguration(uint32_t changes); |
| 437 | |
| 438 | virtual void vibrate(int32_t deviceId, const nsecs_t* pattern, size_t patternSize, |
| 439 | ssize_t repeat, int32_t token); |
| 440 | virtual void cancelVibrate(int32_t deviceId, int32_t token); |
| 441 | |
| 442 | protected: |
| 443 | // These members are protected so they can be instrumented by test cases. |
| 444 | virtual InputDevice* createDeviceLocked(int32_t deviceId, int32_t controllerNumber, |
| 445 | const InputDeviceIdentifier& identifier, uint32_t classes); |
| 446 | |
| 447 | class ContextImpl : public InputReaderContext { |
| 448 | InputReader* mReader; |
| 449 | |
| 450 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 451 | explicit ContextImpl(InputReader* reader); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 452 | |
| 453 | virtual void updateGlobalMetaState(); |
| 454 | virtual int32_t getGlobalMetaState(); |
| 455 | virtual void disableVirtualKeysUntil(nsecs_t time); |
| 456 | virtual bool shouldDropVirtualKey(nsecs_t now, |
| 457 | InputDevice* device, int32_t keyCode, int32_t scanCode); |
| 458 | virtual void fadePointer(); |
| 459 | virtual void requestTimeoutAtTime(nsecs_t when); |
| 460 | virtual int32_t bumpGeneration(); |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 461 | virtual void getExternalStylusDevices(Vector<InputDeviceInfo>& outDevices); |
| 462 | virtual void dispatchExternalStylusState(const StylusState& outState); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 463 | virtual InputReaderPolicyInterface* getPolicy(); |
| 464 | virtual InputListenerInterface* getListener(); |
| 465 | virtual EventHubInterface* getEventHub(); |
| 466 | } mContext; |
| 467 | |
| 468 | friend class ContextImpl; |
| 469 | |
| 470 | private: |
| 471 | Mutex mLock; |
| 472 | |
| 473 | Condition mReaderIsAliveCondition; |
| 474 | |
| 475 | sp<EventHubInterface> mEventHub; |
| 476 | sp<InputReaderPolicyInterface> mPolicy; |
| 477 | sp<QueuedInputListener> mQueuedListener; |
| 478 | |
| 479 | InputReaderConfiguration mConfig; |
| 480 | |
| 481 | // The event queue. |
| 482 | static const int EVENT_BUFFER_SIZE = 256; |
| 483 | RawEvent mEventBuffer[EVENT_BUFFER_SIZE]; |
| 484 | |
| 485 | KeyedVector<int32_t, InputDevice*> mDevices; |
| 486 | |
| 487 | // low-level input event decoding and device management |
| 488 | void processEventsLocked(const RawEvent* rawEvents, size_t count); |
| 489 | |
| 490 | void addDeviceLocked(nsecs_t when, int32_t deviceId); |
| 491 | void removeDeviceLocked(nsecs_t when, int32_t deviceId); |
| 492 | void processEventsForDeviceLocked(int32_t deviceId, const RawEvent* rawEvents, size_t count); |
| 493 | void timeoutExpiredLocked(nsecs_t when); |
| 494 | |
| 495 | void handleConfigurationChangedLocked(nsecs_t when); |
| 496 | |
| 497 | int32_t mGlobalMetaState; |
| 498 | void updateGlobalMetaStateLocked(); |
| 499 | int32_t getGlobalMetaStateLocked(); |
| 500 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 501 | void notifyExternalStylusPresenceChanged(); |
| 502 | void getExternalStylusDevicesLocked(Vector<InputDeviceInfo>& outDevices); |
| 503 | void dispatchExternalStylusState(const StylusState& state); |
| 504 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 505 | void fadePointerLocked(); |
| 506 | |
| 507 | int32_t mGeneration; |
| 508 | int32_t bumpGenerationLocked(); |
| 509 | |
| 510 | void getInputDevicesLocked(Vector<InputDeviceInfo>& outInputDevices); |
| 511 | |
| 512 | nsecs_t mDisableVirtualKeysTimeout; |
| 513 | void disableVirtualKeysUntilLocked(nsecs_t time); |
| 514 | bool shouldDropVirtualKeyLocked(nsecs_t now, |
| 515 | InputDevice* device, int32_t keyCode, int32_t scanCode); |
| 516 | |
| 517 | nsecs_t mNextTimeout; |
| 518 | void requestTimeoutAtTimeLocked(nsecs_t when); |
| 519 | |
| 520 | uint32_t mConfigurationChangesToRefresh; |
| 521 | void refreshConfigurationLocked(uint32_t changes); |
| 522 | |
| 523 | // state queries |
| 524 | typedef int32_t (InputDevice::*GetStateFunc)(uint32_t sourceMask, int32_t code); |
| 525 | int32_t getStateLocked(int32_t deviceId, uint32_t sourceMask, int32_t code, |
| 526 | GetStateFunc getStateFunc); |
| 527 | bool markSupportedKeyCodesLocked(int32_t deviceId, uint32_t sourceMask, size_t numCodes, |
| 528 | const int32_t* keyCodes, uint8_t* outFlags); |
| 529 | }; |
| 530 | |
| 531 | |
| 532 | /* Reads raw events from the event hub and processes them, endlessly. */ |
| 533 | class InputReaderThread : public Thread { |
| 534 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 535 | explicit InputReaderThread(const sp<InputReaderInterface>& reader); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 536 | virtual ~InputReaderThread(); |
| 537 | |
| 538 | private: |
| 539 | sp<InputReaderInterface> mReader; |
| 540 | |
| 541 | virtual bool threadLoop(); |
| 542 | }; |
| 543 | |
| 544 | |
| 545 | /* Represents the state of a single input device. */ |
| 546 | class InputDevice { |
| 547 | public: |
| 548 | InputDevice(InputReaderContext* context, int32_t id, int32_t generation, int32_t |
| 549 | controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes); |
| 550 | ~InputDevice(); |
| 551 | |
| 552 | inline InputReaderContext* getContext() { return mContext; } |
| 553 | inline int32_t getId() const { return mId; } |
| 554 | inline int32_t getControllerNumber() const { return mControllerNumber; } |
| 555 | inline int32_t getGeneration() const { return mGeneration; } |
| 556 | inline const String8& getName() const { return mIdentifier.name; } |
Jason Gerecke | 12d6baa | 2014-01-27 18:34:20 -0800 | [diff] [blame] | 557 | inline const String8& getDescriptor() { return mIdentifier.descriptor; } |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 558 | inline uint32_t getClasses() const { return mClasses; } |
| 559 | inline uint32_t getSources() const { return mSources; } |
| 560 | |
| 561 | inline bool isExternal() { return mIsExternal; } |
| 562 | inline void setExternal(bool external) { mIsExternal = external; } |
| 563 | |
Tim Kilbourn | 063ff53 | 2015-04-08 10:26:18 -0700 | [diff] [blame] | 564 | inline void setMic(bool hasMic) { mHasMic = hasMic; } |
| 565 | inline bool hasMic() const { return mHasMic; } |
| 566 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 567 | inline bool isIgnored() { return mMappers.isEmpty(); } |
| 568 | |
Siarhei Vishniakou | e54cb85 | 2017-03-21 17:48:16 -0700 | [diff] [blame] | 569 | bool isEnabled(); |
| 570 | void setEnabled(bool enabled, nsecs_t when); |
| 571 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 572 | void dump(String8& dump); |
| 573 | void addMapper(InputMapper* mapper); |
| 574 | void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); |
| 575 | void reset(nsecs_t when); |
| 576 | void process(const RawEvent* rawEvents, size_t count); |
| 577 | void timeoutExpired(nsecs_t when); |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 578 | void updateExternalStylusState(const StylusState& state); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 579 | |
| 580 | void getDeviceInfo(InputDeviceInfo* outDeviceInfo); |
| 581 | int32_t getKeyCodeState(uint32_t sourceMask, int32_t keyCode); |
| 582 | int32_t getScanCodeState(uint32_t sourceMask, int32_t scanCode); |
| 583 | int32_t getSwitchState(uint32_t sourceMask, int32_t switchCode); |
| 584 | bool markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, |
| 585 | const int32_t* keyCodes, uint8_t* outFlags); |
| 586 | void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, int32_t token); |
| 587 | void cancelVibrate(int32_t token); |
Jeff Brown | c9aa628 | 2015-02-11 19:03:28 -0800 | [diff] [blame] | 588 | void cancelTouch(nsecs_t when); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 589 | |
| 590 | int32_t getMetaState(); |
Andrii Kulian | 763a3a4 | 2016-03-08 10:46:16 -0800 | [diff] [blame] | 591 | void updateMetaState(int32_t keyCode); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 592 | |
| 593 | void fadePointer(); |
| 594 | |
| 595 | void bumpGeneration(); |
| 596 | |
| 597 | void notifyReset(nsecs_t when); |
| 598 | |
| 599 | inline const PropertyMap& getConfiguration() { return mConfiguration; } |
| 600 | inline EventHubInterface* getEventHub() { return mContext->getEventHub(); } |
| 601 | |
| 602 | bool hasKey(int32_t code) { |
| 603 | return getEventHub()->hasScanCode(mId, code); |
| 604 | } |
| 605 | |
| 606 | bool hasAbsoluteAxis(int32_t code) { |
| 607 | RawAbsoluteAxisInfo info; |
| 608 | getEventHub()->getAbsoluteAxisInfo(mId, code, &info); |
| 609 | return info.valid; |
| 610 | } |
| 611 | |
| 612 | bool isKeyPressed(int32_t code) { |
| 613 | return getEventHub()->getScanCodeState(mId, code) == AKEY_STATE_DOWN; |
| 614 | } |
| 615 | |
| 616 | int32_t getAbsoluteAxisValue(int32_t code) { |
| 617 | int32_t value; |
| 618 | getEventHub()->getAbsoluteAxisValue(mId, code, &value); |
| 619 | return value; |
| 620 | } |
| 621 | |
| 622 | private: |
| 623 | InputReaderContext* mContext; |
| 624 | int32_t mId; |
| 625 | int32_t mGeneration; |
| 626 | int32_t mControllerNumber; |
| 627 | InputDeviceIdentifier mIdentifier; |
| 628 | String8 mAlias; |
| 629 | uint32_t mClasses; |
| 630 | |
| 631 | Vector<InputMapper*> mMappers; |
| 632 | |
| 633 | uint32_t mSources; |
| 634 | bool mIsExternal; |
Tim Kilbourn | 063ff53 | 2015-04-08 10:26:18 -0700 | [diff] [blame] | 635 | bool mHasMic; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 636 | bool mDropUntilNextSync; |
| 637 | |
| 638 | typedef int32_t (InputMapper::*GetStateFunc)(uint32_t sourceMask, int32_t code); |
| 639 | int32_t getState(uint32_t sourceMask, int32_t code, GetStateFunc getStateFunc); |
| 640 | |
| 641 | PropertyMap mConfiguration; |
| 642 | }; |
| 643 | |
| 644 | |
| 645 | /* Keeps track of the state of mouse or touch pad buttons. */ |
| 646 | class CursorButtonAccumulator { |
| 647 | public: |
| 648 | CursorButtonAccumulator(); |
| 649 | void reset(InputDevice* device); |
| 650 | |
| 651 | void process(const RawEvent* rawEvent); |
| 652 | |
| 653 | uint32_t getButtonState() const; |
| 654 | |
| 655 | private: |
| 656 | bool mBtnLeft; |
| 657 | bool mBtnRight; |
| 658 | bool mBtnMiddle; |
| 659 | bool mBtnBack; |
| 660 | bool mBtnSide; |
| 661 | bool mBtnForward; |
| 662 | bool mBtnExtra; |
| 663 | bool mBtnTask; |
| 664 | |
| 665 | void clearButtons(); |
| 666 | }; |
| 667 | |
| 668 | |
| 669 | /* Keeps track of cursor movements. */ |
| 670 | |
| 671 | class CursorMotionAccumulator { |
| 672 | public: |
| 673 | CursorMotionAccumulator(); |
| 674 | void reset(InputDevice* device); |
| 675 | |
| 676 | void process(const RawEvent* rawEvent); |
| 677 | void finishSync(); |
| 678 | |
| 679 | inline int32_t getRelativeX() const { return mRelX; } |
| 680 | inline int32_t getRelativeY() const { return mRelY; } |
| 681 | |
| 682 | private: |
| 683 | int32_t mRelX; |
| 684 | int32_t mRelY; |
| 685 | |
| 686 | void clearRelativeAxes(); |
| 687 | }; |
| 688 | |
| 689 | |
| 690 | /* Keeps track of cursor scrolling motions. */ |
| 691 | |
| 692 | class CursorScrollAccumulator { |
| 693 | public: |
| 694 | CursorScrollAccumulator(); |
| 695 | void configure(InputDevice* device); |
| 696 | void reset(InputDevice* device); |
| 697 | |
| 698 | void process(const RawEvent* rawEvent); |
| 699 | void finishSync(); |
| 700 | |
| 701 | inline bool haveRelativeVWheel() const { return mHaveRelWheel; } |
| 702 | inline bool haveRelativeHWheel() const { return mHaveRelHWheel; } |
| 703 | |
| 704 | inline int32_t getRelativeX() const { return mRelX; } |
| 705 | inline int32_t getRelativeY() const { return mRelY; } |
| 706 | inline int32_t getRelativeVWheel() const { return mRelWheel; } |
| 707 | inline int32_t getRelativeHWheel() const { return mRelHWheel; } |
| 708 | |
| 709 | private: |
| 710 | bool mHaveRelWheel; |
| 711 | bool mHaveRelHWheel; |
| 712 | |
| 713 | int32_t mRelX; |
| 714 | int32_t mRelY; |
| 715 | int32_t mRelWheel; |
| 716 | int32_t mRelHWheel; |
| 717 | |
| 718 | void clearRelativeAxes(); |
| 719 | }; |
| 720 | |
| 721 | |
| 722 | /* Keeps track of the state of touch, stylus and tool buttons. */ |
| 723 | class TouchButtonAccumulator { |
| 724 | public: |
| 725 | TouchButtonAccumulator(); |
| 726 | void configure(InputDevice* device); |
| 727 | void reset(InputDevice* device); |
| 728 | |
| 729 | void process(const RawEvent* rawEvent); |
| 730 | |
| 731 | uint32_t getButtonState() const; |
| 732 | int32_t getToolType() const; |
| 733 | bool isToolActive() const; |
| 734 | bool isHovering() const; |
| 735 | bool hasStylus() const; |
| 736 | |
| 737 | private: |
| 738 | bool mHaveBtnTouch; |
| 739 | bool mHaveStylus; |
| 740 | |
| 741 | bool mBtnTouch; |
| 742 | bool mBtnStylus; |
| 743 | bool mBtnStylus2; |
| 744 | bool mBtnToolFinger; |
| 745 | bool mBtnToolPen; |
| 746 | bool mBtnToolRubber; |
| 747 | bool mBtnToolBrush; |
| 748 | bool mBtnToolPencil; |
| 749 | bool mBtnToolAirbrush; |
| 750 | bool mBtnToolMouse; |
| 751 | bool mBtnToolLens; |
| 752 | bool mBtnToolDoubleTap; |
| 753 | bool mBtnToolTripleTap; |
| 754 | bool mBtnToolQuadTap; |
| 755 | |
| 756 | void clearButtons(); |
| 757 | }; |
| 758 | |
| 759 | |
| 760 | /* Raw axis information from the driver. */ |
| 761 | struct RawPointerAxes { |
| 762 | RawAbsoluteAxisInfo x; |
| 763 | RawAbsoluteAxisInfo y; |
| 764 | RawAbsoluteAxisInfo pressure; |
| 765 | RawAbsoluteAxisInfo touchMajor; |
| 766 | RawAbsoluteAxisInfo touchMinor; |
| 767 | RawAbsoluteAxisInfo toolMajor; |
| 768 | RawAbsoluteAxisInfo toolMinor; |
| 769 | RawAbsoluteAxisInfo orientation; |
| 770 | RawAbsoluteAxisInfo distance; |
| 771 | RawAbsoluteAxisInfo tiltX; |
| 772 | RawAbsoluteAxisInfo tiltY; |
| 773 | RawAbsoluteAxisInfo trackingId; |
| 774 | RawAbsoluteAxisInfo slot; |
| 775 | |
| 776 | RawPointerAxes(); |
| 777 | void clear(); |
| 778 | }; |
| 779 | |
| 780 | |
| 781 | /* Raw data for a collection of pointers including a pointer id mapping table. */ |
| 782 | struct RawPointerData { |
| 783 | struct Pointer { |
| 784 | uint32_t id; |
| 785 | int32_t x; |
| 786 | int32_t y; |
| 787 | int32_t pressure; |
| 788 | int32_t touchMajor; |
| 789 | int32_t touchMinor; |
| 790 | int32_t toolMajor; |
| 791 | int32_t toolMinor; |
| 792 | int32_t orientation; |
| 793 | int32_t distance; |
| 794 | int32_t tiltX; |
| 795 | int32_t tiltY; |
| 796 | int32_t toolType; // a fully decoded AMOTION_EVENT_TOOL_TYPE constant |
| 797 | bool isHovering; |
| 798 | }; |
| 799 | |
| 800 | uint32_t pointerCount; |
| 801 | Pointer pointers[MAX_POINTERS]; |
| 802 | BitSet32 hoveringIdBits, touchingIdBits; |
| 803 | uint32_t idToIndex[MAX_POINTER_ID + 1]; |
| 804 | |
| 805 | RawPointerData(); |
| 806 | void clear(); |
| 807 | void copyFrom(const RawPointerData& other); |
| 808 | void getCentroidOfTouchingPointers(float* outX, float* outY) const; |
| 809 | |
| 810 | inline void markIdBit(uint32_t id, bool isHovering) { |
| 811 | if (isHovering) { |
| 812 | hoveringIdBits.markBit(id); |
| 813 | } else { |
| 814 | touchingIdBits.markBit(id); |
| 815 | } |
| 816 | } |
| 817 | |
| 818 | inline void clearIdBits() { |
| 819 | hoveringIdBits.clear(); |
| 820 | touchingIdBits.clear(); |
| 821 | } |
| 822 | |
| 823 | inline const Pointer& pointerForId(uint32_t id) const { |
| 824 | return pointers[idToIndex[id]]; |
| 825 | } |
| 826 | |
| 827 | inline bool isHovering(uint32_t pointerIndex) { |
| 828 | return pointers[pointerIndex].isHovering; |
| 829 | } |
| 830 | }; |
| 831 | |
| 832 | |
| 833 | /* Cooked data for a collection of pointers including a pointer id mapping table. */ |
| 834 | struct CookedPointerData { |
| 835 | uint32_t pointerCount; |
| 836 | PointerProperties pointerProperties[MAX_POINTERS]; |
| 837 | PointerCoords pointerCoords[MAX_POINTERS]; |
| 838 | BitSet32 hoveringIdBits, touchingIdBits; |
| 839 | uint32_t idToIndex[MAX_POINTER_ID + 1]; |
| 840 | |
| 841 | CookedPointerData(); |
| 842 | void clear(); |
| 843 | void copyFrom(const CookedPointerData& other); |
| 844 | |
| 845 | inline const PointerCoords& pointerCoordsForId(uint32_t id) const { |
| 846 | return pointerCoords[idToIndex[id]]; |
| 847 | } |
| 848 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 849 | inline PointerCoords& editPointerCoordsWithId(uint32_t id) { |
| 850 | return pointerCoords[idToIndex[id]]; |
| 851 | } |
| 852 | |
| 853 | inline PointerProperties& editPointerPropertiesWithId(uint32_t id) { |
| 854 | return pointerProperties[idToIndex[id]]; |
| 855 | } |
| 856 | |
Michael Wright | 53dca3a | 2015-04-23 17:39:53 +0100 | [diff] [blame] | 857 | inline bool isHovering(uint32_t pointerIndex) const { |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 858 | return hoveringIdBits.hasBit(pointerProperties[pointerIndex].id); |
| 859 | } |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 860 | |
Michael Wright | 53dca3a | 2015-04-23 17:39:53 +0100 | [diff] [blame] | 861 | inline bool isTouching(uint32_t pointerIndex) const { |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 862 | return touchingIdBits.hasBit(pointerProperties[pointerIndex].id); |
| 863 | } |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 864 | }; |
| 865 | |
| 866 | |
| 867 | /* Keeps track of the state of single-touch protocol. */ |
| 868 | class SingleTouchMotionAccumulator { |
| 869 | public: |
| 870 | SingleTouchMotionAccumulator(); |
| 871 | |
| 872 | void process(const RawEvent* rawEvent); |
| 873 | void reset(InputDevice* device); |
| 874 | |
| 875 | inline int32_t getAbsoluteX() const { return mAbsX; } |
| 876 | inline int32_t getAbsoluteY() const { return mAbsY; } |
| 877 | inline int32_t getAbsolutePressure() const { return mAbsPressure; } |
| 878 | inline int32_t getAbsoluteToolWidth() const { return mAbsToolWidth; } |
| 879 | inline int32_t getAbsoluteDistance() const { return mAbsDistance; } |
| 880 | inline int32_t getAbsoluteTiltX() const { return mAbsTiltX; } |
| 881 | inline int32_t getAbsoluteTiltY() const { return mAbsTiltY; } |
| 882 | |
| 883 | private: |
| 884 | int32_t mAbsX; |
| 885 | int32_t mAbsY; |
| 886 | int32_t mAbsPressure; |
| 887 | int32_t mAbsToolWidth; |
| 888 | int32_t mAbsDistance; |
| 889 | int32_t mAbsTiltX; |
| 890 | int32_t mAbsTiltY; |
| 891 | |
| 892 | void clearAbsoluteAxes(); |
| 893 | }; |
| 894 | |
| 895 | |
| 896 | /* Keeps track of the state of multi-touch protocol. */ |
| 897 | class MultiTouchMotionAccumulator { |
| 898 | public: |
| 899 | class Slot { |
| 900 | public: |
| 901 | inline bool isInUse() const { return mInUse; } |
| 902 | inline int32_t getX() const { return mAbsMTPositionX; } |
| 903 | inline int32_t getY() const { return mAbsMTPositionY; } |
| 904 | inline int32_t getTouchMajor() const { return mAbsMTTouchMajor; } |
| 905 | inline int32_t getTouchMinor() const { |
| 906 | return mHaveAbsMTTouchMinor ? mAbsMTTouchMinor : mAbsMTTouchMajor; } |
| 907 | inline int32_t getToolMajor() const { return mAbsMTWidthMajor; } |
| 908 | inline int32_t getToolMinor() const { |
| 909 | return mHaveAbsMTWidthMinor ? mAbsMTWidthMinor : mAbsMTWidthMajor; } |
| 910 | inline int32_t getOrientation() const { return mAbsMTOrientation; } |
| 911 | inline int32_t getTrackingId() const { return mAbsMTTrackingId; } |
| 912 | inline int32_t getPressure() const { return mAbsMTPressure; } |
| 913 | inline int32_t getDistance() const { return mAbsMTDistance; } |
| 914 | inline int32_t getToolType() const; |
| 915 | |
| 916 | private: |
| 917 | friend class MultiTouchMotionAccumulator; |
| 918 | |
| 919 | bool mInUse; |
| 920 | bool mHaveAbsMTTouchMinor; |
| 921 | bool mHaveAbsMTWidthMinor; |
| 922 | bool mHaveAbsMTToolType; |
| 923 | |
| 924 | int32_t mAbsMTPositionX; |
| 925 | int32_t mAbsMTPositionY; |
| 926 | int32_t mAbsMTTouchMajor; |
| 927 | int32_t mAbsMTTouchMinor; |
| 928 | int32_t mAbsMTWidthMajor; |
| 929 | int32_t mAbsMTWidthMinor; |
| 930 | int32_t mAbsMTOrientation; |
| 931 | int32_t mAbsMTTrackingId; |
| 932 | int32_t mAbsMTPressure; |
| 933 | int32_t mAbsMTDistance; |
| 934 | int32_t mAbsMTToolType; |
| 935 | |
| 936 | Slot(); |
| 937 | void clear(); |
| 938 | }; |
| 939 | |
| 940 | MultiTouchMotionAccumulator(); |
| 941 | ~MultiTouchMotionAccumulator(); |
| 942 | |
| 943 | void configure(InputDevice* device, size_t slotCount, bool usingSlotsProtocol); |
| 944 | void reset(InputDevice* device); |
| 945 | void process(const RawEvent* rawEvent); |
| 946 | void finishSync(); |
| 947 | bool hasStylus() const; |
| 948 | |
| 949 | inline size_t getSlotCount() const { return mSlotCount; } |
| 950 | inline const Slot* getSlot(size_t index) const { return &mSlots[index]; } |
| 951 | |
| 952 | private: |
| 953 | int32_t mCurrentSlot; |
| 954 | Slot* mSlots; |
| 955 | size_t mSlotCount; |
| 956 | bool mUsingSlotsProtocol; |
| 957 | bool mHaveStylus; |
| 958 | |
| 959 | void clearSlots(int32_t initialSlot); |
| 960 | }; |
| 961 | |
| 962 | |
| 963 | /* An input mapper transforms raw input events into cooked event data. |
| 964 | * A single input device can have multiple associated input mappers in order to interpret |
| 965 | * different classes of events. |
| 966 | * |
| 967 | * InputMapper lifecycle: |
| 968 | * - create |
| 969 | * - configure with 0 changes |
| 970 | * - reset |
| 971 | * - process, process, process (may occasionally reconfigure with non-zero changes or reset) |
| 972 | * - reset |
| 973 | * - destroy |
| 974 | */ |
| 975 | class InputMapper { |
| 976 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 977 | explicit InputMapper(InputDevice* device); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 978 | virtual ~InputMapper(); |
| 979 | |
| 980 | inline InputDevice* getDevice() { return mDevice; } |
| 981 | inline int32_t getDeviceId() { return mDevice->getId(); } |
| 982 | inline const String8 getDeviceName() { return mDevice->getName(); } |
| 983 | inline InputReaderContext* getContext() { return mContext; } |
| 984 | inline InputReaderPolicyInterface* getPolicy() { return mContext->getPolicy(); } |
| 985 | inline InputListenerInterface* getListener() { return mContext->getListener(); } |
| 986 | inline EventHubInterface* getEventHub() { return mContext->getEventHub(); } |
| 987 | |
| 988 | virtual uint32_t getSources() = 0; |
| 989 | virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo); |
| 990 | virtual void dump(String8& dump); |
| 991 | virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); |
| 992 | virtual void reset(nsecs_t when); |
| 993 | virtual void process(const RawEvent* rawEvent) = 0; |
| 994 | virtual void timeoutExpired(nsecs_t when); |
| 995 | |
| 996 | virtual int32_t getKeyCodeState(uint32_t sourceMask, int32_t keyCode); |
| 997 | virtual int32_t getScanCodeState(uint32_t sourceMask, int32_t scanCode); |
| 998 | virtual int32_t getSwitchState(uint32_t sourceMask, int32_t switchCode); |
| 999 | virtual bool markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, |
| 1000 | const int32_t* keyCodes, uint8_t* outFlags); |
| 1001 | virtual void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, |
| 1002 | int32_t token); |
| 1003 | virtual void cancelVibrate(int32_t token); |
Jeff Brown | c9aa628 | 2015-02-11 19:03:28 -0800 | [diff] [blame] | 1004 | virtual void cancelTouch(nsecs_t when); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1005 | |
| 1006 | virtual int32_t getMetaState(); |
Andrii Kulian | 763a3a4 | 2016-03-08 10:46:16 -0800 | [diff] [blame] | 1007 | virtual void updateMetaState(int32_t keyCode); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1008 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1009 | virtual void updateExternalStylusState(const StylusState& state); |
| 1010 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1011 | virtual void fadePointer(); |
| 1012 | |
| 1013 | protected: |
| 1014 | InputDevice* mDevice; |
| 1015 | InputReaderContext* mContext; |
| 1016 | |
| 1017 | status_t getAbsoluteAxisInfo(int32_t axis, RawAbsoluteAxisInfo* axisInfo); |
| 1018 | void bumpGeneration(); |
| 1019 | |
| 1020 | static void dumpRawAbsoluteAxisInfo(String8& dump, |
| 1021 | const RawAbsoluteAxisInfo& axis, const char* name); |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1022 | static void dumpStylusState(String8& dump, const StylusState& state); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1023 | }; |
| 1024 | |
| 1025 | |
| 1026 | class SwitchInputMapper : public InputMapper { |
| 1027 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1028 | explicit SwitchInputMapper(InputDevice* device); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1029 | virtual ~SwitchInputMapper(); |
| 1030 | |
| 1031 | virtual uint32_t getSources(); |
| 1032 | virtual void process(const RawEvent* rawEvent); |
| 1033 | |
| 1034 | virtual int32_t getSwitchState(uint32_t sourceMask, int32_t switchCode); |
Michael Wright | bcbf97e | 2014-08-29 14:31:32 -0700 | [diff] [blame] | 1035 | virtual void dump(String8& dump); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1036 | |
| 1037 | private: |
Michael Wright | bcbf97e | 2014-08-29 14:31:32 -0700 | [diff] [blame] | 1038 | uint32_t mSwitchValues; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1039 | uint32_t mUpdatedSwitchMask; |
| 1040 | |
| 1041 | void processSwitch(int32_t switchCode, int32_t switchValue); |
| 1042 | void sync(nsecs_t when); |
| 1043 | }; |
| 1044 | |
| 1045 | |
| 1046 | class VibratorInputMapper : public InputMapper { |
| 1047 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1048 | explicit VibratorInputMapper(InputDevice* device); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1049 | virtual ~VibratorInputMapper(); |
| 1050 | |
| 1051 | virtual uint32_t getSources(); |
| 1052 | virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo); |
| 1053 | virtual void process(const RawEvent* rawEvent); |
| 1054 | |
| 1055 | virtual void vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, |
| 1056 | int32_t token); |
| 1057 | virtual void cancelVibrate(int32_t token); |
| 1058 | virtual void timeoutExpired(nsecs_t when); |
| 1059 | virtual void dump(String8& dump); |
| 1060 | |
| 1061 | private: |
| 1062 | bool mVibrating; |
| 1063 | nsecs_t mPattern[MAX_VIBRATE_PATTERN_SIZE]; |
| 1064 | size_t mPatternSize; |
| 1065 | ssize_t mRepeat; |
| 1066 | int32_t mToken; |
| 1067 | ssize_t mIndex; |
| 1068 | nsecs_t mNextStepTime; |
| 1069 | |
| 1070 | void nextStep(); |
| 1071 | void stopVibrating(); |
| 1072 | }; |
| 1073 | |
| 1074 | |
| 1075 | class KeyboardInputMapper : public InputMapper { |
| 1076 | public: |
| 1077 | KeyboardInputMapper(InputDevice* device, uint32_t source, int32_t keyboardType); |
| 1078 | virtual ~KeyboardInputMapper(); |
| 1079 | |
| 1080 | virtual uint32_t getSources(); |
| 1081 | virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo); |
| 1082 | virtual void dump(String8& dump); |
| 1083 | virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); |
| 1084 | virtual void reset(nsecs_t when); |
| 1085 | virtual void process(const RawEvent* rawEvent); |
| 1086 | |
| 1087 | virtual int32_t getKeyCodeState(uint32_t sourceMask, int32_t keyCode); |
| 1088 | virtual int32_t getScanCodeState(uint32_t sourceMask, int32_t scanCode); |
| 1089 | virtual bool markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, |
| 1090 | const int32_t* keyCodes, uint8_t* outFlags); |
| 1091 | |
| 1092 | virtual int32_t getMetaState(); |
Andrii Kulian | 763a3a4 | 2016-03-08 10:46:16 -0800 | [diff] [blame] | 1093 | virtual void updateMetaState(int32_t keyCode); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1094 | |
| 1095 | private: |
| 1096 | struct KeyDown { |
| 1097 | int32_t keyCode; |
| 1098 | int32_t scanCode; |
| 1099 | }; |
| 1100 | |
| 1101 | uint32_t mSource; |
| 1102 | int32_t mKeyboardType; |
| 1103 | |
| 1104 | int32_t mOrientation; // orientation for dpad keys |
| 1105 | |
| 1106 | Vector<KeyDown> mKeyDowns; // keys that are down |
| 1107 | int32_t mMetaState; |
| 1108 | nsecs_t mDownTime; // time of most recent key down |
| 1109 | |
| 1110 | int32_t mCurrentHidUsage; // most recent HID usage seen this packet, or 0 if none |
| 1111 | |
| 1112 | struct LedState { |
| 1113 | bool avail; // led is available |
| 1114 | bool on; // we think the led is currently on |
| 1115 | }; |
| 1116 | LedState mCapsLockLedState; |
| 1117 | LedState mNumLockLedState; |
| 1118 | LedState mScrollLockLedState; |
| 1119 | |
| 1120 | // Immutable configuration parameters. |
| 1121 | struct Parameters { |
| 1122 | bool hasAssociatedDisplay; |
| 1123 | bool orientationAware; |
Michael Wright | dcfcf5d | 2014-03-17 12:58:21 -0700 | [diff] [blame] | 1124 | bool handlesKeyRepeat; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1125 | } mParameters; |
| 1126 | |
| 1127 | void configureParameters(); |
| 1128 | void dumpParameters(String8& dump); |
| 1129 | |
| 1130 | bool isKeyboardOrGamepadKey(int32_t scanCode); |
| 1131 | |
Dmitry Torokhov | 0faaa0b | 2015-09-24 13:13:55 -0700 | [diff] [blame] | 1132 | void processKey(nsecs_t when, bool down, int32_t scanCode, int32_t usageCode); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1133 | |
Andrii Kulian | 763a3a4 | 2016-03-08 10:46:16 -0800 | [diff] [blame] | 1134 | bool updateMetaStateIfNeeded(int32_t keyCode, bool down); |
| 1135 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1136 | ssize_t findKeyDown(int32_t scanCode); |
| 1137 | |
| 1138 | void resetLedState(); |
| 1139 | void initializeLedState(LedState& ledState, int32_t led); |
| 1140 | void updateLedState(bool reset); |
| 1141 | void updateLedStateForModifier(LedState& ledState, int32_t led, |
| 1142 | int32_t modifier, bool reset); |
| 1143 | }; |
| 1144 | |
| 1145 | |
| 1146 | class CursorInputMapper : public InputMapper { |
| 1147 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1148 | explicit CursorInputMapper(InputDevice* device); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1149 | virtual ~CursorInputMapper(); |
| 1150 | |
| 1151 | virtual uint32_t getSources(); |
| 1152 | virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo); |
| 1153 | virtual void dump(String8& dump); |
| 1154 | virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); |
| 1155 | virtual void reset(nsecs_t when); |
| 1156 | virtual void process(const RawEvent* rawEvent); |
| 1157 | |
| 1158 | virtual int32_t getScanCodeState(uint32_t sourceMask, int32_t scanCode); |
| 1159 | |
| 1160 | virtual void fadePointer(); |
| 1161 | |
| 1162 | private: |
| 1163 | // Amount that trackball needs to move in order to generate a key event. |
| 1164 | static const int32_t TRACKBALL_MOVEMENT_THRESHOLD = 6; |
| 1165 | |
| 1166 | // Immutable configuration parameters. |
| 1167 | struct Parameters { |
| 1168 | enum Mode { |
| 1169 | MODE_POINTER, |
Vladislav Kaznacheev | 78f97b3 | 2016-12-15 18:14:58 -0800 | [diff] [blame] | 1170 | MODE_POINTER_RELATIVE, |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1171 | MODE_NAVIGATION, |
| 1172 | }; |
| 1173 | |
| 1174 | Mode mode; |
| 1175 | bool hasAssociatedDisplay; |
| 1176 | bool orientationAware; |
| 1177 | } mParameters; |
| 1178 | |
| 1179 | CursorButtonAccumulator mCursorButtonAccumulator; |
| 1180 | CursorMotionAccumulator mCursorMotionAccumulator; |
| 1181 | CursorScrollAccumulator mCursorScrollAccumulator; |
| 1182 | |
| 1183 | int32_t mSource; |
| 1184 | float mXScale; |
| 1185 | float mYScale; |
| 1186 | float mXPrecision; |
| 1187 | float mYPrecision; |
| 1188 | |
| 1189 | float mVWheelScale; |
| 1190 | float mHWheelScale; |
| 1191 | |
| 1192 | // Velocity controls for mouse pointer and wheel movements. |
| 1193 | // The controls for X and Y wheel movements are separate to keep them decoupled. |
| 1194 | VelocityControl mPointerVelocityControl; |
| 1195 | VelocityControl mWheelXVelocityControl; |
| 1196 | VelocityControl mWheelYVelocityControl; |
| 1197 | |
| 1198 | int32_t mOrientation; |
| 1199 | |
| 1200 | sp<PointerControllerInterface> mPointerController; |
| 1201 | |
| 1202 | int32_t mButtonState; |
| 1203 | nsecs_t mDownTime; |
| 1204 | |
| 1205 | void configureParameters(); |
| 1206 | void dumpParameters(String8& dump); |
| 1207 | |
| 1208 | void sync(nsecs_t when); |
| 1209 | }; |
| 1210 | |
| 1211 | |
Prashant Malani | 1941ff5 | 2015-08-11 18:29:28 -0700 | [diff] [blame] | 1212 | class RotaryEncoderInputMapper : public InputMapper { |
| 1213 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1214 | explicit RotaryEncoderInputMapper(InputDevice* device); |
Prashant Malani | 1941ff5 | 2015-08-11 18:29:28 -0700 | [diff] [blame] | 1215 | virtual ~RotaryEncoderInputMapper(); |
| 1216 | |
| 1217 | virtual uint32_t getSources(); |
| 1218 | virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo); |
| 1219 | virtual void dump(String8& dump); |
| 1220 | virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); |
| 1221 | virtual void reset(nsecs_t when); |
| 1222 | virtual void process(const RawEvent* rawEvent); |
| 1223 | |
| 1224 | private: |
| 1225 | CursorScrollAccumulator mRotaryEncoderScrollAccumulator; |
| 1226 | |
| 1227 | int32_t mSource; |
Prashant Malani | dae627a | 2016-01-11 17:08:18 -0800 | [diff] [blame] | 1228 | float mScalingFactor; |
Prashant Malani | 1941ff5 | 2015-08-11 18:29:28 -0700 | [diff] [blame] | 1229 | |
| 1230 | void sync(nsecs_t when); |
| 1231 | }; |
| 1232 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1233 | class TouchInputMapper : public InputMapper { |
| 1234 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1235 | explicit TouchInputMapper(InputDevice* device); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1236 | virtual ~TouchInputMapper(); |
| 1237 | |
| 1238 | virtual uint32_t getSources(); |
| 1239 | virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo); |
| 1240 | virtual void dump(String8& dump); |
| 1241 | virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); |
| 1242 | virtual void reset(nsecs_t when); |
| 1243 | virtual void process(const RawEvent* rawEvent); |
| 1244 | |
| 1245 | virtual int32_t getKeyCodeState(uint32_t sourceMask, int32_t keyCode); |
| 1246 | virtual int32_t getScanCodeState(uint32_t sourceMask, int32_t scanCode); |
| 1247 | virtual bool markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, |
| 1248 | const int32_t* keyCodes, uint8_t* outFlags); |
| 1249 | |
| 1250 | virtual void fadePointer(); |
Jeff Brown | c9aa628 | 2015-02-11 19:03:28 -0800 | [diff] [blame] | 1251 | virtual void cancelTouch(nsecs_t when); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1252 | virtual void timeoutExpired(nsecs_t when); |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1253 | virtual void updateExternalStylusState(const StylusState& state); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1254 | |
| 1255 | protected: |
| 1256 | CursorButtonAccumulator mCursorButtonAccumulator; |
| 1257 | CursorScrollAccumulator mCursorScrollAccumulator; |
| 1258 | TouchButtonAccumulator mTouchButtonAccumulator; |
| 1259 | |
| 1260 | struct VirtualKey { |
| 1261 | int32_t keyCode; |
| 1262 | int32_t scanCode; |
| 1263 | uint32_t flags; |
| 1264 | |
| 1265 | // computed hit box, specified in touch screen coords based on known display size |
| 1266 | int32_t hitLeft; |
| 1267 | int32_t hitTop; |
| 1268 | int32_t hitRight; |
| 1269 | int32_t hitBottom; |
| 1270 | |
| 1271 | inline bool isHit(int32_t x, int32_t y) const { |
| 1272 | return x >= hitLeft && x <= hitRight && y >= hitTop && y <= hitBottom; |
| 1273 | } |
| 1274 | }; |
| 1275 | |
| 1276 | // Input sources and device mode. |
| 1277 | uint32_t mSource; |
| 1278 | |
| 1279 | enum DeviceMode { |
| 1280 | DEVICE_MODE_DISABLED, // input is disabled |
| 1281 | DEVICE_MODE_DIRECT, // direct mapping (touchscreen) |
| 1282 | DEVICE_MODE_UNSCALED, // unscaled mapping (touchpad) |
| 1283 | DEVICE_MODE_NAVIGATION, // unscaled mapping with assist gesture (touch navigation) |
| 1284 | DEVICE_MODE_POINTER, // pointer mapping (pointer) |
| 1285 | }; |
| 1286 | DeviceMode mDeviceMode; |
| 1287 | |
| 1288 | // The reader's configuration. |
| 1289 | InputReaderConfiguration mConfig; |
| 1290 | |
| 1291 | // Immutable configuration parameters. |
| 1292 | struct Parameters { |
| 1293 | enum DeviceType { |
| 1294 | DEVICE_TYPE_TOUCH_SCREEN, |
| 1295 | DEVICE_TYPE_TOUCH_PAD, |
| 1296 | DEVICE_TYPE_TOUCH_NAVIGATION, |
| 1297 | DEVICE_TYPE_POINTER, |
| 1298 | }; |
| 1299 | |
| 1300 | DeviceType deviceType; |
| 1301 | bool hasAssociatedDisplay; |
| 1302 | bool associatedDisplayIsExternal; |
| 1303 | bool orientationAware; |
| 1304 | bool hasButtonUnderPad; |
Santos Cordon | fa5cf46 | 2017-04-05 10:37:00 -0700 | [diff] [blame] | 1305 | String8 uniqueDisplayId; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1306 | |
| 1307 | enum GestureMode { |
Amirhossein Simjour | 3dd617b | 2015-10-09 10:39:48 -0400 | [diff] [blame] | 1308 | GESTURE_MODE_SINGLE_TOUCH, |
| 1309 | GESTURE_MODE_MULTI_TOUCH, |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1310 | }; |
| 1311 | GestureMode gestureMode; |
Jeff Brown | c5e2442 | 2014-02-26 18:48:51 -0800 | [diff] [blame] | 1312 | |
| 1313 | bool wake; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1314 | } mParameters; |
| 1315 | |
| 1316 | // Immutable calibration parameters in parsed form. |
| 1317 | struct Calibration { |
| 1318 | // Size |
| 1319 | enum SizeCalibration { |
| 1320 | SIZE_CALIBRATION_DEFAULT, |
| 1321 | SIZE_CALIBRATION_NONE, |
| 1322 | SIZE_CALIBRATION_GEOMETRIC, |
| 1323 | SIZE_CALIBRATION_DIAMETER, |
| 1324 | SIZE_CALIBRATION_BOX, |
| 1325 | SIZE_CALIBRATION_AREA, |
| 1326 | }; |
| 1327 | |
| 1328 | SizeCalibration sizeCalibration; |
| 1329 | |
| 1330 | bool haveSizeScale; |
| 1331 | float sizeScale; |
| 1332 | bool haveSizeBias; |
| 1333 | float sizeBias; |
| 1334 | bool haveSizeIsSummed; |
| 1335 | bool sizeIsSummed; |
| 1336 | |
| 1337 | // Pressure |
| 1338 | enum PressureCalibration { |
| 1339 | PRESSURE_CALIBRATION_DEFAULT, |
| 1340 | PRESSURE_CALIBRATION_NONE, |
| 1341 | PRESSURE_CALIBRATION_PHYSICAL, |
| 1342 | PRESSURE_CALIBRATION_AMPLITUDE, |
| 1343 | }; |
| 1344 | |
| 1345 | PressureCalibration pressureCalibration; |
| 1346 | bool havePressureScale; |
| 1347 | float pressureScale; |
| 1348 | |
| 1349 | // Orientation |
| 1350 | enum OrientationCalibration { |
| 1351 | ORIENTATION_CALIBRATION_DEFAULT, |
| 1352 | ORIENTATION_CALIBRATION_NONE, |
| 1353 | ORIENTATION_CALIBRATION_INTERPOLATED, |
| 1354 | ORIENTATION_CALIBRATION_VECTOR, |
| 1355 | }; |
| 1356 | |
| 1357 | OrientationCalibration orientationCalibration; |
| 1358 | |
| 1359 | // Distance |
| 1360 | enum DistanceCalibration { |
| 1361 | DISTANCE_CALIBRATION_DEFAULT, |
| 1362 | DISTANCE_CALIBRATION_NONE, |
| 1363 | DISTANCE_CALIBRATION_SCALED, |
| 1364 | }; |
| 1365 | |
| 1366 | DistanceCalibration distanceCalibration; |
| 1367 | bool haveDistanceScale; |
| 1368 | float distanceScale; |
| 1369 | |
| 1370 | enum CoverageCalibration { |
| 1371 | COVERAGE_CALIBRATION_DEFAULT, |
| 1372 | COVERAGE_CALIBRATION_NONE, |
| 1373 | COVERAGE_CALIBRATION_BOX, |
| 1374 | }; |
| 1375 | |
| 1376 | CoverageCalibration coverageCalibration; |
| 1377 | |
| 1378 | inline void applySizeScaleAndBias(float* outSize) const { |
| 1379 | if (haveSizeScale) { |
| 1380 | *outSize *= sizeScale; |
| 1381 | } |
| 1382 | if (haveSizeBias) { |
| 1383 | *outSize += sizeBias; |
| 1384 | } |
| 1385 | if (*outSize < 0) { |
| 1386 | *outSize = 0; |
| 1387 | } |
| 1388 | } |
| 1389 | } mCalibration; |
| 1390 | |
Jason Gerecke | af126fb | 2012-05-10 14:22:47 -0700 | [diff] [blame] | 1391 | // Affine location transformation/calibration |
| 1392 | struct TouchAffineTransformation mAffineTransform; |
| 1393 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1394 | RawPointerAxes mRawPointerAxes; |
| 1395 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1396 | struct RawState { |
| 1397 | nsecs_t when; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1398 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1399 | // Raw pointer sample data. |
| 1400 | RawPointerData rawPointerData; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1401 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1402 | int32_t buttonState; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1403 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1404 | // Scroll state. |
| 1405 | int32_t rawVScroll; |
| 1406 | int32_t rawHScroll; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1407 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1408 | void copyFrom(const RawState& other) { |
| 1409 | when = other.when; |
| 1410 | rawPointerData.copyFrom(other.rawPointerData); |
| 1411 | buttonState = other.buttonState; |
| 1412 | rawVScroll = other.rawVScroll; |
| 1413 | rawHScroll = other.rawHScroll; |
| 1414 | } |
| 1415 | |
| 1416 | void clear() { |
| 1417 | when = 0; |
| 1418 | rawPointerData.clear(); |
| 1419 | buttonState = 0; |
| 1420 | rawVScroll = 0; |
| 1421 | rawHScroll = 0; |
| 1422 | } |
| 1423 | }; |
| 1424 | |
| 1425 | struct CookedState { |
| 1426 | // Cooked pointer sample data. |
| 1427 | CookedPointerData cookedPointerData; |
| 1428 | |
| 1429 | // Id bits used to differentiate fingers, stylus and mouse tools. |
| 1430 | BitSet32 fingerIdBits; |
| 1431 | BitSet32 stylusIdBits; |
| 1432 | BitSet32 mouseIdBits; |
| 1433 | |
Michael Wright | 7b159c9 | 2015-05-14 14:48:03 +0100 | [diff] [blame] | 1434 | int32_t buttonState; |
| 1435 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1436 | void copyFrom(const CookedState& other) { |
| 1437 | cookedPointerData.copyFrom(other.cookedPointerData); |
| 1438 | fingerIdBits = other.fingerIdBits; |
| 1439 | stylusIdBits = other.stylusIdBits; |
| 1440 | mouseIdBits = other.mouseIdBits; |
Michael Wright | 7b159c9 | 2015-05-14 14:48:03 +0100 | [diff] [blame] | 1441 | buttonState = other.buttonState; |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | void clear() { |
| 1445 | cookedPointerData.clear(); |
| 1446 | fingerIdBits.clear(); |
| 1447 | stylusIdBits.clear(); |
| 1448 | mouseIdBits.clear(); |
Michael Wright | 7b159c9 | 2015-05-14 14:48:03 +0100 | [diff] [blame] | 1449 | buttonState = 0; |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1450 | } |
| 1451 | }; |
| 1452 | |
| 1453 | Vector<RawState> mRawStatesPending; |
| 1454 | RawState mCurrentRawState; |
| 1455 | CookedState mCurrentCookedState; |
| 1456 | RawState mLastRawState; |
| 1457 | CookedState mLastCookedState; |
| 1458 | |
| 1459 | // State provided by an external stylus |
| 1460 | StylusState mExternalStylusState; |
| 1461 | int64_t mExternalStylusId; |
Michael Wright | 43fd19f | 2015-04-21 19:02:58 +0100 | [diff] [blame] | 1462 | nsecs_t mExternalStylusFusionTimeout; |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1463 | bool mExternalStylusDataPending; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1464 | |
| 1465 | // True if we sent a HOVER_ENTER event. |
| 1466 | bool mSentHoverEnter; |
| 1467 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1468 | // Have we assigned pointer IDs for this stream |
| 1469 | bool mHavePointerIds; |
| 1470 | |
Michael Wright | 8e81282 | 2015-06-22 16:18:21 +0100 | [diff] [blame] | 1471 | // Is the current stream of direct touch events aborted |
| 1472 | bool mCurrentMotionAborted; |
| 1473 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1474 | // The time the primary pointer last went down. |
| 1475 | nsecs_t mDownTime; |
| 1476 | |
| 1477 | // The pointer controller, or null if the device is not a pointer. |
| 1478 | sp<PointerControllerInterface> mPointerController; |
| 1479 | |
| 1480 | Vector<VirtualKey> mVirtualKeys; |
| 1481 | |
| 1482 | virtual void configureParameters(); |
| 1483 | virtual void dumpParameters(String8& dump); |
| 1484 | virtual void configureRawPointerAxes(); |
| 1485 | virtual void dumpRawPointerAxes(String8& dump); |
| 1486 | virtual void configureSurface(nsecs_t when, bool* outResetNeeded); |
| 1487 | virtual void dumpSurface(String8& dump); |
| 1488 | virtual void configureVirtualKeys(); |
| 1489 | virtual void dumpVirtualKeys(String8& dump); |
| 1490 | virtual void parseCalibration(); |
| 1491 | virtual void resolveCalibration(); |
| 1492 | virtual void dumpCalibration(String8& dump); |
Jason Gerecke | 12d6baa | 2014-01-27 18:34:20 -0800 | [diff] [blame] | 1493 | virtual void updateAffineTransformation(); |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1494 | virtual void dumpAffineTransformation(String8& dump); |
| 1495 | virtual void resolveExternalStylusPresence(); |
| 1496 | virtual bool hasStylus() const = 0; |
| 1497 | virtual bool hasExternalStylus() const; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1498 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1499 | virtual void syncTouch(nsecs_t when, RawState* outState) = 0; |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1500 | |
| 1501 | private: |
| 1502 | // The current viewport. |
| 1503 | // The components of the viewport are specified in the display's rotated orientation. |
| 1504 | DisplayViewport mViewport; |
| 1505 | |
| 1506 | // The surface orientation, width and height set by configureSurface(). |
| 1507 | // The width and height are derived from the viewport but are specified |
| 1508 | // in the natural orientation. |
| 1509 | // The surface origin specifies how the surface coordinates should be translated |
| 1510 | // to align with the logical display coordinate space. |
| 1511 | // The orientation may be different from the viewport orientation as it specifies |
| 1512 | // the rotation of the surface coordinates required to produce the viewport's |
| 1513 | // requested orientation, so it will depend on whether the device is orientation aware. |
| 1514 | int32_t mSurfaceWidth; |
| 1515 | int32_t mSurfaceHeight; |
| 1516 | int32_t mSurfaceLeft; |
| 1517 | int32_t mSurfaceTop; |
| 1518 | int32_t mSurfaceOrientation; |
| 1519 | |
| 1520 | // Translation and scaling factors, orientation-independent. |
| 1521 | float mXTranslate; |
| 1522 | float mXScale; |
| 1523 | float mXPrecision; |
| 1524 | |
| 1525 | float mYTranslate; |
| 1526 | float mYScale; |
| 1527 | float mYPrecision; |
| 1528 | |
| 1529 | float mGeometricScale; |
| 1530 | |
| 1531 | float mPressureScale; |
| 1532 | |
| 1533 | float mSizeScale; |
| 1534 | |
| 1535 | float mOrientationScale; |
| 1536 | |
| 1537 | float mDistanceScale; |
| 1538 | |
| 1539 | bool mHaveTilt; |
| 1540 | float mTiltXCenter; |
| 1541 | float mTiltXScale; |
| 1542 | float mTiltYCenter; |
| 1543 | float mTiltYScale; |
| 1544 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1545 | bool mExternalStylusConnected; |
| 1546 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1547 | // Oriented motion ranges for input device info. |
| 1548 | struct OrientedRanges { |
| 1549 | InputDeviceInfo::MotionRange x; |
| 1550 | InputDeviceInfo::MotionRange y; |
| 1551 | InputDeviceInfo::MotionRange pressure; |
| 1552 | |
| 1553 | bool haveSize; |
| 1554 | InputDeviceInfo::MotionRange size; |
| 1555 | |
| 1556 | bool haveTouchSize; |
| 1557 | InputDeviceInfo::MotionRange touchMajor; |
| 1558 | InputDeviceInfo::MotionRange touchMinor; |
| 1559 | |
| 1560 | bool haveToolSize; |
| 1561 | InputDeviceInfo::MotionRange toolMajor; |
| 1562 | InputDeviceInfo::MotionRange toolMinor; |
| 1563 | |
| 1564 | bool haveOrientation; |
| 1565 | InputDeviceInfo::MotionRange orientation; |
| 1566 | |
| 1567 | bool haveDistance; |
| 1568 | InputDeviceInfo::MotionRange distance; |
| 1569 | |
| 1570 | bool haveTilt; |
| 1571 | InputDeviceInfo::MotionRange tilt; |
| 1572 | |
| 1573 | OrientedRanges() { |
| 1574 | clear(); |
| 1575 | } |
| 1576 | |
| 1577 | void clear() { |
| 1578 | haveSize = false; |
| 1579 | haveTouchSize = false; |
| 1580 | haveToolSize = false; |
| 1581 | haveOrientation = false; |
| 1582 | haveDistance = false; |
| 1583 | haveTilt = false; |
| 1584 | } |
| 1585 | } mOrientedRanges; |
| 1586 | |
| 1587 | // Oriented dimensions and precision. |
| 1588 | float mOrientedXPrecision; |
| 1589 | float mOrientedYPrecision; |
| 1590 | |
| 1591 | struct CurrentVirtualKeyState { |
| 1592 | bool down; |
| 1593 | bool ignored; |
| 1594 | nsecs_t downTime; |
| 1595 | int32_t keyCode; |
| 1596 | int32_t scanCode; |
| 1597 | } mCurrentVirtualKey; |
| 1598 | |
| 1599 | // Scale factor for gesture or mouse based pointer movements. |
| 1600 | float mPointerXMovementScale; |
| 1601 | float mPointerYMovementScale; |
| 1602 | |
| 1603 | // Scale factor for gesture based zooming and other freeform motions. |
| 1604 | float mPointerXZoomScale; |
| 1605 | float mPointerYZoomScale; |
| 1606 | |
| 1607 | // The maximum swipe width. |
| 1608 | float mPointerGestureMaxSwipeWidth; |
| 1609 | |
| 1610 | struct PointerDistanceHeapElement { |
| 1611 | uint32_t currentPointerIndex : 8; |
| 1612 | uint32_t lastPointerIndex : 8; |
| 1613 | uint64_t distance : 48; // squared distance |
| 1614 | }; |
| 1615 | |
| 1616 | enum PointerUsage { |
| 1617 | POINTER_USAGE_NONE, |
| 1618 | POINTER_USAGE_GESTURES, |
| 1619 | POINTER_USAGE_STYLUS, |
| 1620 | POINTER_USAGE_MOUSE, |
| 1621 | }; |
| 1622 | PointerUsage mPointerUsage; |
| 1623 | |
| 1624 | struct PointerGesture { |
| 1625 | enum Mode { |
| 1626 | // No fingers, button is not pressed. |
| 1627 | // Nothing happening. |
| 1628 | NEUTRAL, |
| 1629 | |
| 1630 | // No fingers, button is not pressed. |
| 1631 | // Tap detected. |
| 1632 | // Emits DOWN and UP events at the pointer location. |
| 1633 | TAP, |
| 1634 | |
| 1635 | // Exactly one finger dragging following a tap. |
| 1636 | // Pointer follows the active finger. |
| 1637 | // Emits DOWN, MOVE and UP events at the pointer location. |
| 1638 | // |
| 1639 | // Detect double-taps when the finger goes up while in TAP_DRAG mode. |
| 1640 | TAP_DRAG, |
| 1641 | |
| 1642 | // Button is pressed. |
| 1643 | // Pointer follows the active finger if there is one. Other fingers are ignored. |
| 1644 | // Emits DOWN, MOVE and UP events at the pointer location. |
| 1645 | BUTTON_CLICK_OR_DRAG, |
| 1646 | |
| 1647 | // Exactly one finger, button is not pressed. |
| 1648 | // Pointer follows the active finger. |
| 1649 | // Emits HOVER_MOVE events at the pointer location. |
| 1650 | // |
| 1651 | // Detect taps when the finger goes up while in HOVER mode. |
| 1652 | HOVER, |
| 1653 | |
| 1654 | // Exactly two fingers but neither have moved enough to clearly indicate |
| 1655 | // whether a swipe or freeform gesture was intended. We consider the |
| 1656 | // pointer to be pressed so this enables clicking or long-pressing on buttons. |
| 1657 | // Pointer does not move. |
| 1658 | // Emits DOWN, MOVE and UP events with a single stationary pointer coordinate. |
| 1659 | PRESS, |
| 1660 | |
| 1661 | // Exactly two fingers moving in the same direction, button is not pressed. |
| 1662 | // Pointer does not move. |
| 1663 | // Emits DOWN, MOVE and UP events with a single pointer coordinate that |
| 1664 | // follows the midpoint between both fingers. |
| 1665 | SWIPE, |
| 1666 | |
| 1667 | // Two or more fingers moving in arbitrary directions, button is not pressed. |
| 1668 | // Pointer does not move. |
| 1669 | // Emits DOWN, POINTER_DOWN, MOVE, POINTER_UP and UP events that follow |
| 1670 | // each finger individually relative to the initial centroid of the finger. |
| 1671 | FREEFORM, |
| 1672 | |
| 1673 | // Waiting for quiet time to end before starting the next gesture. |
| 1674 | QUIET, |
| 1675 | }; |
| 1676 | |
| 1677 | // Time the first finger went down. |
| 1678 | nsecs_t firstTouchTime; |
| 1679 | |
| 1680 | // The active pointer id from the raw touch data. |
| 1681 | int32_t activeTouchId; // -1 if none |
| 1682 | |
| 1683 | // The active pointer id from the gesture last delivered to the application. |
| 1684 | int32_t activeGestureId; // -1 if none |
| 1685 | |
| 1686 | // Pointer coords and ids for the current and previous pointer gesture. |
| 1687 | Mode currentGestureMode; |
| 1688 | BitSet32 currentGestureIdBits; |
| 1689 | uint32_t currentGestureIdToIndex[MAX_POINTER_ID + 1]; |
| 1690 | PointerProperties currentGestureProperties[MAX_POINTERS]; |
| 1691 | PointerCoords currentGestureCoords[MAX_POINTERS]; |
| 1692 | |
| 1693 | Mode lastGestureMode; |
| 1694 | BitSet32 lastGestureIdBits; |
| 1695 | uint32_t lastGestureIdToIndex[MAX_POINTER_ID + 1]; |
| 1696 | PointerProperties lastGestureProperties[MAX_POINTERS]; |
| 1697 | PointerCoords lastGestureCoords[MAX_POINTERS]; |
| 1698 | |
| 1699 | // Time the pointer gesture last went down. |
| 1700 | nsecs_t downTime; |
| 1701 | |
| 1702 | // Time when the pointer went down for a TAP. |
| 1703 | nsecs_t tapDownTime; |
| 1704 | |
| 1705 | // Time when the pointer went up for a TAP. |
| 1706 | nsecs_t tapUpTime; |
| 1707 | |
| 1708 | // Location of initial tap. |
| 1709 | float tapX, tapY; |
| 1710 | |
| 1711 | // Time we started waiting for quiescence. |
| 1712 | nsecs_t quietTime; |
| 1713 | |
| 1714 | // Reference points for multitouch gestures. |
| 1715 | float referenceTouchX; // reference touch X/Y coordinates in surface units |
| 1716 | float referenceTouchY; |
| 1717 | float referenceGestureX; // reference gesture X/Y coordinates in pixels |
| 1718 | float referenceGestureY; |
| 1719 | |
| 1720 | // Distance that each pointer has traveled which has not yet been |
| 1721 | // subsumed into the reference gesture position. |
| 1722 | BitSet32 referenceIdBits; |
| 1723 | struct Delta { |
| 1724 | float dx, dy; |
| 1725 | }; |
| 1726 | Delta referenceDeltas[MAX_POINTER_ID + 1]; |
| 1727 | |
| 1728 | // Describes how touch ids are mapped to gesture ids for freeform gestures. |
| 1729 | uint32_t freeformTouchToGestureIdMap[MAX_POINTER_ID + 1]; |
| 1730 | |
| 1731 | // A velocity tracker for determining whether to switch active pointers during drags. |
| 1732 | VelocityTracker velocityTracker; |
| 1733 | |
| 1734 | void reset() { |
| 1735 | firstTouchTime = LLONG_MIN; |
| 1736 | activeTouchId = -1; |
| 1737 | activeGestureId = -1; |
| 1738 | currentGestureMode = NEUTRAL; |
| 1739 | currentGestureIdBits.clear(); |
| 1740 | lastGestureMode = NEUTRAL; |
| 1741 | lastGestureIdBits.clear(); |
| 1742 | downTime = 0; |
| 1743 | velocityTracker.clear(); |
| 1744 | resetTap(); |
| 1745 | resetQuietTime(); |
| 1746 | } |
| 1747 | |
| 1748 | void resetTap() { |
| 1749 | tapDownTime = LLONG_MIN; |
| 1750 | tapUpTime = LLONG_MIN; |
| 1751 | } |
| 1752 | |
| 1753 | void resetQuietTime() { |
| 1754 | quietTime = LLONG_MIN; |
| 1755 | } |
| 1756 | } mPointerGesture; |
| 1757 | |
| 1758 | struct PointerSimple { |
| 1759 | PointerCoords currentCoords; |
| 1760 | PointerProperties currentProperties; |
| 1761 | PointerCoords lastCoords; |
| 1762 | PointerProperties lastProperties; |
| 1763 | |
| 1764 | // True if the pointer is down. |
| 1765 | bool down; |
| 1766 | |
| 1767 | // True if the pointer is hovering. |
| 1768 | bool hovering; |
| 1769 | |
| 1770 | // Time the pointer last went down. |
| 1771 | nsecs_t downTime; |
| 1772 | |
| 1773 | void reset() { |
| 1774 | currentCoords.clear(); |
| 1775 | currentProperties.clear(); |
| 1776 | lastCoords.clear(); |
| 1777 | lastProperties.clear(); |
| 1778 | down = false; |
| 1779 | hovering = false; |
| 1780 | downTime = 0; |
| 1781 | } |
| 1782 | } mPointerSimple; |
| 1783 | |
| 1784 | // The pointer and scroll velocity controls. |
| 1785 | VelocityControl mPointerVelocityControl; |
| 1786 | VelocityControl mWheelXVelocityControl; |
| 1787 | VelocityControl mWheelYVelocityControl; |
| 1788 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1789 | void resetExternalStylus(); |
Michael Wright | 43fd19f | 2015-04-21 19:02:58 +0100 | [diff] [blame] | 1790 | void clearStylusDataPendingFlags(); |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1791 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1792 | void sync(nsecs_t when); |
| 1793 | |
| 1794 | bool consumeRawTouches(nsecs_t when, uint32_t policyFlags); |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1795 | void processRawTouches(bool timeout); |
| 1796 | void cookAndDispatch(nsecs_t when); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1797 | void dispatchVirtualKey(nsecs_t when, uint32_t policyFlags, |
| 1798 | int32_t keyEventAction, int32_t keyEventFlags); |
| 1799 | |
| 1800 | void dispatchTouches(nsecs_t when, uint32_t policyFlags); |
| 1801 | void dispatchHoverExit(nsecs_t when, uint32_t policyFlags); |
| 1802 | void dispatchHoverEnterAndMove(nsecs_t when, uint32_t policyFlags); |
Michael Wright | 7b159c9 | 2015-05-14 14:48:03 +0100 | [diff] [blame] | 1803 | void dispatchButtonRelease(nsecs_t when, uint32_t policyFlags); |
| 1804 | void dispatchButtonPress(nsecs_t when, uint32_t policyFlags); |
| 1805 | const BitSet32& findActiveIdBits(const CookedPointerData& cookedPointerData); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1806 | void cookPointerData(); |
Michael Wright | 8e81282 | 2015-06-22 16:18:21 +0100 | [diff] [blame] | 1807 | void abortTouches(nsecs_t when, uint32_t policyFlags); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1808 | |
| 1809 | void dispatchPointerUsage(nsecs_t when, uint32_t policyFlags, PointerUsage pointerUsage); |
| 1810 | void abortPointerUsage(nsecs_t when, uint32_t policyFlags); |
| 1811 | |
| 1812 | void dispatchPointerGestures(nsecs_t when, uint32_t policyFlags, bool isTimeout); |
| 1813 | void abortPointerGestures(nsecs_t when, uint32_t policyFlags); |
| 1814 | bool preparePointerGestures(nsecs_t when, |
| 1815 | bool* outCancelPreviousGesture, bool* outFinishPreviousGesture, |
| 1816 | bool isTimeout); |
| 1817 | |
| 1818 | void dispatchPointerStylus(nsecs_t when, uint32_t policyFlags); |
| 1819 | void abortPointerStylus(nsecs_t when, uint32_t policyFlags); |
| 1820 | |
| 1821 | void dispatchPointerMouse(nsecs_t when, uint32_t policyFlags); |
| 1822 | void abortPointerMouse(nsecs_t when, uint32_t policyFlags); |
| 1823 | |
| 1824 | void dispatchPointerSimple(nsecs_t when, uint32_t policyFlags, |
| 1825 | bool down, bool hovering); |
| 1826 | void abortPointerSimple(nsecs_t when, uint32_t policyFlags); |
| 1827 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1828 | bool assignExternalStylusId(const RawState& state, bool timeout); |
| 1829 | void applyExternalStylusButtonState(nsecs_t when); |
| 1830 | void applyExternalStylusTouchState(nsecs_t when); |
| 1831 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1832 | // Dispatches a motion event. |
| 1833 | // If the changedId is >= 0 and the action is POINTER_DOWN or POINTER_UP, the |
| 1834 | // method will take care of setting the index and transmuting the action to DOWN or UP |
| 1835 | // it is the first / last pointer to go down / up. |
| 1836 | void dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32_t source, |
Michael Wright | 7b159c9 | 2015-05-14 14:48:03 +0100 | [diff] [blame] | 1837 | int32_t action, int32_t actionButton, |
| 1838 | int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1839 | const PointerProperties* properties, const PointerCoords* coords, |
| 1840 | const uint32_t* idToIndex, BitSet32 idBits, |
| 1841 | int32_t changedId, float xPrecision, float yPrecision, nsecs_t downTime); |
| 1842 | |
| 1843 | // Updates pointer coords and properties for pointers with specified ids that have moved. |
| 1844 | // Returns true if any of them changed. |
| 1845 | bool updateMovedPointers(const PointerProperties* inProperties, |
| 1846 | const PointerCoords* inCoords, const uint32_t* inIdToIndex, |
| 1847 | PointerProperties* outProperties, PointerCoords* outCoords, |
| 1848 | const uint32_t* outIdToIndex, BitSet32 idBits) const; |
| 1849 | |
| 1850 | bool isPointInsideSurface(int32_t x, int32_t y); |
| 1851 | const VirtualKey* findVirtualKeyHit(int32_t x, int32_t y); |
| 1852 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1853 | static void assignPointerIds(const RawState* last, RawState* current); |
Santos Cordon | fa5cf46 | 2017-04-05 10:37:00 -0700 | [diff] [blame] | 1854 | |
| 1855 | const char* modeToString(DeviceMode deviceMode); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1856 | }; |
| 1857 | |
| 1858 | |
| 1859 | class SingleTouchInputMapper : public TouchInputMapper { |
| 1860 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1861 | explicit SingleTouchInputMapper(InputDevice* device); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1862 | virtual ~SingleTouchInputMapper(); |
| 1863 | |
| 1864 | virtual void reset(nsecs_t when); |
| 1865 | virtual void process(const RawEvent* rawEvent); |
| 1866 | |
| 1867 | protected: |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1868 | virtual void syncTouch(nsecs_t when, RawState* outState); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1869 | virtual void configureRawPointerAxes(); |
| 1870 | virtual bool hasStylus() const; |
| 1871 | |
| 1872 | private: |
| 1873 | SingleTouchMotionAccumulator mSingleTouchMotionAccumulator; |
| 1874 | }; |
| 1875 | |
| 1876 | |
| 1877 | class MultiTouchInputMapper : public TouchInputMapper { |
| 1878 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1879 | explicit MultiTouchInputMapper(InputDevice* device); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1880 | virtual ~MultiTouchInputMapper(); |
| 1881 | |
| 1882 | virtual void reset(nsecs_t when); |
| 1883 | virtual void process(const RawEvent* rawEvent); |
| 1884 | |
| 1885 | protected: |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1886 | virtual void syncTouch(nsecs_t when, RawState* outState); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1887 | virtual void configureRawPointerAxes(); |
| 1888 | virtual bool hasStylus() const; |
| 1889 | |
| 1890 | private: |
| 1891 | MultiTouchMotionAccumulator mMultiTouchMotionAccumulator; |
| 1892 | |
| 1893 | // Specifies the pointer id bits that are in use, and their associated tracking id. |
| 1894 | BitSet32 mPointerIdBits; |
| 1895 | int32_t mPointerTrackingIdMap[MAX_POINTER_ID + 1]; |
| 1896 | }; |
| 1897 | |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1898 | class ExternalStylusInputMapper : public InputMapper { |
| 1899 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1900 | explicit ExternalStylusInputMapper(InputDevice* device); |
Michael Wright | 842500e | 2015-03-13 17:32:02 -0700 | [diff] [blame] | 1901 | virtual ~ExternalStylusInputMapper() = default; |
| 1902 | |
| 1903 | virtual uint32_t getSources(); |
| 1904 | virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo); |
| 1905 | virtual void dump(String8& dump); |
| 1906 | virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); |
| 1907 | virtual void reset(nsecs_t when); |
| 1908 | virtual void process(const RawEvent* rawEvent); |
| 1909 | virtual void sync(nsecs_t when); |
| 1910 | |
| 1911 | private: |
| 1912 | SingleTouchMotionAccumulator mSingleTouchMotionAccumulator; |
| 1913 | RawAbsoluteAxisInfo mRawPressureAxis; |
| 1914 | TouchButtonAccumulator mTouchButtonAccumulator; |
| 1915 | |
| 1916 | StylusState mStylusState; |
| 1917 | }; |
| 1918 | |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1919 | |
| 1920 | class JoystickInputMapper : public InputMapper { |
| 1921 | public: |
Chih-Hung Hsieh | 6d2ede1 | 2016-09-01 11:28:23 -0700 | [diff] [blame] | 1922 | explicit JoystickInputMapper(InputDevice* device); |
Michael Wright | d02c5b6 | 2014-02-10 15:10:22 -0800 | [diff] [blame] | 1923 | virtual ~JoystickInputMapper(); |
| 1924 | |
| 1925 | virtual uint32_t getSources(); |
| 1926 | virtual void populateDeviceInfo(InputDeviceInfo* deviceInfo); |
| 1927 | virtual void dump(String8& dump); |
| 1928 | virtual void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes); |
| 1929 | virtual void reset(nsecs_t when); |
| 1930 | virtual void process(const RawEvent* rawEvent); |
| 1931 | |
| 1932 | private: |
| 1933 | struct Axis { |
| 1934 | RawAbsoluteAxisInfo rawAxisInfo; |
| 1935 | AxisInfo axisInfo; |
| 1936 | |
| 1937 | bool explicitlyMapped; // true if the axis was explicitly assigned an axis id |
| 1938 | |
| 1939 | float scale; // scale factor from raw to normalized values |
| 1940 | float offset; // offset to add after scaling for normalization |
| 1941 | float highScale; // scale factor from raw to normalized values of high split |
| 1942 | float highOffset; // offset to add after scaling for normalization of high split |
| 1943 | |
| 1944 | float min; // normalized inclusive minimum |
| 1945 | float max; // normalized inclusive maximum |
| 1946 | float flat; // normalized flat region size |
| 1947 | float fuzz; // normalized error tolerance |
| 1948 | float resolution; // normalized resolution in units/mm |
| 1949 | |
| 1950 | float filter; // filter out small variations of this size |
| 1951 | float currentValue; // current value |
| 1952 | float newValue; // most recent value |
| 1953 | float highCurrentValue; // current value of high split |
| 1954 | float highNewValue; // most recent value of high split |
| 1955 | |
| 1956 | void initialize(const RawAbsoluteAxisInfo& rawAxisInfo, const AxisInfo& axisInfo, |
| 1957 | bool explicitlyMapped, float scale, float offset, |
| 1958 | float highScale, float highOffset, |
| 1959 | float min, float max, float flat, float fuzz, float resolution) { |
| 1960 | this->rawAxisInfo = rawAxisInfo; |
| 1961 | this->axisInfo = axisInfo; |
| 1962 | this->explicitlyMapped = explicitlyMapped; |
| 1963 | this->scale = scale; |
| 1964 | this->offset = offset; |
| 1965 | this->highScale = highScale; |
| 1966 | this->highOffset = highOffset; |
| 1967 | this->min = min; |
| 1968 | this->max = max; |
| 1969 | this->flat = flat; |
| 1970 | this->fuzz = fuzz; |
| 1971 | this->resolution = resolution; |
| 1972 | this->filter = 0; |
| 1973 | resetValue(); |
| 1974 | } |
| 1975 | |
| 1976 | void resetValue() { |
| 1977 | this->currentValue = 0; |
| 1978 | this->newValue = 0; |
| 1979 | this->highCurrentValue = 0; |
| 1980 | this->highNewValue = 0; |
| 1981 | } |
| 1982 | }; |
| 1983 | |
| 1984 | // Axes indexed by raw ABS_* axis index. |
| 1985 | KeyedVector<int32_t, Axis> mAxes; |
| 1986 | |
| 1987 | void sync(nsecs_t when, bool force); |
| 1988 | |
| 1989 | bool haveAxis(int32_t axisId); |
| 1990 | void pruneAxes(bool ignoreExplicitlyMappedAxes); |
| 1991 | bool filterAxes(bool force); |
| 1992 | |
| 1993 | static bool hasValueChangedSignificantly(float filter, |
| 1994 | float newValue, float currentValue, float min, float max); |
| 1995 | static bool hasMovedNearerToValueWithinFilteredRange(float filter, |
| 1996 | float newValue, float currentValue, float thresholdValue); |
| 1997 | |
| 1998 | static bool isCenteredAxis(int32_t axis); |
| 1999 | static int32_t getCompatAxis(int32_t axis); |
| 2000 | |
| 2001 | static void addMotionRange(int32_t axisId, const Axis& axis, InputDeviceInfo* info); |
| 2002 | static void setPointerCoordsAxisValue(PointerCoords* pointerCoords, int32_t axis, |
| 2003 | float value); |
| 2004 | }; |
| 2005 | |
| 2006 | } // namespace android |
| 2007 | |
| 2008 | #endif // _UI_INPUT_READER_H |