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