blob: aa8b82459a0910673953aab63e632ac4c8759acb [file] [log] [blame]
Jeff Brown46b9ac0a2010-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
Mathias Agopianb93a03f82012-02-17 15:34:57 -080017#ifndef _ANDROIDFW_INPUT_H
18#define _ANDROIDFW_INPUT_H
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070019
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 Brown46b9ac0a2010-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 Brown46b9ac0a2010-04-22 18:58:52 -070030
Jeff Brown91c69ab2011-02-14 17:03:18 -080031#ifdef HAVE_ANDROID_OS
32class SkMatrix;
33#endif
34
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070035/*
36 * Additional private constants not defined in ndk/ui/input.h.
37 */
38enum {
Jeff Brown21bc5c92011-02-28 18:27:14 -080039 /* Private control to determine when an app is tracking a key sequence. */
40 AKEY_EVENT_FLAG_START_TRACKING = 0x40000000,
41
42 /* Key event is inconsistent with previously sent key events. */
43 AKEY_EVENT_FLAG_TAINTED = 0x80000000,
44};
45
46enum {
47 /* Motion event is inconsistent with previously sent motion events. */
48 AMOTION_EVENT_FLAG_TAINTED = 0x80000000,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070049};
50
Jeff Brown89de57a2011-01-19 18:41:38 -080051enum {
52 /*
53 * Indicates that an input device has switches.
54 * This input source flag is hidden from the API because switches are only used by the system
55 * and applications have no way to interact with them.
56 */
57 AINPUT_SOURCE_SWITCH = 0x80000000,
58};
59
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070060/*
Jeff Brown05dc66a2011-03-02 14:41:58 -080061 * SystemUiVisibility constants from View.
62 */
63enum {
64 ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0,
65 ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001,
66};
67
68/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070069 * Maximum number of pointers supported per motion event.
Jeff Brown01ce2e92010-09-26 22:20:12 -070070 * Smallest number of pointers is 1.
Jeff Brown58a2da82011-01-25 16:02:22 -080071 * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers
72 * will occasionally emit 11. There is not much harm making this constant bigger.)
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070073 */
Jeff Brown58a2da82011-01-25 16:02:22 -080074#define MAX_POINTERS 16
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070075
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070076/*
Jeff Brown01ce2e92010-09-26 22:20:12 -070077 * Maximum pointer id value supported in a motion event.
78 * Smallest pointer id is 0.
79 * (This is limited by our use of BitSet32 to track pointer assignments.)
80 */
81#define MAX_POINTER_ID 31
82
83/*
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070084 * Declare a concrete type for the NDK's input event forward declaration.
85 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070086struct AInputEvent {
87 virtual ~AInputEvent() { }
88};
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070089
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070090/*
Jeff Brown6d0fec22010-07-23 21:28:06 -070091 * Declare a concrete type for the NDK's input device forward declaration.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070092 */
Jeff Brown6d0fec22010-07-23 21:28:06 -070093struct AInputDevice {
94 virtual ~AInputDevice() { }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -070095};
96
Jeff Brown6d0fec22010-07-23 21:28:06 -070097
98namespace android {
99
Jeff Brown91c69ab2011-02-14 17:03:18 -0800100#ifdef HAVE_ANDROID_OS
101class Parcel;
102#endif
103
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700104/*
105 * Flags that flow alongside events in the input dispatch system to help with certain
106 * policy decisions such as waking from device sleep.
Jeff Brownb6997262010-10-08 22:31:17 -0700107 *
108 * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java.
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700109 */
110enum {
Jeff Brown0eaf3932010-10-01 14:55:30 -0700111 /* These flags originate in RawEvents and are generally set in the key map.
Jeff Brown497a92c2010-09-12 17:55:08 -0700112 * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700113
114 POLICY_FLAG_WAKE = 0x00000001,
115 POLICY_FLAG_WAKE_DROPPED = 0x00000002,
116 POLICY_FLAG_SHIFT = 0x00000004,
117 POLICY_FLAG_CAPS_LOCK = 0x00000008,
118 POLICY_FLAG_ALT = 0x00000010,
119 POLICY_FLAG_ALT_GR = 0x00000020,
120 POLICY_FLAG_MENU = 0x00000040,
121 POLICY_FLAG_LAUNCHER = 0x00000080,
Jeff Brown0eaf3932010-10-01 14:55:30 -0700122 POLICY_FLAG_VIRTUAL = 0x00000100,
Jeff Brown497a92c2010-09-12 17:55:08 -0700123 POLICY_FLAG_FUNCTION = 0x00000200,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700124
Jeff Brown7fbdc842010-06-17 20:52:56 -0700125 POLICY_FLAG_RAW_MASK = 0x0000ffff,
126
Jeff Brown85a31762010-09-01 17:01:00 -0700127 /* These flags are set by the input dispatcher. */
128
129 // Indicates that the input event was injected.
130 POLICY_FLAG_INJECTED = 0x01000000,
131
Jeff Browne20c9e02010-10-11 14:20:19 -0700132 // Indicates that the input event is from a trusted source such as a directly attached
133 // input device or an application with system-wide event injection permission.
134 POLICY_FLAG_TRUSTED = 0x02000000,
135
Jeff Brown0029c662011-03-30 02:25:18 -0700136 // Indicates that the input event has passed through an input filter.
137 POLICY_FLAG_FILTERED = 0x04000000,
138
139 // Disables automatic key repeating behavior.
140 POLICY_FLAG_DISABLE_KEY_REPEAT = 0x08000000,
141
Jeff Brown9c3cda02010-06-15 01:31:58 -0700142 /* These flags are set by the input reader policy as it intercepts each event. */
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700143
144 // Indicates that the screen was off when the event was received and the event
145 // should wake the device.
146 POLICY_FLAG_WOKE_HERE = 0x10000000,
147
148 // Indicates that the screen was dim when the event was received and the event
149 // should brighten the device.
150 POLICY_FLAG_BRIGHT_HERE = 0x20000000,
Jeff Brownb6997262010-10-08 22:31:17 -0700151
152 // Indicates that the event should be dispatched to applications.
153 // The input event should still be sent to the InputDispatcher so that it can see all
154 // input events received include those that it will not deliver.
155 POLICY_FLAG_PASS_TO_USER = 0x40000000,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700156};
157
158/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700159 * Pointer coordinate data.
160 */
161struct PointerCoords {
Jeff Brown6f2fba42011-02-19 01:08:02 -0800162 enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64
Jeff Brown91c69ab2011-02-14 17:03:18 -0800163
164 // Bitfield of axes that are present in this structure.
Jeff Brown6f2fba42011-02-19 01:08:02 -0800165 uint64_t bits;
Jeff Brown91c69ab2011-02-14 17:03:18 -0800166
167 // Values of axes that are stored in this structure packed in order by axis id
168 // for each axis that is present in the structure according to 'bits'.
169 float values[MAX_AXES];
170
171 inline void clear() {
172 bits = 0;
173 }
174
Jeff Brown6f2fba42011-02-19 01:08:02 -0800175 float getAxisValue(int32_t axis) const;
176 status_t setAxisValue(int32_t axis, float value);
Jeff Brown91c69ab2011-02-14 17:03:18 -0800177
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400178 void scale(float scale);
Jeff Brown771526c2012-04-27 15:13:25 -0700179 void lerp(const PointerCoords& a, const PointerCoords& b, float alpha);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400180
Jeff Brownbe1aa822011-07-27 16:04:54 -0700181 inline float getX() const {
182 return getAxisValue(AMOTION_EVENT_AXIS_X);
183 }
184
185 inline float getY() const {
186 return getAxisValue(AMOTION_EVENT_AXIS_Y);
187 }
188
Jeff Brown91c69ab2011-02-14 17:03:18 -0800189#ifdef HAVE_ANDROID_OS
190 status_t readFromParcel(Parcel* parcel);
191 status_t writeToParcel(Parcel* parcel) const;
192#endif
193
Jeff Brownace13b12011-03-09 17:39:48 -0800194 bool operator==(const PointerCoords& other) const;
195 inline bool operator!=(const PointerCoords& other) const {
196 return !(*this == other);
197 }
198
199 void copyFrom(const PointerCoords& other);
200
Jeff Brown91c69ab2011-02-14 17:03:18 -0800201private:
202 void tooManyAxes(int axis);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700203};
204
205/*
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700206 * Pointer property data.
207 */
208struct PointerProperties {
209 // The id of the pointer.
210 int32_t id;
211
212 // The pointer tool type.
213 int32_t toolType;
214
215 inline void clear() {
216 id = -1;
217 toolType = 0;
218 }
219
220 bool operator==(const PointerProperties& other) const;
221 inline bool operator!=(const PointerProperties& other) const {
222 return !(*this == other);
223 }
224
225 void copyFrom(const PointerProperties& other);
226};
227
228/*
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700229 * Input events.
230 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700231class InputEvent : public AInputEvent {
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700232public:
233 virtual ~InputEvent() { }
234
235 virtual int32_t getType() const = 0;
236
237 inline int32_t getDeviceId() const { return mDeviceId; }
238
Jeff Brownc5ed5912010-07-14 18:48:53 -0700239 inline int32_t getSource() const { return mSource; }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800240
241 inline void setSource(int32_t source) { mSource = source; }
242
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700243protected:
Jeff Brownc5ed5912010-07-14 18:48:53 -0700244 void initialize(int32_t deviceId, int32_t source);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700245 void initialize(const InputEvent& from);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700246
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700247 int32_t mDeviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -0700248 int32_t mSource;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700249};
250
Jeff Brown5c225b12010-06-16 01:53:36 -0700251/*
252 * Key events.
253 */
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700254class KeyEvent : public InputEvent {
255public:
256 virtual ~KeyEvent() { }
257
Jeff Brownc5ed5912010-07-14 18:48:53 -0700258 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700259
260 inline int32_t getAction() const { return mAction; }
261
262 inline int32_t getFlags() const { return mFlags; }
263
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700264 inline void setFlags(int32_t flags) { mFlags = flags; }
265
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700266 inline int32_t getKeyCode() const { return mKeyCode; }
267
268 inline int32_t getScanCode() const { return mScanCode; }
269
270 inline int32_t getMetaState() const { return mMetaState; }
271
272 inline int32_t getRepeatCount() const { return mRepeatCount; }
273
274 inline nsecs_t getDownTime() const { return mDownTime; }
275
276 inline nsecs_t getEventTime() const { return mEventTime; }
277
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700278 // Return true if this event may have a default action implementation.
279 static bool hasDefaultAction(int32_t keyCode);
280 bool hasDefaultAction() const;
281
282 // Return true if this event represents a system key.
283 static bool isSystemKey(int32_t keyCode);
284 bool isSystemKey() const;
285
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700286 void initialize(
287 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700288 int32_t source,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700289 int32_t action,
290 int32_t flags,
291 int32_t keyCode,
292 int32_t scanCode,
293 int32_t metaState,
294 int32_t repeatCount,
295 nsecs_t downTime,
296 nsecs_t eventTime);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700297 void initialize(const KeyEvent& from);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700298
Jeff Brown91c69ab2011-02-14 17:03:18 -0800299protected:
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700300 int32_t mAction;
301 int32_t mFlags;
302 int32_t mKeyCode;
303 int32_t mScanCode;
304 int32_t mMetaState;
305 int32_t mRepeatCount;
306 nsecs_t mDownTime;
307 nsecs_t mEventTime;
308};
309
Jeff Brown5c225b12010-06-16 01:53:36 -0700310/*
311 * Motion events.
312 */
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700313class MotionEvent : public InputEvent {
314public:
315 virtual ~MotionEvent() { }
316
Jeff Brownc5ed5912010-07-14 18:48:53 -0700317 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700318
319 inline int32_t getAction() const { return mAction; }
320
Jeff Brown2ed24622011-03-14 19:39:54 -0700321 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
322
323 inline int32_t getActionIndex() const {
324 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
325 >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
326 }
327
Jeff Brown91c69ab2011-02-14 17:03:18 -0800328 inline void setAction(int32_t action) { mAction = action; }
329
Jeff Brown85a31762010-09-01 17:01:00 -0700330 inline int32_t getFlags() const { return mFlags; }
331
Jeff Brown21bc5c92011-02-28 18:27:14 -0800332 inline void setFlags(int32_t flags) { mFlags = flags; }
333
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700334 inline int32_t getEdgeFlags() const { return mEdgeFlags; }
335
Jeff Brown91c69ab2011-02-14 17:03:18 -0800336 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; }
337
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700338 inline int32_t getMetaState() const { return mMetaState; }
339
Jeff Brown91c69ab2011-02-14 17:03:18 -0800340 inline void setMetaState(int32_t metaState) { mMetaState = metaState; }
341
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700342 inline int32_t getButtonState() const { return mButtonState; }
343
Jeff Brown5c225b12010-06-16 01:53:36 -0700344 inline float getXOffset() const { return mXOffset; }
345
346 inline float getYOffset() const { return mYOffset; }
347
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700348 inline float getXPrecision() const { return mXPrecision; }
349
350 inline float getYPrecision() const { return mYPrecision; }
351
352 inline nsecs_t getDownTime() const { return mDownTime; }
353
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700354 inline void setDownTime(nsecs_t downTime) { mDownTime = downTime; }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700355
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700356 inline size_t getPointerCount() const { return mPointerProperties.size(); }
357
358 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const {
359 return &mPointerProperties[pointerIndex];
360 }
361
362 inline int32_t getPointerId(size_t pointerIndex) const {
363 return mPointerProperties[pointerIndex].id;
364 }
365
366 inline int32_t getToolType(size_t pointerIndex) const {
367 return mPointerProperties[pointerIndex].toolType;
368 }
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700369
370 inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; }
371
Jeff Brown91c69ab2011-02-14 17:03:18 -0800372 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
373
374 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
375
Jeff Brown5c225b12010-06-16 01:53:36 -0700376 inline float getRawX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800377 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700378 }
379
Jeff Brown5c225b12010-06-16 01:53:36 -0700380 inline float getRawY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800381 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700382 }
383
Jeff Brown91c69ab2011-02-14 17:03:18 -0800384 float getAxisValue(int32_t axis, size_t pointerIndex) const;
385
Jeff Brown5c225b12010-06-16 01:53:36 -0700386 inline float getX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800387 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700388 }
389
390 inline float getY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800391 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700392 }
393
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700394 inline float getPressure(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800395 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700396 }
397
398 inline float getSize(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800399 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700400 }
401
Jeff Brownc5ed5912010-07-14 18:48:53 -0700402 inline float getTouchMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800403 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700404 }
405
406 inline float getTouchMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800407 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700408 }
409
410 inline float getToolMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800411 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700412 }
413
414 inline float getToolMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800415 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700416 }
417
418 inline float getOrientation(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800419 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700420 }
421
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700422 inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; }
423
424 inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const {
425 return mSampleEventTimes[historicalIndex];
426 }
427
Jeff Brown91c69ab2011-02-14 17:03:18 -0800428 const PointerCoords* getHistoricalRawPointerCoords(
429 size_t pointerIndex, size_t historicalIndex) const;
430
431 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
432 size_t historicalIndex) const;
433
Jeff Brown5c225b12010-06-16 01:53:36 -0700434 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800435 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800436 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700437 }
438
Jeff Brown5c225b12010-06-16 01:53:36 -0700439 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800440 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800441 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700442 }
443
Jeff Brown91c69ab2011-02-14 17:03:18 -0800444 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
445
Jeff Brown5c225b12010-06-16 01:53:36 -0700446 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800447 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800448 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700449 }
450
451 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800452 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800453 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700454 }
455
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700456 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800457 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800458 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700459 }
460
461 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800462 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800463 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex);
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700464 }
465
Jeff Brownc5ed5912010-07-14 18:48:53 -0700466 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800467 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800468 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700469 }
470
471 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800472 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800473 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700474 }
475
476 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800477 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800478 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700479 }
480
481 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800482 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800483 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700484 }
485
486 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800487 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800488 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700489 }
490
Jeff Brown2ed24622011-03-14 19:39:54 -0700491 ssize_t findPointerIndex(int32_t pointerId) const;
492
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700493 void initialize(
494 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700495 int32_t source,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700496 int32_t action,
Jeff Brown85a31762010-09-01 17:01:00 -0700497 int32_t flags,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700498 int32_t edgeFlags,
499 int32_t metaState,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700500 int32_t buttonState,
Jeff Brown5c225b12010-06-16 01:53:36 -0700501 float xOffset,
502 float yOffset,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700503 float xPrecision,
504 float yPrecision,
505 nsecs_t downTime,
506 nsecs_t eventTime,
507 size_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700508 const PointerProperties* pointerProperties,
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700509 const PointerCoords* pointerCoords);
510
Jeff Brown91c69ab2011-02-14 17:03:18 -0800511 void copyFrom(const MotionEvent* other, bool keepHistory);
512
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700513 void addSample(
514 nsecs_t eventTime,
515 const PointerCoords* pointerCoords);
516
517 void offsetLocation(float xOffset, float yOffset);
518
Jeff Brown91c69ab2011-02-14 17:03:18 -0800519 void scale(float scaleFactor);
520
521#ifdef HAVE_ANDROID_OS
522 void transform(const SkMatrix* matrix);
523
524 status_t readFromParcel(Parcel* parcel);
525 status_t writeToParcel(Parcel* parcel) const;
526#endif
527
Jeff Brown56194eb2011-03-02 19:23:13 -0800528 static bool isTouchEvent(int32_t source, int32_t action);
529 inline bool isTouchEvent() const {
530 return isTouchEvent(mSource, mAction);
531 }
532
Jeff Brown5c225b12010-06-16 01:53:36 -0700533 // Low-level accessors.
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700534 inline const PointerProperties* getPointerProperties() const {
535 return mPointerProperties.array();
536 }
Jeff Brown5c225b12010-06-16 01:53:36 -0700537 inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); }
538 inline const PointerCoords* getSamplePointerCoords() const {
539 return mSamplePointerCoords.array();
540 }
541
Jeff Brown91c69ab2011-02-14 17:03:18 -0800542protected:
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700543 int32_t mAction;
Jeff Brown85a31762010-09-01 17:01:00 -0700544 int32_t mFlags;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700545 int32_t mEdgeFlags;
546 int32_t mMetaState;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700547 int32_t mButtonState;
Jeff Brown5c225b12010-06-16 01:53:36 -0700548 float mXOffset;
549 float mYOffset;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700550 float mXPrecision;
551 float mYPrecision;
552 nsecs_t mDownTime;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700553 Vector<PointerProperties> mPointerProperties;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700554 Vector<nsecs_t> mSampleEventTimes;
555 Vector<PointerCoords> mSamplePointerCoords;
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700556};
557
558/*
559 * Input event factory.
560 */
561class InputEventFactoryInterface {
562protected:
563 virtual ~InputEventFactoryInterface() { }
564
565public:
566 InputEventFactoryInterface() { }
567
568 virtual KeyEvent* createKeyEvent() = 0;
569 virtual MotionEvent* createMotionEvent() = 0;
570};
571
572/*
573 * A simple input event factory implementation that uses a single preallocated instance
574 * of each type of input event that are reused for each request.
575 */
576class PreallocatedInputEventFactory : public InputEventFactoryInterface {
577public:
578 PreallocatedInputEventFactory() { }
579 virtual ~PreallocatedInputEventFactory() { }
580
581 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
582 virtual MotionEvent* createMotionEvent() { return & mMotionEvent; }
583
584private:
585 KeyEvent mKeyEvent;
586 MotionEvent mMotionEvent;
587};
588
Jeff Brown6d0fec22010-07-23 21:28:06 -0700589/*
Jeff Brown2b6c32c2012-03-13 15:00:09 -0700590 * An input event factory implementation that maintains a pool of input events.
591 */
592class PooledInputEventFactory : public InputEventFactoryInterface {
593public:
594 PooledInputEventFactory(size_t maxPoolSize = 20);
595 virtual ~PooledInputEventFactory();
596
597 virtual KeyEvent* createKeyEvent();
598 virtual MotionEvent* createMotionEvent();
599
600 void recycle(InputEvent* event);
601
602private:
603 const size_t mMaxPoolSize;
604
605 Vector<KeyEvent*> mKeyEventPool;
606 Vector<MotionEvent*> mMotionEventPool;
607};
608
Jeff Brown46b9ac0a2010-04-22 18:58:52 -0700609} // namespace android
610
Mathias Agopianb93a03f82012-02-17 15:34:57 -0800611#endif // _ANDROIDFW_INPUT_H