blob: ba1c6b4716c8e272237c84f4413b902232d0bcf5 [file] [log] [blame]
Jeff Brown46b9ac02010-04-22 18:58:52 -07001/*
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_H
18#define _UI_INPUT_H
19
20/**
21 * Native input event structures.
22 */
23
24#include <android/input.h>
25#include <utils/Vector.h>
Jeff Brown6d0fec22010-07-23 21:28:06 -070026#include <utils/KeyedVector.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070027#include <utils/Timers.h>
Jeff Brown6d0fec22010-07-23 21:28:06 -070028#include <utils/RefBase.h>
29#include <utils/String8.h>
Jeff Brownace13b12011-03-09 17:39:48 -080030#include <utils/BitSet.h>
Jeff Brown46b9ac02010-04-22 18:58:52 -070031
Jeff Brown91c69ab2011-02-14 17:03:18 -080032#ifdef HAVE_ANDROID_OS
33class SkMatrix;
34#endif
35
Jeff Brown46b9ac02010-04-22 18:58:52 -070036/*
37 * Additional private constants not defined in ndk/ui/input.h.
38 */
39enum {
Jeff Brown21bc5c92011-02-28 18:27:14 -080040 /* Private control to determine when an app is tracking a key sequence. */
41 AKEY_EVENT_FLAG_START_TRACKING = 0x40000000,
42
43 /* Key event is inconsistent with previously sent key events. */
44 AKEY_EVENT_FLAG_TAINTED = 0x80000000,
45};
46
47enum {
48 /* Motion event is inconsistent with previously sent motion events. */
49 AMOTION_EVENT_FLAG_TAINTED = 0x80000000,
Jeff Brown46b9ac02010-04-22 18:58:52 -070050};
51
Jeff Brown89de57a2011-01-19 18:41:38 -080052enum {
53 /*
54 * Indicates that an input device has switches.
55 * This input source flag is hidden from the API because switches are only used by the system
56 * and applications have no way to interact with them.
57 */
58 AINPUT_SOURCE_SWITCH = 0x80000000,
59};
60
Jeff Brown46b9ac02010-04-22 18:58:52 -070061/*
Jeff Brown05dc66a2011-03-02 14:41:58 -080062 * SystemUiVisibility constants from View.
63 */
64enum {
65 ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0,
66 ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001,
67};
68
69/*
Jeff Brown46b9ac02010-04-22 18:58:52 -070070 * Maximum number of pointers supported per motion event.
Jeff Brown01ce2e92010-09-26 22:20:12 -070071 * Smallest number of pointers is 1.
Jeff Brown58a2da82011-01-25 16:02:22 -080072 * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers
73 * will occasionally emit 11. There is not much harm making this constant bigger.)
Jeff Brown46b9ac02010-04-22 18:58:52 -070074 */
Jeff Brown58a2da82011-01-25 16:02:22 -080075#define MAX_POINTERS 16
Jeff Brown46b9ac02010-04-22 18:58:52 -070076
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070077/*
Jeff Brown01ce2e92010-09-26 22:20:12 -070078 * Maximum pointer id value supported in a motion event.
79 * Smallest pointer id is 0.
80 * (This is limited by our use of BitSet32 to track pointer assignments.)
81 */
82#define MAX_POINTER_ID 31
83
84/*
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070085 * Declare a concrete type for the NDK's input event forward declaration.
86 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070087struct AInputEvent {
88 virtual ~AInputEvent() { }
89};
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070090
Jeff Brown46b9ac02010-04-22 18:58:52 -070091/*
Jeff Brown6d0fec22010-07-23 21:28:06 -070092 * Declare a concrete type for the NDK's input device forward declaration.
Jeff Brown46b9ac02010-04-22 18:58:52 -070093 */
Jeff Brown6d0fec22010-07-23 21:28:06 -070094struct AInputDevice {
95 virtual ~AInputDevice() { }
Jeff Brown46b9ac02010-04-22 18:58:52 -070096};
97
Jeff Brown6d0fec22010-07-23 21:28:06 -070098
99namespace android {
100
Jeff Brown91c69ab2011-02-14 17:03:18 -0800101#ifdef HAVE_ANDROID_OS
102class Parcel;
103#endif
104
Jeff Brown46b9ac02010-04-22 18:58:52 -0700105/*
106 * Flags that flow alongside events in the input dispatch system to help with certain
107 * policy decisions such as waking from device sleep.
Jeff Brownb6997262010-10-08 22:31:17 -0700108 *
109 * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java.
Jeff Brown46b9ac02010-04-22 18:58:52 -0700110 */
111enum {
Jeff Brown0eaf3932010-10-01 14:55:30 -0700112 /* These flags originate in RawEvents and are generally set in the key map.
Jeff Brown497a92c2010-09-12 17:55:08 -0700113 * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700114
115 POLICY_FLAG_WAKE = 0x00000001,
116 POLICY_FLAG_WAKE_DROPPED = 0x00000002,
117 POLICY_FLAG_SHIFT = 0x00000004,
118 POLICY_FLAG_CAPS_LOCK = 0x00000008,
119 POLICY_FLAG_ALT = 0x00000010,
120 POLICY_FLAG_ALT_GR = 0x00000020,
121 POLICY_FLAG_MENU = 0x00000040,
122 POLICY_FLAG_LAUNCHER = 0x00000080,
Jeff Brown0eaf3932010-10-01 14:55:30 -0700123 POLICY_FLAG_VIRTUAL = 0x00000100,
Jeff Brown497a92c2010-09-12 17:55:08 -0700124 POLICY_FLAG_FUNCTION = 0x00000200,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700125
Jeff Brown7fbdc842010-06-17 20:52:56 -0700126 POLICY_FLAG_RAW_MASK = 0x0000ffff,
127
Jeff Brown85a31762010-09-01 17:01:00 -0700128 /* These flags are set by the input dispatcher. */
129
130 // Indicates that the input event was injected.
131 POLICY_FLAG_INJECTED = 0x01000000,
132
Jeff Browne20c9e02010-10-11 14:20:19 -0700133 // Indicates that the input event is from a trusted source such as a directly attached
134 // input device or an application with system-wide event injection permission.
135 POLICY_FLAG_TRUSTED = 0x02000000,
136
Jeff Brown0029c662011-03-30 02:25:18 -0700137 // Indicates that the input event has passed through an input filter.
138 POLICY_FLAG_FILTERED = 0x04000000,
139
140 // Disables automatic key repeating behavior.
141 POLICY_FLAG_DISABLE_KEY_REPEAT = 0x08000000,
142
Jeff Brown9c3cda02010-06-15 01:31:58 -0700143 /* These flags are set by the input reader policy as it intercepts each event. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700144
145 // Indicates that the screen was off when the event was received and the event
146 // should wake the device.
147 POLICY_FLAG_WOKE_HERE = 0x10000000,
148
149 // Indicates that the screen was dim when the event was received and the event
150 // should brighten the device.
151 POLICY_FLAG_BRIGHT_HERE = 0x20000000,
Jeff Brownb6997262010-10-08 22:31:17 -0700152
153 // Indicates that the event should be dispatched to applications.
154 // The input event should still be sent to the InputDispatcher so that it can see all
155 // input events received include those that it will not deliver.
156 POLICY_FLAG_PASS_TO_USER = 0x40000000,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700157};
158
159/*
Jeff Brown9c3cda02010-06-15 01:31:58 -0700160 * Describes the basic configuration of input devices that are present.
161 */
162struct InputConfiguration {
163 enum {
164 TOUCHSCREEN_UNDEFINED = 0,
165 TOUCHSCREEN_NOTOUCH = 1,
166 TOUCHSCREEN_STYLUS = 2,
167 TOUCHSCREEN_FINGER = 3
168 };
169
170 enum {
171 KEYBOARD_UNDEFINED = 0,
172 KEYBOARD_NOKEYS = 1,
173 KEYBOARD_QWERTY = 2,
174 KEYBOARD_12KEY = 3
175 };
176
177 enum {
178 NAVIGATION_UNDEFINED = 0,
179 NAVIGATION_NONAV = 1,
180 NAVIGATION_DPAD = 2,
181 NAVIGATION_TRACKBALL = 3,
182 NAVIGATION_WHEEL = 4
183 };
184
185 int32_t touchScreen;
186 int32_t keyboard;
187 int32_t navigation;
188};
189
190/*
Jeff Brown46b9ac02010-04-22 18:58:52 -0700191 * Pointer coordinate data.
192 */
193struct PointerCoords {
Jeff Brown6f2fba42011-02-19 01:08:02 -0800194 enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64
Jeff Brown91c69ab2011-02-14 17:03:18 -0800195
196 // Bitfield of axes that are present in this structure.
Jeff Brown6f2fba42011-02-19 01:08:02 -0800197 uint64_t bits;
Jeff Brown91c69ab2011-02-14 17:03:18 -0800198
199 // Values of axes that are stored in this structure packed in order by axis id
200 // for each axis that is present in the structure according to 'bits'.
201 float values[MAX_AXES];
202
203 inline void clear() {
204 bits = 0;
205 }
206
Jeff Brown6f2fba42011-02-19 01:08:02 -0800207 float getAxisValue(int32_t axis) const;
208 status_t setAxisValue(int32_t axis, float value);
209 float* editAxisValue(int32_t axis);
Jeff Brown91c69ab2011-02-14 17:03:18 -0800210
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400211 void scale(float scale);
212
Jeff Brown91c69ab2011-02-14 17:03:18 -0800213#ifdef HAVE_ANDROID_OS
214 status_t readFromParcel(Parcel* parcel);
215 status_t writeToParcel(Parcel* parcel) const;
216#endif
217
Jeff Brownace13b12011-03-09 17:39:48 -0800218 bool operator==(const PointerCoords& other) const;
219 inline bool operator!=(const PointerCoords& other) const {
220 return !(*this == other);
221 }
222
223 void copyFrom(const PointerCoords& other);
224
Jeff Brown91c69ab2011-02-14 17:03:18 -0800225private:
226 void tooManyAxes(int axis);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700227};
228
229/*
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700230 * Pointer property data.
231 */
232struct PointerProperties {
233 // The id of the pointer.
234 int32_t id;
235
236 // The pointer tool type.
237 int32_t toolType;
238
239 inline void clear() {
240 id = -1;
241 toolType = 0;
242 }
243
244 bool operator==(const PointerProperties& other) const;
245 inline bool operator!=(const PointerProperties& other) const {
246 return !(*this == other);
247 }
248
249 void copyFrom(const PointerProperties& other);
250};
251
252/*
Jeff Brown46b9ac02010-04-22 18:58:52 -0700253 * Input events.
254 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700255class InputEvent : public AInputEvent {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700256public:
257 virtual ~InputEvent() { }
258
259 virtual int32_t getType() const = 0;
260
261 inline int32_t getDeviceId() const { return mDeviceId; }
262
Jeff Brownc5ed5912010-07-14 18:48:53 -0700263 inline int32_t getSource() const { return mSource; }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800264
265 inline void setSource(int32_t source) { mSource = source; }
266
Jeff Brown46b9ac02010-04-22 18:58:52 -0700267protected:
Jeff Brownc5ed5912010-07-14 18:48:53 -0700268 void initialize(int32_t deviceId, int32_t source);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700269 void initialize(const InputEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700270
Jeff Brown46b9ac02010-04-22 18:58:52 -0700271 int32_t mDeviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -0700272 int32_t mSource;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700273};
274
Jeff Brown5c225b12010-06-16 01:53:36 -0700275/*
276 * Key events.
277 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700278class KeyEvent : public InputEvent {
279public:
280 virtual ~KeyEvent() { }
281
Jeff Brownc5ed5912010-07-14 18:48:53 -0700282 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700283
284 inline int32_t getAction() const { return mAction; }
285
286 inline int32_t getFlags() const { return mFlags; }
287
288 inline int32_t getKeyCode() const { return mKeyCode; }
289
290 inline int32_t getScanCode() const { return mScanCode; }
291
292 inline int32_t getMetaState() const { return mMetaState; }
293
294 inline int32_t getRepeatCount() const { return mRepeatCount; }
295
296 inline nsecs_t getDownTime() const { return mDownTime; }
297
298 inline nsecs_t getEventTime() const { return mEventTime; }
299
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700300 // Return true if this event may have a default action implementation.
301 static bool hasDefaultAction(int32_t keyCode);
302 bool hasDefaultAction() const;
303
304 // Return true if this event represents a system key.
305 static bool isSystemKey(int32_t keyCode);
306 bool isSystemKey() const;
307
Jeff Brown46b9ac02010-04-22 18:58:52 -0700308 void initialize(
309 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700310 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700311 int32_t action,
312 int32_t flags,
313 int32_t keyCode,
314 int32_t scanCode,
315 int32_t metaState,
316 int32_t repeatCount,
317 nsecs_t downTime,
318 nsecs_t eventTime);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700319 void initialize(const KeyEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700320
Jeff Brown91c69ab2011-02-14 17:03:18 -0800321protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700322 int32_t mAction;
323 int32_t mFlags;
324 int32_t mKeyCode;
325 int32_t mScanCode;
326 int32_t mMetaState;
327 int32_t mRepeatCount;
328 nsecs_t mDownTime;
329 nsecs_t mEventTime;
330};
331
Jeff Brown5c225b12010-06-16 01:53:36 -0700332/*
333 * Motion events.
334 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700335class MotionEvent : public InputEvent {
336public:
337 virtual ~MotionEvent() { }
338
Jeff Brownc5ed5912010-07-14 18:48:53 -0700339 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700340
341 inline int32_t getAction() const { return mAction; }
342
Jeff Brown2ed24622011-03-14 19:39:54 -0700343 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
344
345 inline int32_t getActionIndex() const {
346 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
347 >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
348 }
349
Jeff Brown91c69ab2011-02-14 17:03:18 -0800350 inline void setAction(int32_t action) { mAction = action; }
351
Jeff Brown85a31762010-09-01 17:01:00 -0700352 inline int32_t getFlags() const { return mFlags; }
353
Jeff Brown21bc5c92011-02-28 18:27:14 -0800354 inline void setFlags(int32_t flags) { mFlags = flags; }
355
Jeff Brown46b9ac02010-04-22 18:58:52 -0700356 inline int32_t getEdgeFlags() const { return mEdgeFlags; }
357
Jeff Brown91c69ab2011-02-14 17:03:18 -0800358 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; }
359
Jeff Brown46b9ac02010-04-22 18:58:52 -0700360 inline int32_t getMetaState() const { return mMetaState; }
361
Jeff Brown91c69ab2011-02-14 17:03:18 -0800362 inline void setMetaState(int32_t metaState) { mMetaState = metaState; }
363
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700364 inline int32_t getButtonState() const { return mButtonState; }
365
Jeff Brown5c225b12010-06-16 01:53:36 -0700366 inline float getXOffset() const { return mXOffset; }
367
368 inline float getYOffset() const { return mYOffset; }
369
Jeff Brown46b9ac02010-04-22 18:58:52 -0700370 inline float getXPrecision() const { return mXPrecision; }
371
372 inline float getYPrecision() const { return mYPrecision; }
373
374 inline nsecs_t getDownTime() const { return mDownTime; }
375
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700376 inline void setDownTime(nsecs_t downTime) { mDownTime = downTime; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700377
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700378 inline size_t getPointerCount() const { return mPointerProperties.size(); }
379
380 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const {
381 return &mPointerProperties[pointerIndex];
382 }
383
384 inline int32_t getPointerId(size_t pointerIndex) const {
385 return mPointerProperties[pointerIndex].id;
386 }
387
388 inline int32_t getToolType(size_t pointerIndex) const {
389 return mPointerProperties[pointerIndex].toolType;
390 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700391
392 inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; }
393
Jeff Brown91c69ab2011-02-14 17:03:18 -0800394 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
395
396 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
397
Jeff Brown5c225b12010-06-16 01:53:36 -0700398 inline float getRawX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800399 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700400 }
401
Jeff Brown5c225b12010-06-16 01:53:36 -0700402 inline float getRawY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800403 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700404 }
405
Jeff Brown91c69ab2011-02-14 17:03:18 -0800406 float getAxisValue(int32_t axis, size_t pointerIndex) const;
407
Jeff Brown5c225b12010-06-16 01:53:36 -0700408 inline float getX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800409 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700410 }
411
412 inline float getY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800413 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700414 }
415
Jeff Brown46b9ac02010-04-22 18:58:52 -0700416 inline float getPressure(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800417 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700418 }
419
420 inline float getSize(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800421 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700422 }
423
Jeff Brownc5ed5912010-07-14 18:48:53 -0700424 inline float getTouchMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800425 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700426 }
427
428 inline float getTouchMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800429 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700430 }
431
432 inline float getToolMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800433 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700434 }
435
436 inline float getToolMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800437 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700438 }
439
440 inline float getOrientation(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800441 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700442 }
443
Jeff Brown46b9ac02010-04-22 18:58:52 -0700444 inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; }
445
446 inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const {
447 return mSampleEventTimes[historicalIndex];
448 }
449
Jeff Brown91c69ab2011-02-14 17:03:18 -0800450 const PointerCoords* getHistoricalRawPointerCoords(
451 size_t pointerIndex, size_t historicalIndex) const;
452
453 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
454 size_t historicalIndex) const;
455
Jeff Brown5c225b12010-06-16 01:53:36 -0700456 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800457 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800458 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700459 }
460
Jeff Brown5c225b12010-06-16 01:53:36 -0700461 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800462 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800463 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700464 }
465
Jeff Brown91c69ab2011-02-14 17:03:18 -0800466 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
467
Jeff Brown5c225b12010-06-16 01:53:36 -0700468 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800469 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800470 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700471 }
472
473 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800474 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800475 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700476 }
477
Jeff Brown46b9ac02010-04-22 18:58:52 -0700478 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800479 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800480 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700481 }
482
483 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800484 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800485 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700486 }
487
Jeff Brownc5ed5912010-07-14 18:48:53 -0700488 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800489 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800490 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700491 }
492
493 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800494 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800495 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700496 }
497
498 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800499 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800500 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700501 }
502
503 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800504 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800505 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700506 }
507
508 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800509 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800510 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700511 }
512
Jeff Brown2ed24622011-03-14 19:39:54 -0700513 ssize_t findPointerIndex(int32_t pointerId) const;
514
Jeff Brown46b9ac02010-04-22 18:58:52 -0700515 void initialize(
516 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700517 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700518 int32_t action,
Jeff Brown85a31762010-09-01 17:01:00 -0700519 int32_t flags,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700520 int32_t edgeFlags,
521 int32_t metaState,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700522 int32_t buttonState,
Jeff Brown5c225b12010-06-16 01:53:36 -0700523 float xOffset,
524 float yOffset,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700525 float xPrecision,
526 float yPrecision,
527 nsecs_t downTime,
528 nsecs_t eventTime,
529 size_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700530 const PointerProperties* pointerProperties,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700531 const PointerCoords* pointerCoords);
532
Jeff Brown91c69ab2011-02-14 17:03:18 -0800533 void copyFrom(const MotionEvent* other, bool keepHistory);
534
Jeff Brown46b9ac02010-04-22 18:58:52 -0700535 void addSample(
536 nsecs_t eventTime,
537 const PointerCoords* pointerCoords);
538
539 void offsetLocation(float xOffset, float yOffset);
540
Jeff Brown91c69ab2011-02-14 17:03:18 -0800541 void scale(float scaleFactor);
542
543#ifdef HAVE_ANDROID_OS
544 void transform(const SkMatrix* matrix);
545
546 status_t readFromParcel(Parcel* parcel);
547 status_t writeToParcel(Parcel* parcel) const;
548#endif
549
Jeff Brown56194eb2011-03-02 19:23:13 -0800550 static bool isTouchEvent(int32_t source, int32_t action);
551 inline bool isTouchEvent() const {
552 return isTouchEvent(mSource, mAction);
553 }
554
Jeff Brown5c225b12010-06-16 01:53:36 -0700555 // Low-level accessors.
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700556 inline const PointerProperties* getPointerProperties() const {
557 return mPointerProperties.array();
558 }
Jeff Brown5c225b12010-06-16 01:53:36 -0700559 inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); }
560 inline const PointerCoords* getSamplePointerCoords() const {
561 return mSamplePointerCoords.array();
562 }
563
Jeff Brown91c69ab2011-02-14 17:03:18 -0800564protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700565 int32_t mAction;
Jeff Brown85a31762010-09-01 17:01:00 -0700566 int32_t mFlags;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700567 int32_t mEdgeFlags;
568 int32_t mMetaState;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700569 int32_t mButtonState;
Jeff Brown5c225b12010-06-16 01:53:36 -0700570 float mXOffset;
571 float mYOffset;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700572 float mXPrecision;
573 float mYPrecision;
574 nsecs_t mDownTime;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700575 Vector<PointerProperties> mPointerProperties;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700576 Vector<nsecs_t> mSampleEventTimes;
577 Vector<PointerCoords> mSamplePointerCoords;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700578};
579
580/*
581 * Input event factory.
582 */
583class InputEventFactoryInterface {
584protected:
585 virtual ~InputEventFactoryInterface() { }
586
587public:
588 InputEventFactoryInterface() { }
589
590 virtual KeyEvent* createKeyEvent() = 0;
591 virtual MotionEvent* createMotionEvent() = 0;
592};
593
594/*
595 * A simple input event factory implementation that uses a single preallocated instance
596 * of each type of input event that are reused for each request.
597 */
598class PreallocatedInputEventFactory : public InputEventFactoryInterface {
599public:
600 PreallocatedInputEventFactory() { }
601 virtual ~PreallocatedInputEventFactory() { }
602
603 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
604 virtual MotionEvent* createMotionEvent() { return & mMotionEvent; }
605
606private:
607 KeyEvent mKeyEvent;
608 MotionEvent mMotionEvent;
609};
610
Jeff Brown6d0fec22010-07-23 21:28:06 -0700611/*
Jeff Brown2ed24622011-03-14 19:39:54 -0700612 * Calculates the velocity of pointer movements over time.
Jeff Brownace13b12011-03-09 17:39:48 -0800613 */
614class VelocityTracker {
615public:
616 struct Position {
617 float x, y;
618 };
619
620 VelocityTracker();
621
622 // Resets the velocity tracker state.
623 void clear();
624
Jeff Brown2ed24622011-03-14 19:39:54 -0700625 // Resets the velocity tracker state for specific pointers.
626 // Call this method when some pointers have changed and may be reusing
627 // an id that was assigned to a different pointer earlier.
628 void clearPointers(BitSet32 idBits);
629
Jeff Brownace13b12011-03-09 17:39:48 -0800630 // Adds movement information for a set of pointers.
631 // The idBits bitfield specifies the pointer ids of the pointers whose positions
632 // are included in the movement.
633 // The positions array contains position information for each pointer in order by
634 // increasing id. Its size should be equal to the number of one bits in idBits.
635 void addMovement(nsecs_t eventTime, BitSet32 idBits, const Position* positions);
636
Jeff Brown2ed24622011-03-14 19:39:54 -0700637 // Adds movement information for all pointers in a MotionEvent, including historical samples.
638 void addMovement(const MotionEvent* event);
639
Jeff Brownace13b12011-03-09 17:39:48 -0800640 // Gets the velocity of the specified pointer id in position units per second.
641 // Returns false and sets the velocity components to zero if there is no movement
642 // information for the pointer.
643 bool getVelocity(uint32_t id, float* outVx, float* outVy) const;
644
Jeff Brown2ed24622011-03-14 19:39:54 -0700645 // Gets the active pointer id, or -1 if none.
646 inline int32_t getActivePointerId() const { return mActivePointerId; }
647
648 // Gets a bitset containing all pointer ids from the most recent movement.
649 inline BitSet32 getCurrentPointerIdBits() const { return mMovements[mIndex].idBits; }
650
Jeff Brownace13b12011-03-09 17:39:48 -0800651private:
652 // Number of samples to keep.
653 static const uint32_t HISTORY_SIZE = 10;
654
655 // Oldest sample to consider when calculating the velocity.
656 static const nsecs_t MAX_AGE = 200 * 1000000; // 200 ms
657
Jeff Brown2352b972011-04-12 22:39:53 -0700658 // When the total duration of the window of samples being averaged is less
659 // than the window size, the resulting velocity is scaled to reduce the impact
660 // of overestimation in short traces.
661 static const nsecs_t MIN_WINDOW = 100 * 1000000; // 100 ms
662
Jeff Brownace13b12011-03-09 17:39:48 -0800663 // The minimum duration between samples when estimating velocity.
Jeff Brown2ed24622011-03-14 19:39:54 -0700664 static const nsecs_t MIN_DURATION = 10 * 1000000; // 10 ms
Jeff Brownace13b12011-03-09 17:39:48 -0800665
666 struct Movement {
667 nsecs_t eventTime;
668 BitSet32 idBits;
669 Position positions[MAX_POINTERS];
670 };
671
672 uint32_t mIndex;
673 Movement mMovements[HISTORY_SIZE];
Jeff Brown2ed24622011-03-14 19:39:54 -0700674 int32_t mActivePointerId;
Jeff Brownace13b12011-03-09 17:39:48 -0800675};
676
677/*
Jeff Brown6d0fec22010-07-23 21:28:06 -0700678 * Describes the characteristics and capabilities of an input device.
679 */
680class InputDeviceInfo {
681public:
682 InputDeviceInfo();
683 InputDeviceInfo(const InputDeviceInfo& other);
684 ~InputDeviceInfo();
685
686 struct MotionRange {
Jeff Brownefd32662011-03-08 15:13:06 -0800687 int32_t axis;
688 uint32_t source;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700689 float min;
690 float max;
691 float flat;
692 float fuzz;
693 };
694
695 void initialize(int32_t id, const String8& name);
696
697 inline int32_t getId() const { return mId; }
698 inline const String8 getName() const { return mName; }
699 inline uint32_t getSources() const { return mSources; }
700
Jeff Brownefd32662011-03-08 15:13:06 -0800701 const MotionRange* getMotionRange(int32_t axis, uint32_t source) const;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700702
703 void addSource(uint32_t source);
Jeff Brownefd32662011-03-08 15:13:06 -0800704 void addMotionRange(int32_t axis, uint32_t source,
705 float min, float max, float flat, float fuzz);
706 void addMotionRange(const MotionRange& range);
Jeff Brown6d0fec22010-07-23 21:28:06 -0700707
708 inline void setKeyboardType(int32_t keyboardType) { mKeyboardType = keyboardType; }
709 inline int32_t getKeyboardType() const { return mKeyboardType; }
710
Jeff Brownefd32662011-03-08 15:13:06 -0800711 inline const Vector<MotionRange>& getMotionRanges() const {
Jeff Brown8d608662010-08-30 03:02:23 -0700712 return mMotionRanges;
713 }
714
Jeff Brown6d0fec22010-07-23 21:28:06 -0700715private:
716 int32_t mId;
717 String8 mName;
718 uint32_t mSources;
719 int32_t mKeyboardType;
720
Jeff Brownefd32662011-03-08 15:13:06 -0800721 Vector<MotionRange> mMotionRanges;
Jeff Brown6d0fec22010-07-23 21:28:06 -0700722};
723
Jeff Brown90655042010-12-02 13:50:46 -0800724/*
725 * Identifies a device.
726 */
727struct InputDeviceIdentifier {
728 inline InputDeviceIdentifier() :
729 bus(0), vendor(0), product(0), version(0) {
730 }
731
732 String8 name;
733 String8 location;
734 String8 uniqueId;
735 uint16_t bus;
736 uint16_t vendor;
737 uint16_t product;
738 uint16_t version;
739};
740
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800741/* Types of input device configuration files. */
742enum InputDeviceConfigurationFileType {
743 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_CONFIGURATION = 0, /* .idc file */
744 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_LAYOUT = 1, /* .kl file */
745 INPUT_DEVICE_CONFIGURATION_FILE_TYPE_KEY_CHARACTER_MAP = 2, /* .kcm file */
746};
747
748/*
Jeff Brown90655042010-12-02 13:50:46 -0800749 * Gets the path of an input device configuration file, if one is available.
Jeff Brown1f245102010-11-18 20:53:46 -0800750 * Considers both system provided and user installed configuration files.
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800751 *
Jeff Brown90655042010-12-02 13:50:46 -0800752 * The device identifier is used to construct several default configuration file
753 * names to try based on the device name, vendor, product, and version.
754 *
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800755 * Returns an empty string if not found.
756 */
Jeff Brown90655042010-12-02 13:50:46 -0800757extern String8 getInputDeviceConfigurationFilePathByDeviceIdentifier(
758 const InputDeviceIdentifier& deviceIdentifier,
759 InputDeviceConfigurationFileType type);
760
761/*
762 * Gets the path of an input device configuration file, if one is available.
763 * Considers both system provided and user installed configuration files.
764 *
765 * The name is case-sensitive and is used to construct the filename to resolve.
766 * All characters except 'a'-'z', 'A'-'Z', '0'-'9', '-', and '_' are replaced by underscores.
767 *
768 * Returns an empty string if not found.
769 */
770extern String8 getInputDeviceConfigurationFilePathByName(
Jeff Brown47e6b1b2010-11-29 17:37:49 -0800771 const String8& name, InputDeviceConfigurationFileType type);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700772
773} // namespace android
774
775#endif // _UI_INPUT_H