blob: 37ab279709bff6f9558a9d763bb4a15350d851cf [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
Mathias Agopianb93a03f82012-02-17 15:34:57 -080017#ifndef _ANDROIDFW_INPUT_H
18#define _ANDROIDFW_INPUT_H
Jeff Brown46b9ac02010-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 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 Brown46b9ac02010-04-22 18:58:52 -070030
Jeff Brown91c69ab2011-02-14 17:03:18 -080031#ifdef HAVE_ANDROID_OS
32class SkMatrix;
33#endif
34
Jeff Brown46b9ac02010-04-22 18:58:52 -070035/*
36 * Additional private constants not defined in ndk/ui/input.h.
37 */
38enum {
Michael Wrighta44dd262013-04-10 21:12:00 -070039 /* Signifies that the key is being predispatched */
40 AKEY_EVENT_FLAG_PREDISPATCH = 0x20000000,
41
Jeff Brown21bc5c92011-02-28 18:27:14 -080042 /* Private control to determine when an app is tracking a key sequence. */
43 AKEY_EVENT_FLAG_START_TRACKING = 0x40000000,
44
45 /* Key event is inconsistent with previously sent key events. */
46 AKEY_EVENT_FLAG_TAINTED = 0x80000000,
47};
48
49enum {
50 /* Motion event is inconsistent with previously sent motion events. */
51 AMOTION_EVENT_FLAG_TAINTED = 0x80000000,
Jeff Brown46b9ac02010-04-22 18:58:52 -070052};
53
Jeff Brown89de57a2011-01-19 18:41:38 -080054enum {
Jeff Brown83d616a2012-09-09 20:33:43 -070055 /* Used when a motion event is not associated with any display.
56 * Typically used for non-pointer events. */
57 ADISPLAY_ID_NONE = -1,
58
59 /* The default display id. */
60 ADISPLAY_ID_DEFAULT = 0,
61};
62
63enum {
Jeff Brown89de57a2011-01-19 18:41:38 -080064 /*
65 * Indicates that an input device has switches.
66 * This input source flag is hidden from the API because switches are only used by the system
67 * and applications have no way to interact with them.
68 */
69 AINPUT_SOURCE_SWITCH = 0x80000000,
70};
71
Jeff Brown46b9ac02010-04-22 18:58:52 -070072/*
Jeff Brown05dc66a2011-03-02 14:41:58 -080073 * SystemUiVisibility constants from View.
74 */
75enum {
76 ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE = 0,
77 ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN = 0x00000001,
78};
79
80/*
Jeff Brown46b9ac02010-04-22 18:58:52 -070081 * Maximum number of pointers supported per motion event.
Jeff Brown01ce2e92010-09-26 22:20:12 -070082 * Smallest number of pointers is 1.
Jeff Brown58a2da82011-01-25 16:02:22 -080083 * (We want at least 10 but some touch controllers obstensibly configured for 10 pointers
84 * will occasionally emit 11. There is not much harm making this constant bigger.)
Jeff Brown46b9ac02010-04-22 18:58:52 -070085 */
Jeff Brown58a2da82011-01-25 16:02:22 -080086#define MAX_POINTERS 16
Jeff Brown46b9ac02010-04-22 18:58:52 -070087
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070088/*
Jeff Brown01ce2e92010-09-26 22:20:12 -070089 * Maximum pointer id value supported in a motion event.
90 * Smallest pointer id is 0.
91 * (This is limited by our use of BitSet32 to track pointer assignments.)
92 */
93#define MAX_POINTER_ID 31
94
95/*
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070096 * Declare a concrete type for the NDK's input event forward declaration.
97 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070098struct AInputEvent {
99 virtual ~AInputEvent() { }
100};
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700101
Jeff Brown46b9ac02010-04-22 18:58:52 -0700102/*
Jeff Brown6d0fec22010-07-23 21:28:06 -0700103 * Declare a concrete type for the NDK's input device forward declaration.
Jeff Brown46b9ac02010-04-22 18:58:52 -0700104 */
Jeff Brown6d0fec22010-07-23 21:28:06 -0700105struct AInputDevice {
106 virtual ~AInputDevice() { }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700107};
108
Jeff Brown6d0fec22010-07-23 21:28:06 -0700109
110namespace android {
111
Jeff Brown91c69ab2011-02-14 17:03:18 -0800112#ifdef HAVE_ANDROID_OS
113class Parcel;
114#endif
115
Jeff Brown46b9ac02010-04-22 18:58:52 -0700116/*
117 * Flags that flow alongside events in the input dispatch system to help with certain
118 * policy decisions such as waking from device sleep.
Jeff Brownb6997262010-10-08 22:31:17 -0700119 *
120 * These flags are also defined in frameworks/base/core/java/android/view/WindowManagerPolicy.java.
Jeff Brown46b9ac02010-04-22 18:58:52 -0700121 */
122enum {
Jeff Brown0eaf3932010-10-01 14:55:30 -0700123 /* These flags originate in RawEvents and are generally set in the key map.
Jeff Brown497a92c2010-09-12 17:55:08 -0700124 * NOTE: If you edit these flags, also edit labels in KeycodeLabels.h. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700125
126 POLICY_FLAG_WAKE = 0x00000001,
127 POLICY_FLAG_WAKE_DROPPED = 0x00000002,
128 POLICY_FLAG_SHIFT = 0x00000004,
129 POLICY_FLAG_CAPS_LOCK = 0x00000008,
130 POLICY_FLAG_ALT = 0x00000010,
131 POLICY_FLAG_ALT_GR = 0x00000020,
132 POLICY_FLAG_MENU = 0x00000040,
133 POLICY_FLAG_LAUNCHER = 0x00000080,
Jeff Brown0eaf3932010-10-01 14:55:30 -0700134 POLICY_FLAG_VIRTUAL = 0x00000100,
Jeff Brown497a92c2010-09-12 17:55:08 -0700135 POLICY_FLAG_FUNCTION = 0x00000200,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700136
Jeff Brown7fbdc842010-06-17 20:52:56 -0700137 POLICY_FLAG_RAW_MASK = 0x0000ffff,
138
Jeff Brown85a31762010-09-01 17:01:00 -0700139 /* These flags are set by the input dispatcher. */
140
141 // Indicates that the input event was injected.
142 POLICY_FLAG_INJECTED = 0x01000000,
143
Jeff Browne20c9e02010-10-11 14:20:19 -0700144 // Indicates that the input event is from a trusted source such as a directly attached
145 // input device or an application with system-wide event injection permission.
146 POLICY_FLAG_TRUSTED = 0x02000000,
147
Jeff Brown0029c662011-03-30 02:25:18 -0700148 // Indicates that the input event has passed through an input filter.
149 POLICY_FLAG_FILTERED = 0x04000000,
150
151 // Disables automatic key repeating behavior.
152 POLICY_FLAG_DISABLE_KEY_REPEAT = 0x08000000,
153
Jeff Brown9c3cda02010-06-15 01:31:58 -0700154 /* These flags are set by the input reader policy as it intercepts each event. */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700155
156 // Indicates that the screen was off when the event was received and the event
157 // should wake the device.
158 POLICY_FLAG_WOKE_HERE = 0x10000000,
159
160 // Indicates that the screen was dim when the event was received and the event
161 // should brighten the device.
162 POLICY_FLAG_BRIGHT_HERE = 0x20000000,
Jeff Brownb6997262010-10-08 22:31:17 -0700163
164 // Indicates that the event should be dispatched to applications.
165 // The input event should still be sent to the InputDispatcher so that it can see all
166 // input events received include those that it will not deliver.
167 POLICY_FLAG_PASS_TO_USER = 0x40000000,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700168};
169
170/*
Jeff Brown46b9ac02010-04-22 18:58:52 -0700171 * Pointer coordinate data.
172 */
173struct PointerCoords {
Jeff Brown6f2fba42011-02-19 01:08:02 -0800174 enum { MAX_AXES = 14 }; // 14 so that sizeof(PointerCoords) == 64
Jeff Brown91c69ab2011-02-14 17:03:18 -0800175
176 // Bitfield of axes that are present in this structure.
Jeff Brown6f2fba42011-02-19 01:08:02 -0800177 uint64_t bits;
Jeff Brown91c69ab2011-02-14 17:03:18 -0800178
179 // Values of axes that are stored in this structure packed in order by axis id
180 // for each axis that is present in the structure according to 'bits'.
181 float values[MAX_AXES];
182
183 inline void clear() {
184 bits = 0;
185 }
186
Jeff Brown6f2fba42011-02-19 01:08:02 -0800187 float getAxisValue(int32_t axis) const;
188 status_t setAxisValue(int32_t axis, float value);
Jeff Brown91c69ab2011-02-14 17:03:18 -0800189
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400190 void scale(float scale);
191
Jeff Brownbe1aa822011-07-27 16:04:54 -0700192 inline float getX() const {
193 return getAxisValue(AMOTION_EVENT_AXIS_X);
194 }
195
196 inline float getY() const {
197 return getAxisValue(AMOTION_EVENT_AXIS_Y);
198 }
199
Jeff Brown91c69ab2011-02-14 17:03:18 -0800200#ifdef HAVE_ANDROID_OS
201 status_t readFromParcel(Parcel* parcel);
202 status_t writeToParcel(Parcel* parcel) const;
203#endif
204
Jeff Brownace13b12011-03-09 17:39:48 -0800205 bool operator==(const PointerCoords& other) const;
206 inline bool operator!=(const PointerCoords& other) const {
207 return !(*this == other);
208 }
209
210 void copyFrom(const PointerCoords& other);
211
Jeff Brown91c69ab2011-02-14 17:03:18 -0800212private:
213 void tooManyAxes(int axis);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700214};
215
216/*
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700217 * Pointer property data.
218 */
219struct PointerProperties {
220 // The id of the pointer.
221 int32_t id;
222
223 // The pointer tool type.
224 int32_t toolType;
225
226 inline void clear() {
227 id = -1;
228 toolType = 0;
229 }
230
231 bool operator==(const PointerProperties& other) const;
232 inline bool operator!=(const PointerProperties& other) const {
233 return !(*this == other);
234 }
235
236 void copyFrom(const PointerProperties& other);
237};
238
239/*
Jeff Brown46b9ac02010-04-22 18:58:52 -0700240 * Input events.
241 */
Dianne Hackborn2e9f93e2010-06-28 15:27:30 -0700242class InputEvent : public AInputEvent {
Jeff Brown46b9ac02010-04-22 18:58:52 -0700243public:
244 virtual ~InputEvent() { }
245
246 virtual int32_t getType() const = 0;
247
248 inline int32_t getDeviceId() const { return mDeviceId; }
249
Jeff Brownc5ed5912010-07-14 18:48:53 -0700250 inline int32_t getSource() const { return mSource; }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800251
252 inline void setSource(int32_t source) { mSource = source; }
253
Jeff Brown46b9ac02010-04-22 18:58:52 -0700254protected:
Jeff Brownc5ed5912010-07-14 18:48:53 -0700255 void initialize(int32_t deviceId, int32_t source);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700256 void initialize(const InputEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700257
Jeff Brown46b9ac02010-04-22 18:58:52 -0700258 int32_t mDeviceId;
Jeff Brownc5ed5912010-07-14 18:48:53 -0700259 int32_t mSource;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700260};
261
Jeff Brown5c225b12010-06-16 01:53:36 -0700262/*
263 * Key events.
264 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700265class KeyEvent : public InputEvent {
266public:
267 virtual ~KeyEvent() { }
268
Jeff Brownc5ed5912010-07-14 18:48:53 -0700269 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_KEY; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700270
271 inline int32_t getAction() const { return mAction; }
272
273 inline int32_t getFlags() const { return mFlags; }
274
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700275 inline void setFlags(int32_t flags) { mFlags = flags; }
276
Jeff Brown46b9ac02010-04-22 18:58:52 -0700277 inline int32_t getKeyCode() const { return mKeyCode; }
278
279 inline int32_t getScanCode() const { return mScanCode; }
280
281 inline int32_t getMetaState() const { return mMetaState; }
282
283 inline int32_t getRepeatCount() const { return mRepeatCount; }
284
285 inline nsecs_t getDownTime() const { return mDownTime; }
286
287 inline nsecs_t getEventTime() const { return mEventTime; }
288
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700289 // Return true if this event may have a default action implementation.
290 static bool hasDefaultAction(int32_t keyCode);
291 bool hasDefaultAction() const;
292
293 // Return true if this event represents a system key.
294 static bool isSystemKey(int32_t keyCode);
295 bool isSystemKey() const;
296
Jeff Brown46b9ac02010-04-22 18:58:52 -0700297 void initialize(
298 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700299 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700300 int32_t action,
301 int32_t flags,
302 int32_t keyCode,
303 int32_t scanCode,
304 int32_t metaState,
305 int32_t repeatCount,
306 nsecs_t downTime,
307 nsecs_t eventTime);
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700308 void initialize(const KeyEvent& from);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700309
Jeff Brown91c69ab2011-02-14 17:03:18 -0800310protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700311 int32_t mAction;
312 int32_t mFlags;
313 int32_t mKeyCode;
314 int32_t mScanCode;
315 int32_t mMetaState;
316 int32_t mRepeatCount;
317 nsecs_t mDownTime;
318 nsecs_t mEventTime;
319};
320
Jeff Brown5c225b12010-06-16 01:53:36 -0700321/*
322 * Motion events.
323 */
Jeff Brown46b9ac02010-04-22 18:58:52 -0700324class MotionEvent : public InputEvent {
325public:
326 virtual ~MotionEvent() { }
327
Jeff Brownc5ed5912010-07-14 18:48:53 -0700328 virtual int32_t getType() const { return AINPUT_EVENT_TYPE_MOTION; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700329
330 inline int32_t getAction() const { return mAction; }
331
Jeff Brown2ed24622011-03-14 19:39:54 -0700332 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
333
334 inline int32_t getActionIndex() const {
335 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
336 >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
337 }
338
Jeff Brown91c69ab2011-02-14 17:03:18 -0800339 inline void setAction(int32_t action) { mAction = action; }
340
Jeff Brown85a31762010-09-01 17:01:00 -0700341 inline int32_t getFlags() const { return mFlags; }
342
Jeff Brown21bc5c92011-02-28 18:27:14 -0800343 inline void setFlags(int32_t flags) { mFlags = flags; }
344
Jeff Brown46b9ac02010-04-22 18:58:52 -0700345 inline int32_t getEdgeFlags() const { return mEdgeFlags; }
346
Jeff Brown91c69ab2011-02-14 17:03:18 -0800347 inline void setEdgeFlags(int32_t edgeFlags) { mEdgeFlags = edgeFlags; }
348
Jeff Brown46b9ac02010-04-22 18:58:52 -0700349 inline int32_t getMetaState() const { return mMetaState; }
350
Jeff Brown91c69ab2011-02-14 17:03:18 -0800351 inline void setMetaState(int32_t metaState) { mMetaState = metaState; }
352
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700353 inline int32_t getButtonState() const { return mButtonState; }
354
Jeff Brown5c225b12010-06-16 01:53:36 -0700355 inline float getXOffset() const { return mXOffset; }
356
357 inline float getYOffset() const { return mYOffset; }
358
Jeff Brown46b9ac02010-04-22 18:58:52 -0700359 inline float getXPrecision() const { return mXPrecision; }
360
361 inline float getYPrecision() const { return mYPrecision; }
362
363 inline nsecs_t getDownTime() const { return mDownTime; }
364
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700365 inline void setDownTime(nsecs_t downTime) { mDownTime = downTime; }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700366
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700367 inline size_t getPointerCount() const { return mPointerProperties.size(); }
368
369 inline const PointerProperties* getPointerProperties(size_t pointerIndex) const {
370 return &mPointerProperties[pointerIndex];
371 }
372
373 inline int32_t getPointerId(size_t pointerIndex) const {
374 return mPointerProperties[pointerIndex].id;
375 }
376
377 inline int32_t getToolType(size_t pointerIndex) const {
378 return mPointerProperties[pointerIndex].toolType;
379 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700380
381 inline nsecs_t getEventTime() const { return mSampleEventTimes[getHistorySize()]; }
382
Jeff Brown91c69ab2011-02-14 17:03:18 -0800383 const PointerCoords* getRawPointerCoords(size_t pointerIndex) const;
384
385 float getRawAxisValue(int32_t axis, size_t pointerIndex) const;
386
Jeff Brown5c225b12010-06-16 01:53:36 -0700387 inline float getRawX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800388 return getRawAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700389 }
390
Jeff Brown5c225b12010-06-16 01:53:36 -0700391 inline float getRawY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800392 return getRawAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700393 }
394
Jeff Brown91c69ab2011-02-14 17:03:18 -0800395 float getAxisValue(int32_t axis, size_t pointerIndex) const;
396
Jeff Brown5c225b12010-06-16 01:53:36 -0700397 inline float getX(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800398 return getAxisValue(AMOTION_EVENT_AXIS_X, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700399 }
400
401 inline float getY(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800402 return getAxisValue(AMOTION_EVENT_AXIS_Y, pointerIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700403 }
404
Jeff Brown46b9ac02010-04-22 18:58:52 -0700405 inline float getPressure(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800406 return getAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700407 }
408
409 inline float getSize(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800410 return getAxisValue(AMOTION_EVENT_AXIS_SIZE, pointerIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700411 }
412
Jeff Brownc5ed5912010-07-14 18:48:53 -0700413 inline float getTouchMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800414 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700415 }
416
417 inline float getTouchMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800418 return getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700419 }
420
421 inline float getToolMajor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800422 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700423 }
424
425 inline float getToolMinor(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800426 return getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700427 }
428
429 inline float getOrientation(size_t pointerIndex) const {
Jeff Brownebbd5d12011-02-17 13:01:34 -0800430 return getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700431 }
432
Jeff Brown46b9ac02010-04-22 18:58:52 -0700433 inline size_t getHistorySize() const { return mSampleEventTimes.size() - 1; }
434
435 inline nsecs_t getHistoricalEventTime(size_t historicalIndex) const {
436 return mSampleEventTimes[historicalIndex];
437 }
438
Jeff Brown91c69ab2011-02-14 17:03:18 -0800439 const PointerCoords* getHistoricalRawPointerCoords(
440 size_t pointerIndex, size_t historicalIndex) const;
441
442 float getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
443 size_t historicalIndex) const;
444
Jeff Brown5c225b12010-06-16 01:53:36 -0700445 inline float getHistoricalRawX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800446 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800447 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700448 }
449
Jeff Brown5c225b12010-06-16 01:53:36 -0700450 inline float getHistoricalRawY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800451 return getHistoricalRawAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800452 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700453 }
454
Jeff Brown91c69ab2011-02-14 17:03:18 -0800455 float getHistoricalAxisValue(int32_t axis, size_t pointerIndex, size_t historicalIndex) const;
456
Jeff Brown5c225b12010-06-16 01:53:36 -0700457 inline float getHistoricalX(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800458 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800459 AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700460 }
461
462 inline float getHistoricalY(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800463 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800464 AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
Jeff Brown5c225b12010-06-16 01:53:36 -0700465 }
466
Jeff Brown46b9ac02010-04-22 18:58:52 -0700467 inline float getHistoricalPressure(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800468 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800469 AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700470 }
471
472 inline float getHistoricalSize(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800473 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800474 AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700475 }
476
Jeff Brownc5ed5912010-07-14 18:48:53 -0700477 inline float getHistoricalTouchMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800478 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800479 AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700480 }
481
482 inline float getHistoricalTouchMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800483 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800484 AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700485 }
486
487 inline float getHistoricalToolMajor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800488 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800489 AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700490 }
491
492 inline float getHistoricalToolMinor(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800493 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800494 AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700495 }
496
497 inline float getHistoricalOrientation(size_t pointerIndex, size_t historicalIndex) const {
Jeff Brown91c69ab2011-02-14 17:03:18 -0800498 return getHistoricalAxisValue(
Jeff Brownebbd5d12011-02-17 13:01:34 -0800499 AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex);
Jeff Brownc5ed5912010-07-14 18:48:53 -0700500 }
501
Jeff Brown2ed24622011-03-14 19:39:54 -0700502 ssize_t findPointerIndex(int32_t pointerId) const;
503
Jeff Brown46b9ac02010-04-22 18:58:52 -0700504 void initialize(
505 int32_t deviceId,
Jeff Brownc5ed5912010-07-14 18:48:53 -0700506 int32_t source,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700507 int32_t action,
Jeff Brown85a31762010-09-01 17:01:00 -0700508 int32_t flags,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700509 int32_t edgeFlags,
510 int32_t metaState,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700511 int32_t buttonState,
Jeff Brown5c225b12010-06-16 01:53:36 -0700512 float xOffset,
513 float yOffset,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700514 float xPrecision,
515 float yPrecision,
516 nsecs_t downTime,
517 nsecs_t eventTime,
518 size_t pointerCount,
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700519 const PointerProperties* pointerProperties,
Jeff Brown46b9ac02010-04-22 18:58:52 -0700520 const PointerCoords* pointerCoords);
521
Jeff Brown91c69ab2011-02-14 17:03:18 -0800522 void copyFrom(const MotionEvent* other, bool keepHistory);
523
Jeff Brown46b9ac02010-04-22 18:58:52 -0700524 void addSample(
525 nsecs_t eventTime,
526 const PointerCoords* pointerCoords);
527
528 void offsetLocation(float xOffset, float yOffset);
529
Jeff Brown91c69ab2011-02-14 17:03:18 -0800530 void scale(float scaleFactor);
531
532#ifdef HAVE_ANDROID_OS
533 void transform(const SkMatrix* matrix);
534
535 status_t readFromParcel(Parcel* parcel);
536 status_t writeToParcel(Parcel* parcel) const;
537#endif
538
Jeff Brown56194eb2011-03-02 19:23:13 -0800539 static bool isTouchEvent(int32_t source, int32_t action);
540 inline bool isTouchEvent() const {
541 return isTouchEvent(mSource, mAction);
542 }
543
Jeff Brown5c225b12010-06-16 01:53:36 -0700544 // Low-level accessors.
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700545 inline const PointerProperties* getPointerProperties() const {
546 return mPointerProperties.array();
547 }
Jeff Brown5c225b12010-06-16 01:53:36 -0700548 inline const nsecs_t* getSampleEventTimes() const { return mSampleEventTimes.array(); }
549 inline const PointerCoords* getSamplePointerCoords() const {
550 return mSamplePointerCoords.array();
551 }
552
Jeff Brown91c69ab2011-02-14 17:03:18 -0800553protected:
Jeff Brown46b9ac02010-04-22 18:58:52 -0700554 int32_t mAction;
Jeff Brown85a31762010-09-01 17:01:00 -0700555 int32_t mFlags;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700556 int32_t mEdgeFlags;
557 int32_t mMetaState;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700558 int32_t mButtonState;
Jeff Brown5c225b12010-06-16 01:53:36 -0700559 float mXOffset;
560 float mYOffset;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700561 float mXPrecision;
562 float mYPrecision;
563 nsecs_t mDownTime;
Jeff Brownfe9f8ab2011-05-06 18:20:01 -0700564 Vector<PointerProperties> mPointerProperties;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700565 Vector<nsecs_t> mSampleEventTimes;
566 Vector<PointerCoords> mSamplePointerCoords;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700567};
568
569/*
570 * Input event factory.
571 */
572class InputEventFactoryInterface {
573protected:
574 virtual ~InputEventFactoryInterface() { }
575
576public:
577 InputEventFactoryInterface() { }
578
579 virtual KeyEvent* createKeyEvent() = 0;
580 virtual MotionEvent* createMotionEvent() = 0;
581};
582
583/*
584 * A simple input event factory implementation that uses a single preallocated instance
585 * of each type of input event that are reused for each request.
586 */
587class PreallocatedInputEventFactory : public InputEventFactoryInterface {
588public:
589 PreallocatedInputEventFactory() { }
590 virtual ~PreallocatedInputEventFactory() { }
591
592 virtual KeyEvent* createKeyEvent() { return & mKeyEvent; }
593 virtual MotionEvent* createMotionEvent() { return & mMotionEvent; }
594
595private:
596 KeyEvent mKeyEvent;
597 MotionEvent mMotionEvent;
598};
599
Jeff Brown6d0fec22010-07-23 21:28:06 -0700600/*
Jeff Brown2b6c32c2012-03-13 15:00:09 -0700601 * An input event factory implementation that maintains a pool of input events.
602 */
603class PooledInputEventFactory : public InputEventFactoryInterface {
604public:
605 PooledInputEventFactory(size_t maxPoolSize = 20);
606 virtual ~PooledInputEventFactory();
607
608 virtual KeyEvent* createKeyEvent();
609 virtual MotionEvent* createMotionEvent();
610
611 void recycle(InputEvent* event);
612
613private:
614 const size_t mMaxPoolSize;
615
616 Vector<KeyEvent*> mKeyEventPool;
617 Vector<MotionEvent*> mMotionEventPool;
618};
619
Jeff Brown46b9ac02010-04-22 18:58:52 -0700620} // namespace android
621
Mathias Agopianb93a03f82012-02-17 15:34:57 -0800622#endif // _ANDROIDFW_INPUT_H