blob: b87a7068b5bf792752385c40056506174544f833 [file] [log] [blame]
Jeff Brown5912f952013-07-01 19:10:31 -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#define LOG_TAG "Input"
18//#define LOG_NDEBUG 0
19
chaviw09c8d2d2020-08-24 15:48:26 -070020#include <attestation/HmacKeyManager.h>
Garfield Tan84b087e2020-01-23 10:49:05 -080021#include <cutils/compiler.h>
Siarhei Vishniakouc68fdec2020-10-22 14:58:14 -050022#include <inttypes.h>
Garfield Tan84b087e2020-01-23 10:49:05 -080023#include <string.h>
Michael Wright635422b2022-12-02 00:43:56 +000024#include <optional>
Jeff Brown5912f952013-07-01 19:10:31 -070025
Siarhei Vishniakou31977182022-09-30 08:51:23 -070026#include <android-base/file.h>
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +000027#include <android-base/logging.h>
Siarhei Vishniakouc68fdec2020-10-22 14:58:14 -050028#include <android-base/stringprintf.h>
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +000029#include <cutils/compiler.h>
Prabir Pradhan092f3a92021-11-25 10:53:27 -080030#include <input/DisplayViewport.h>
Jeff Brown5912f952013-07-01 19:10:31 -070031#include <input/Input.h>
Siarhei Vishniakou7feb2ea2019-11-25 15:11:23 -080032#include <input/InputDevice.h>
Michael Wright872db4f2014-04-22 15:03:51 -070033#include <input/InputEventLabels.h>
Jeff Brown5912f952013-07-01 19:10:31 -070034
Jeff Brown5912f952013-07-01 19:10:31 -070035#include <binder/Parcel.h>
Siarhei Vishniakou63740b92022-10-20 10:28:08 -070036#if defined(__ANDROID__)
37#include <sys/random.h>
38#endif
Jeff Brown5912f952013-07-01 19:10:31 -070039
Siarhei Vishniakouc68fdec2020-10-22 14:58:14 -050040using android::base::StringPrintf;
41
Jeff Brown5912f952013-07-01 19:10:31 -070042namespace android {
43
Prabir Pradhan6b384612021-05-14 16:56:25 -070044namespace {
45
Prabir Pradhan7e1ee562021-10-26 10:19:49 -070046bool shouldDisregardTransformation(uint32_t source) {
Prabir Pradhan258e2b92022-06-24 18:37:04 +000047 // Do not apply any transformations to axes from joysticks, touchpads, or relative mice.
Prabir Pradhan7e1ee562021-10-26 10:19:49 -070048 return isFromSource(source, AINPUT_SOURCE_CLASS_JOYSTICK) ||
Prabir Pradhan258e2b92022-06-24 18:37:04 +000049 isFromSource(source, AINPUT_SOURCE_CLASS_POSITION) ||
50 isFromSource(source, AINPUT_SOURCE_MOUSE_RELATIVE);
Prabir Pradhan7e1ee562021-10-26 10:19:49 -070051}
52
53bool shouldDisregardOffset(uint32_t source) {
Prabir Pradhan9f388812021-05-13 16:54:53 -070054 // Pointer events are the only type of events that refer to absolute coordinates on the display,
55 // so we should apply the entire window transform. For other types of events, we should make
56 // sure to not apply the window translation/offset.
Prabir Pradhan7e1ee562021-10-26 10:19:49 -070057 return !isFromSource(source, AINPUT_SOURCE_CLASS_POINTER);
Prabir Pradhan9f388812021-05-13 16:54:53 -070058}
59
Prabir Pradhanbf9b0a82024-02-29 02:23:50 +000060int32_t resolveActionForSplitMotionEvent(
61 int32_t action, int32_t flags, const std::vector<PointerProperties>& pointerProperties,
62 const std::vector<PointerProperties>& splitPointerProperties) {
63 LOG_ALWAYS_FATAL_IF(splitPointerProperties.empty());
64 const auto maskedAction = MotionEvent::getActionMasked(action);
65 if (maskedAction != AMOTION_EVENT_ACTION_POINTER_DOWN &&
66 maskedAction != AMOTION_EVENT_ACTION_POINTER_UP) {
67 // The action is unaffected by splitting this motion event.
68 return action;
69 }
70 const auto actionIndex = MotionEvent::getActionIndex(action);
71 if (CC_UNLIKELY(actionIndex >= pointerProperties.size())) {
72 LOG(FATAL) << "Action index is out of bounds, index: " << actionIndex;
73 }
74
75 const auto affectedPointerId = pointerProperties[actionIndex].id;
76 std::optional<uint32_t> splitActionIndex;
77 for (uint32_t i = 0; i < splitPointerProperties.size(); i++) {
78 if (affectedPointerId == splitPointerProperties[i].id) {
79 splitActionIndex = i;
80 break;
81 }
82 }
83 if (!splitActionIndex.has_value()) {
84 // The affected pointer is not part of the split motion event.
85 return AMOTION_EVENT_ACTION_MOVE;
86 }
87
88 if (splitPointerProperties.size() > 1) {
89 return maskedAction | (*splitActionIndex << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
90 }
91
92 if (maskedAction == AMOTION_EVENT_ACTION_POINTER_UP) {
93 return ((flags & AMOTION_EVENT_FLAG_CANCELED) != 0) ? AMOTION_EVENT_ACTION_CANCEL
94 : AMOTION_EVENT_ACTION_UP;
95 }
96 return AMOTION_EVENT_ACTION_DOWN;
97}
98
Prabir Pradhan9a53b552024-06-04 02:59:40 +000099float transformOrientation(const ui::Transform& transform, const PointerCoords& coords,
100 int32_t motionEventFlags) {
101 if ((motionEventFlags & AMOTION_EVENT_PRIVATE_FLAG_SUPPORTS_ORIENTATION) == 0) {
102 return 0;
103 }
104
105 const bool isDirectionalAngle =
106 (motionEventFlags & AMOTION_EVENT_PRIVATE_FLAG_SUPPORTS_DIRECTIONAL_ORIENTATION) != 0;
107
108 return transformAngle(transform, coords.getAxisValue(AMOTION_EVENT_AXIS_ORIENTATION),
109 isDirectionalAngle);
110}
111
Prabir Pradhan6b384612021-05-14 16:56:25 -0700112} // namespace
113
Siarhei Vishniakou16a2e302019-01-14 19:21:45 -0800114const char* motionClassificationToString(MotionClassification classification) {
115 switch (classification) {
116 case MotionClassification::NONE:
117 return "NONE";
118 case MotionClassification::AMBIGUOUS_GESTURE:
119 return "AMBIGUOUS_GESTURE";
120 case MotionClassification::DEEP_PRESS:
121 return "DEEP_PRESS";
Harry Cutts2800fb02022-09-15 13:49:23 +0000122 case MotionClassification::TWO_FINGER_SWIPE:
123 return "TWO_FINGER_SWIPE";
Harry Cuttsc5748d12022-12-02 17:30:18 +0000124 case MotionClassification::MULTI_FINGER_SWIPE:
125 return "MULTI_FINGER_SWIPE";
Harry Cuttsb1e83552022-12-20 11:02:26 +0000126 case MotionClassification::PINCH:
127 return "PINCH";
Siarhei Vishniakou16a2e302019-01-14 19:21:45 -0800128 }
129}
130
Garfield Tan84b087e2020-01-23 10:49:05 -0800131// --- IdGenerator ---
Siarhei Vishniakou63740b92022-10-20 10:28:08 -0700132#if defined(__ANDROID__)
133[[maybe_unused]]
134#endif
135static status_t
136getRandomBytes(uint8_t* data, size_t size) {
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700137 int ret = TEMP_FAILURE_RETRY(open("/dev/urandom", O_RDONLY | O_CLOEXEC | O_NOFOLLOW));
138 if (ret == -1) {
139 return -errno;
140 }
141
142 base::unique_fd fd(ret);
143 if (!base::ReadFully(fd, data, size)) {
144 return -errno;
145 }
146 return OK;
147}
148
Garfield Tan84b087e2020-01-23 10:49:05 -0800149IdGenerator::IdGenerator(Source source) : mSource(source) {}
150
151int32_t IdGenerator::nextId() const {
152 constexpr uint32_t SEQUENCE_NUMBER_MASK = ~SOURCE_MASK;
153 int32_t id = 0;
154
Siarhei Vishniakou63740b92022-10-20 10:28:08 -0700155#if defined(__ANDROID__)
156 // On device, prefer 'getrandom' to '/dev/urandom' because it's faster.
157 constexpr size_t BUF_LEN = sizeof(id);
158 size_t totalBytes = 0;
159 while (totalBytes < BUF_LEN) {
160 ssize_t bytes = TEMP_FAILURE_RETRY(getrandom(&id, BUF_LEN, GRND_NONBLOCK));
161 if (CC_UNLIKELY(bytes < 0)) {
162 ALOGW("Failed to fill in random number for sequence number: %s.", strerror(errno));
163 id = 0;
164 break;
165 }
166 totalBytes += bytes;
167 }
168#else
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700169#if defined(__linux__)
Siarhei Vishniakou63740b92022-10-20 10:28:08 -0700170 // On host, <sys/random.h> / GRND_NONBLOCK is not available
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700171 while (true) {
172 status_t result = getRandomBytes(reinterpret_cast<uint8_t*>(&id), sizeof(id));
173 if (result == OK) {
Garfield Tan84b087e2020-01-23 10:49:05 -0800174 break;
175 }
Garfield Tan84b087e2020-01-23 10:49:05 -0800176 }
Siarhei Vishniakou31977182022-09-30 08:51:23 -0700177#endif // __linux__
Siarhei Vishniakou63740b92022-10-20 10:28:08 -0700178#endif // __ANDROID__
Garfield Tan84b087e2020-01-23 10:49:05 -0800179 return (id & SEQUENCE_NUMBER_MASK) | static_cast<int32_t>(mSource);
180}
181
Jeff Brown5912f952013-07-01 19:10:31 -0700182// --- InputEvent ---
183
Prabir Pradhan00e029d2023-03-09 20:11:09 +0000184// Due to precision limitations when working with floating points, transforming - namely
185// scaling - floating points can lead to minute errors. We round transformed values to approximately
186// three decimal places so that values like 0.99997 show up as 1.0.
187inline float roundTransformedCoords(float val) {
188 // Use a power to two to approximate three decimal places to potentially reduce some cycles.
189 // This should be at least as precise as MotionEvent::ROUNDING_PRECISION.
190 return std::round(val * 1024.f) / 1024.f;
191}
192
193inline vec2 roundTransformedCoords(vec2 p) {
194 return {roundTransformedCoords(p.x), roundTransformedCoords(p.y)};
195}
196
Prabir Pradhande69f8a2021-11-18 16:40:34 +0000197vec2 transformWithoutTranslation(const ui::Transform& transform, const vec2& xy) {
198 const vec2 transformedXy = transform.transform(xy);
199 const vec2 transformedOrigin = transform.transform(0, 0);
Prabir Pradhan00e029d2023-03-09 20:11:09 +0000200 return roundTransformedCoords(transformedXy - transformedOrigin);
Prabir Pradhande69f8a2021-11-18 16:40:34 +0000201}
202
Prabir Pradhan9a53b552024-06-04 02:59:40 +0000203float transformAngle(const ui::Transform& transform, float angleRadians, bool isDirectional) {
Prabir Pradhane2e10b42022-11-17 20:59:36 +0000204 // Construct and transform a vector oriented at the specified clockwise angle from vertical.
205 // Coordinate system: down is increasing Y, right is increasing X.
206 float x = sinf(angleRadians);
207 float y = -cosf(angleRadians);
208 vec2 transformedPoint = transform.transform(x, y);
209
210 // Determine how the origin is transformed by the matrix so that we
211 // can transform orientation vectors.
212 const vec2 origin = transform.transform(0, 0);
213
214 transformedPoint.x -= origin.x;
215 transformedPoint.y -= origin.y;
216
Prabir Pradhan9a53b552024-06-04 02:59:40 +0000217 if (!isDirectional && transformedPoint.y > 0) {
218 // Limit the range of atan2f to [-pi/2, pi/2] by reversing the direction of the vector.
219 transformedPoint *= -1;
220 }
221
Prabir Pradhane2e10b42022-11-17 20:59:36 +0000222 // Derive the transformed vector's clockwise angle from vertical.
223 // The return value of atan2f is in range [-pi, pi] which conforms to the orientation API.
224 return atan2f(transformedPoint.x, -transformedPoint.y);
225}
226
Siarhei Vishniakoud9489572021-11-12 20:08:38 -0800227std::string inputEventSourceToString(int32_t source) {
228 if (source == AINPUT_SOURCE_UNKNOWN) {
229 return "UNKNOWN";
230 }
231 if (source == static_cast<int32_t>(AINPUT_SOURCE_ANY)) {
232 return "ANY";
233 }
234 static const std::map<int32_t, const char*> SOURCES{
235 {AINPUT_SOURCE_KEYBOARD, "KEYBOARD"},
236 {AINPUT_SOURCE_DPAD, "DPAD"},
237 {AINPUT_SOURCE_GAMEPAD, "GAMEPAD"},
238 {AINPUT_SOURCE_TOUCHSCREEN, "TOUCHSCREEN"},
239 {AINPUT_SOURCE_MOUSE, "MOUSE"},
240 {AINPUT_SOURCE_STYLUS, "STYLUS"},
241 {AINPUT_SOURCE_BLUETOOTH_STYLUS, "BLUETOOTH_STYLUS"},
242 {AINPUT_SOURCE_TRACKBALL, "TRACKBALL"},
243 {AINPUT_SOURCE_MOUSE_RELATIVE, "MOUSE_RELATIVE"},
244 {AINPUT_SOURCE_TOUCHPAD, "TOUCHPAD"},
245 {AINPUT_SOURCE_TOUCH_NAVIGATION, "TOUCH_NAVIGATION"},
246 {AINPUT_SOURCE_JOYSTICK, "JOYSTICK"},
247 {AINPUT_SOURCE_HDMI, "HDMI"},
248 {AINPUT_SOURCE_SENSOR, "SENSOR"},
249 {AINPUT_SOURCE_ROTARY_ENCODER, "ROTARY_ENCODER"},
250 };
251 std::string result;
252 for (const auto& [source_entry, str] : SOURCES) {
253 if ((source & source_entry) == source_entry) {
254 if (!result.empty()) {
255 result += " | ";
256 }
257 result += str;
258 }
259 }
260 if (result.empty()) {
261 result = StringPrintf("0x%08x", source);
262 }
263 return result;
264}
265
266bool isFromSource(uint32_t source, uint32_t test) {
267 return (source & test) == test;
268}
269
Siarhei Vishniakou6d73f832022-07-21 17:27:03 -0700270bool isStylusToolType(ToolType toolType) {
271 return toolType == ToolType::STYLUS || toolType == ToolType::ERASER;
Prabir Pradhane5626962022-10-27 20:30:53 +0000272}
273
Siarhei Vishniakoudcc6e6e2023-10-18 09:20:07 -0700274bool isStylusEvent(uint32_t source, const std::vector<PointerProperties>& properties) {
275 if (!isFromSource(source, AINPUT_SOURCE_STYLUS)) {
276 return false;
277 }
278 // Need at least one stylus pointer for this event to be considered a stylus event
279 for (const PointerProperties& pointerProperties : properties) {
280 if (isStylusToolType(pointerProperties.toolType)) {
281 return true;
282 }
283 }
284 return false;
285}
286
Siarhei Vishniakou54d3e182020-01-15 17:38:38 -0800287VerifiedKeyEvent verifiedKeyEventFromKeyEvent(const KeyEvent& event) {
288 return {{VerifiedInputEvent::Type::KEY, event.getDeviceId(), event.getEventTime(),
289 event.getSource(), event.getDisplayId()},
290 event.getAction(),
Siarhei Vishniakou54d3e182020-01-15 17:38:38 -0800291 event.getFlags() & VERIFIED_KEY_EVENT_FLAGS,
Siarhei Vishniakouf355bf92021-12-09 10:43:21 -0800292 event.getDownTime(),
Siarhei Vishniakou54d3e182020-01-15 17:38:38 -0800293 event.getKeyCode(),
294 event.getScanCode(),
295 event.getMetaState(),
296 event.getRepeatCount()};
297}
298
299VerifiedMotionEvent verifiedMotionEventFromMotionEvent(const MotionEvent& event) {
300 return {{VerifiedInputEvent::Type::MOTION, event.getDeviceId(), event.getEventTime(),
301 event.getSource(), event.getDisplayId()},
302 event.getRawX(0),
303 event.getRawY(0),
304 event.getActionMasked(),
Siarhei Vishniakou54d3e182020-01-15 17:38:38 -0800305 event.getFlags() & VERIFIED_MOTION_EVENT_FLAGS,
Siarhei Vishniakouf355bf92021-12-09 10:43:21 -0800306 event.getDownTime(),
Siarhei Vishniakou54d3e182020-01-15 17:38:38 -0800307 event.getMetaState(),
308 event.getButtonState()};
309}
310
Linnan Li13bf76a2024-05-05 19:18:02 +0800311void InputEvent::initialize(int32_t id, int32_t deviceId, uint32_t source,
312 ui::LogicalDisplayId displayId, std::array<uint8_t, 32> hmac) {
Garfield Tan4cc839f2020-01-24 11:26:14 -0800313 mId = id;
Jeff Brown5912f952013-07-01 19:10:31 -0700314 mDeviceId = deviceId;
315 mSource = source;
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +0100316 mDisplayId = displayId;
Siarhei Vishniakou9c858ac2020-01-23 14:20:11 -0600317 mHmac = hmac;
Jeff Brown5912f952013-07-01 19:10:31 -0700318}
319
320void InputEvent::initialize(const InputEvent& from) {
Garfield Tan4cc839f2020-01-24 11:26:14 -0800321 mId = from.mId;
Jeff Brown5912f952013-07-01 19:10:31 -0700322 mDeviceId = from.mDeviceId;
323 mSource = from.mSource;
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +0100324 mDisplayId = from.mDisplayId;
Siarhei Vishniakou9c858ac2020-01-23 14:20:11 -0600325 mHmac = from.mHmac;
Jeff Brown5912f952013-07-01 19:10:31 -0700326}
327
Garfield Tan4cc839f2020-01-24 11:26:14 -0800328int32_t InputEvent::nextId() {
329 static IdGenerator idGen(IdGenerator::Source::OTHER);
330 return idGen.nextId();
331}
332
Siarhei Vishniakou63b63612023-04-12 11:00:23 -0700333std::ostream& operator<<(std::ostream& out, const InputEvent& event) {
334 switch (event.getType()) {
335 case InputEventType::KEY: {
336 const KeyEvent& keyEvent = static_cast<const KeyEvent&>(event);
337 out << keyEvent;
338 return out;
339 }
340 case InputEventType::MOTION: {
341 const MotionEvent& motionEvent = static_cast<const MotionEvent&>(event);
342 out << motionEvent;
343 return out;
344 }
345 case InputEventType::FOCUS: {
346 out << "FocusEvent";
347 return out;
348 }
349 case InputEventType::CAPTURE: {
350 out << "CaptureEvent";
351 return out;
352 }
353 case InputEventType::DRAG: {
354 out << "DragEvent";
355 return out;
356 }
357 case InputEventType::TOUCH_MODE: {
358 out << "TouchModeEvent";
359 return out;
360 }
361 }
362}
363
Jeff Brown5912f952013-07-01 19:10:31 -0700364// --- KeyEvent ---
365
Michael Wright872db4f2014-04-22 15:03:51 -0700366const char* KeyEvent::getLabel(int32_t keyCode) {
Chris Ye4958d062020-08-20 13:21:10 -0700367 return InputEventLookup::getLabelByKeyCode(keyCode);
Jeff Brown5912f952013-07-01 19:10:31 -0700368}
369
Siarhei Vishniakou5df34932023-01-23 12:41:01 -0800370std::optional<int> KeyEvent::getKeyCodeFromLabel(const char* label) {
Chris Ye4958d062020-08-20 13:21:10 -0700371 return InputEventLookup::getKeyCodeByLabel(label);
Jeff Brown5912f952013-07-01 19:10:31 -0700372}
373
Linnan Li13bf76a2024-05-05 19:18:02 +0800374void KeyEvent::initialize(int32_t id, int32_t deviceId, uint32_t source,
375 ui::LogicalDisplayId displayId, std::array<uint8_t, 32> hmac,
376 int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode,
377 int32_t metaState, int32_t repeatCount, nsecs_t downTime,
378 nsecs_t eventTime) {
Garfield Tan4cc839f2020-01-24 11:26:14 -0800379 InputEvent::initialize(id, deviceId, source, displayId, hmac);
Jeff Brown5912f952013-07-01 19:10:31 -0700380 mAction = action;
381 mFlags = flags;
382 mKeyCode = keyCode;
383 mScanCode = scanCode;
384 mMetaState = metaState;
385 mRepeatCount = repeatCount;
386 mDownTime = downTime;
387 mEventTime = eventTime;
388}
389
390void KeyEvent::initialize(const KeyEvent& from) {
391 InputEvent::initialize(from);
392 mAction = from.mAction;
393 mFlags = from.mFlags;
394 mKeyCode = from.mKeyCode;
395 mScanCode = from.mScanCode;
396 mMetaState = from.mMetaState;
397 mRepeatCount = from.mRepeatCount;
398 mDownTime = from.mDownTime;
399 mEventTime = from.mEventTime;
400}
401
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700402const char* KeyEvent::actionToString(int32_t action) {
403 // Convert KeyEvent action to string
404 switch (action) {
405 case AKEY_EVENT_ACTION_DOWN:
406 return "DOWN";
407 case AKEY_EVENT_ACTION_UP:
408 return "UP";
409 case AKEY_EVENT_ACTION_MULTIPLE:
410 return "MULTIPLE";
411 }
412 return "UNKNOWN";
413}
Jeff Brown5912f952013-07-01 19:10:31 -0700414
Siarhei Vishniakoud010b012023-01-18 15:00:53 -0800415std::ostream& operator<<(std::ostream& out, const KeyEvent& event) {
416 out << "KeyEvent { action=" << KeyEvent::actionToString(event.getAction());
417
418 out << ", keycode=" << event.getKeyCode() << "(" << KeyEvent::getLabel(event.getKeyCode())
419 << ")";
420
421 if (event.getMetaState() != 0) {
422 out << ", metaState=" << event.getMetaState();
423 }
424
425 out << ", eventTime=" << event.getEventTime();
426 out << ", downTime=" << event.getDownTime();
427 out << ", flags=" << std::hex << event.getFlags() << std::dec;
428 out << ", repeatCount=" << event.getRepeatCount();
429 out << ", deviceId=" << event.getDeviceId();
430 out << ", source=" << inputEventSourceToString(event.getSource());
431 out << ", displayId=" << event.getDisplayId();
Prabir Pradhanf5abab62024-02-01 20:51:32 +0000432 out << ", eventId=0x" << std::hex << event.getId() << std::dec;
Siarhei Vishniakoud010b012023-01-18 15:00:53 -0800433 out << "}";
434 return out;
435}
436
Siarhei Vishniakou1ff00cc2023-12-13 16:12:13 -0800437std::ostream& operator<<(std::ostream& out, const PointerProperties& properties) {
438 out << "Pointer(id=" << properties.id << ", " << ftl::enum_string(properties.toolType) << ")";
439 return out;
440}
441
Jeff Brown5912f952013-07-01 19:10:31 -0700442// --- PointerCoords ---
443
444float PointerCoords::getAxisValue(int32_t axis) const {
Michael Wright38dcdff2014-03-19 12:06:10 -0700445 if (axis < 0 || axis > 63 || !BitSet64::hasBit(bits, axis)){
Jeff Brown5912f952013-07-01 19:10:31 -0700446 return 0;
447 }
Michael Wright38dcdff2014-03-19 12:06:10 -0700448 return values[BitSet64::getIndexOfBit(bits, axis)];
Jeff Brown5912f952013-07-01 19:10:31 -0700449}
450
451status_t PointerCoords::setAxisValue(int32_t axis, float value) {
452 if (axis < 0 || axis > 63) {
453 return NAME_NOT_FOUND;
454 }
455
Michael Wright38dcdff2014-03-19 12:06:10 -0700456 uint32_t index = BitSet64::getIndexOfBit(bits, axis);
457 if (!BitSet64::hasBit(bits, axis)) {
Jeff Brown5912f952013-07-01 19:10:31 -0700458 if (value == 0) {
459 return OK; // axes with value 0 do not need to be stored
460 }
Michael Wright38dcdff2014-03-19 12:06:10 -0700461
462 uint32_t count = BitSet64::count(bits);
Jeff Brown5912f952013-07-01 19:10:31 -0700463 if (count >= MAX_AXES) {
464 tooManyAxes(axis);
465 return NO_MEMORY;
466 }
Michael Wright38dcdff2014-03-19 12:06:10 -0700467 BitSet64::markBit(bits, axis);
Jeff Brown5912f952013-07-01 19:10:31 -0700468 for (uint32_t i = count; i > index; i--) {
469 values[i] = values[i - 1];
470 }
471 }
Michael Wright38dcdff2014-03-19 12:06:10 -0700472
Jeff Brown5912f952013-07-01 19:10:31 -0700473 values[index] = value;
474 return OK;
475}
476
477static inline void scaleAxisValue(PointerCoords& c, int axis, float scaleFactor) {
478 float value = c.getAxisValue(axis);
479 if (value != 0) {
480 c.setAxisValue(axis, value * scaleFactor);
481 }
482}
483
Robert Carre07e1032018-11-26 12:55:53 -0800484void PointerCoords::scale(float globalScaleFactor, float windowXScale, float windowYScale) {
Jeff Brown5912f952013-07-01 19:10:31 -0700485 // No need to scale pressure or size since they are normalized.
486 // No need to scale orientation since it is meaningless to do so.
Robert Carre07e1032018-11-26 12:55:53 -0800487
488 // If there is a global scale factor, it is included in the windowX/YScale
489 // so we don't need to apply it twice to the X/Y axes.
490 // However we don't want to apply any windowXYScale not included in the global scale
491 // to the TOUCH_MAJOR/MINOR coordinates.
492 scaleAxisValue(*this, AMOTION_EVENT_AXIS_X, windowXScale);
493 scaleAxisValue(*this, AMOTION_EVENT_AXIS_Y, windowYScale);
494 scaleAxisValue(*this, AMOTION_EVENT_AXIS_TOUCH_MAJOR, globalScaleFactor);
495 scaleAxisValue(*this, AMOTION_EVENT_AXIS_TOUCH_MINOR, globalScaleFactor);
496 scaleAxisValue(*this, AMOTION_EVENT_AXIS_TOOL_MAJOR, globalScaleFactor);
497 scaleAxisValue(*this, AMOTION_EVENT_AXIS_TOOL_MINOR, globalScaleFactor);
Prabir Pradhanc6523582021-05-14 18:02:55 -0700498 scaleAxisValue(*this, AMOTION_EVENT_AXIS_RELATIVE_X, windowXScale);
499 scaleAxisValue(*this, AMOTION_EVENT_AXIS_RELATIVE_Y, windowYScale);
Robert Carre07e1032018-11-26 12:55:53 -0800500}
501
Jeff Brown5912f952013-07-01 19:10:31 -0700502status_t PointerCoords::readFromParcel(Parcel* parcel) {
503 bits = parcel->readInt64();
504
Michael Wright38dcdff2014-03-19 12:06:10 -0700505 uint32_t count = BitSet64::count(bits);
Jeff Brown5912f952013-07-01 19:10:31 -0700506 if (count > MAX_AXES) {
507 return BAD_VALUE;
508 }
509
510 for (uint32_t i = 0; i < count; i++) {
511 values[i] = parcel->readFloat();
512 }
Philip Quinnafb31282022-12-20 18:17:55 -0800513
514 isResampled = parcel->readBool();
Jeff Brown5912f952013-07-01 19:10:31 -0700515 return OK;
516}
517
518status_t PointerCoords::writeToParcel(Parcel* parcel) const {
519 parcel->writeInt64(bits);
520
Michael Wright38dcdff2014-03-19 12:06:10 -0700521 uint32_t count = BitSet64::count(bits);
Jeff Brown5912f952013-07-01 19:10:31 -0700522 for (uint32_t i = 0; i < count; i++) {
523 parcel->writeFloat(values[i]);
524 }
Philip Quinnafb31282022-12-20 18:17:55 -0800525
526 parcel->writeBool(isResampled);
Jeff Brown5912f952013-07-01 19:10:31 -0700527 return OK;
528}
Jeff Brown5912f952013-07-01 19:10:31 -0700529
530void PointerCoords::tooManyAxes(int axis) {
531 ALOGW("Could not set value for axis %d because the PointerCoords structure is full and "
532 "cannot contain more than %d axis values.", axis, int(MAX_AXES));
533}
534
535bool PointerCoords::operator==(const PointerCoords& other) const {
536 if (bits != other.bits) {
537 return false;
538 }
Michael Wright38dcdff2014-03-19 12:06:10 -0700539 uint32_t count = BitSet64::count(bits);
Jeff Brown5912f952013-07-01 19:10:31 -0700540 for (uint32_t i = 0; i < count; i++) {
541 if (values[i] != other.values[i]) {
542 return false;
543 }
544 }
Philip Quinnafb31282022-12-20 18:17:55 -0800545 if (isResampled != other.isResampled) {
546 return false;
547 }
Jeff Brown5912f952013-07-01 19:10:31 -0700548 return true;
549}
550
Jeff Brown5912f952013-07-01 19:10:31 -0700551// --- MotionEvent ---
552
Linnan Li13bf76a2024-05-05 19:18:02 +0800553void MotionEvent::initialize(int32_t id, int32_t deviceId, uint32_t source,
554 ui::LogicalDisplayId displayId, std::array<uint8_t, 32> hmac,
555 int32_t action, int32_t actionButton, int32_t flags, int32_t edgeFlags,
556 int32_t metaState, int32_t buttonState,
557 MotionClassification classification, const ui::Transform& transform,
558 float xPrecision, float yPrecision, float rawXCursorPosition,
559 float rawYCursorPosition, const ui::Transform& rawTransform,
560 nsecs_t downTime, nsecs_t eventTime, size_t pointerCount,
561 const PointerProperties* pointerProperties,
Garfield Tan00f511d2019-06-12 16:55:40 -0700562 const PointerCoords* pointerCoords) {
Garfield Tan4cc839f2020-01-24 11:26:14 -0800563 InputEvent::initialize(id, deviceId, source, displayId, hmac);
Jeff Brown5912f952013-07-01 19:10:31 -0700564 mAction = action;
Michael Wright7b159c92015-05-14 14:48:03 +0100565 mActionButton = actionButton;
Jeff Brown5912f952013-07-01 19:10:31 -0700566 mFlags = flags;
567 mEdgeFlags = edgeFlags;
568 mMetaState = metaState;
569 mButtonState = buttonState;
Siarhei Vishniakou49e59222018-12-28 18:17:15 -0800570 mClassification = classification;
chaviw9eaa22c2020-07-01 16:21:27 -0700571 mTransform = transform;
Jeff Brown5912f952013-07-01 19:10:31 -0700572 mXPrecision = xPrecision;
573 mYPrecision = yPrecision;
Garfield Tan937bb832019-07-25 17:48:31 -0700574 mRawXCursorPosition = rawXCursorPosition;
575 mRawYCursorPosition = rawYCursorPosition;
Prabir Pradhanb9b18502021-08-26 12:30:32 -0700576 mRawTransform = rawTransform;
Jeff Brown5912f952013-07-01 19:10:31 -0700577 mDownTime = downTime;
578 mPointerProperties.clear();
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800579 mPointerProperties.insert(mPointerProperties.end(), &pointerProperties[0],
580 &pointerProperties[pointerCount]);
Jeff Brown5912f952013-07-01 19:10:31 -0700581 mSampleEventTimes.clear();
582 mSamplePointerCoords.clear();
jioana71c6f732024-07-16 15:42:56 +0000583 addSample(eventTime, pointerCoords, mId);
Jeff Brown5912f952013-07-01 19:10:31 -0700584}
585
586void MotionEvent::copyFrom(const MotionEvent* other, bool keepHistory) {
Garfield Tan4cc839f2020-01-24 11:26:14 -0800587 InputEvent::initialize(other->mId, other->mDeviceId, other->mSource, other->mDisplayId,
588 other->mHmac);
Jeff Brown5912f952013-07-01 19:10:31 -0700589 mAction = other->mAction;
Michael Wright7b159c92015-05-14 14:48:03 +0100590 mActionButton = other->mActionButton;
Jeff Brown5912f952013-07-01 19:10:31 -0700591 mFlags = other->mFlags;
592 mEdgeFlags = other->mEdgeFlags;
593 mMetaState = other->mMetaState;
594 mButtonState = other->mButtonState;
Siarhei Vishniakou49e59222018-12-28 18:17:15 -0800595 mClassification = other->mClassification;
chaviw9eaa22c2020-07-01 16:21:27 -0700596 mTransform = other->mTransform;
Jeff Brown5912f952013-07-01 19:10:31 -0700597 mXPrecision = other->mXPrecision;
598 mYPrecision = other->mYPrecision;
Garfield Tan937bb832019-07-25 17:48:31 -0700599 mRawXCursorPosition = other->mRawXCursorPosition;
600 mRawYCursorPosition = other->mRawYCursorPosition;
Prabir Pradhanb9b18502021-08-26 12:30:32 -0700601 mRawTransform = other->mRawTransform;
Jeff Brown5912f952013-07-01 19:10:31 -0700602 mDownTime = other->mDownTime;
603 mPointerProperties = other->mPointerProperties;
604
605 if (keepHistory) {
606 mSampleEventTimes = other->mSampleEventTimes;
607 mSamplePointerCoords = other->mSamplePointerCoords;
608 } else {
609 mSampleEventTimes.clear();
Siarhei Vishniakou46a27742020-09-09 13:57:28 -0500610 mSampleEventTimes.push_back(other->getEventTime());
Jeff Brown5912f952013-07-01 19:10:31 -0700611 mSamplePointerCoords.clear();
612 size_t pointerCount = other->getPointerCount();
613 size_t historySize = other->getHistorySize();
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800614 mSamplePointerCoords
615 .insert(mSamplePointerCoords.end(),
616 &other->mSamplePointerCoords[historySize * pointerCount],
617 &other->mSamplePointerCoords[historySize * pointerCount + pointerCount]);
Jeff Brown5912f952013-07-01 19:10:31 -0700618 }
619}
620
Prabir Pradhanbf9b0a82024-02-29 02:23:50 +0000621void MotionEvent::splitFrom(const android::MotionEvent& other,
622 std::bitset<MAX_POINTER_ID + 1> splitPointerIds, int32_t newEventId) {
623 // TODO(b/327503168): The down time should be a parameter to the split function, because only
624 // the caller can know when the first event went down on the target.
625 const nsecs_t splitDownTime = other.mDownTime;
626
627 auto [action, pointerProperties, pointerCoords] =
628 split(other.getAction(), other.getFlags(), other.getHistorySize(),
629 other.mPointerProperties, other.mSamplePointerCoords, splitPointerIds);
630
631 // Initialize the event with zero pointers, and manually set the split pointers.
632 initialize(newEventId, other.mDeviceId, other.mSource, other.mDisplayId, /*hmac=*/{}, action,
633 other.mActionButton, other.mFlags, other.mEdgeFlags, other.mMetaState,
634 other.mButtonState, other.mClassification, other.mTransform, other.mXPrecision,
635 other.mYPrecision, other.mRawXCursorPosition, other.mRawYCursorPosition,
636 other.mRawTransform, splitDownTime, other.getEventTime(), /*pointerCount=*/0,
637 pointerProperties.data(), pointerCoords.data());
638 mPointerProperties = std::move(pointerProperties);
639 mSamplePointerCoords = std::move(pointerCoords);
640 mSampleEventTimes = other.mSampleEventTimes;
641}
642
jioana71c6f732024-07-16 15:42:56 +0000643void MotionEvent::addSample(int64_t eventTime, const PointerCoords* pointerCoords,
644 int32_t eventId) {
645 mId = eventId;
Siarhei Vishniakou46a27742020-09-09 13:57:28 -0500646 mSampleEventTimes.push_back(eventTime);
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800647 mSamplePointerCoords.insert(mSamplePointerCoords.end(), &pointerCoords[0],
648 &pointerCoords[getPointerCount()]);
Jeff Brown5912f952013-07-01 19:10:31 -0700649}
650
Michael Wright635422b2022-12-02 00:43:56 +0000651std::optional<ui::Rotation> MotionEvent::getSurfaceRotation() const {
Prabir Pradhan092f3a92021-11-25 10:53:27 -0800652 // The surface rotation is the rotation from the window's coordinate space to that of the
653 // display. Since the event's transform takes display space coordinates to window space, the
654 // returned surface rotation is the inverse of the rotation for the surface.
655 switch (mTransform.getOrientation()) {
656 case ui::Transform::ROT_0:
Michael Wright635422b2022-12-02 00:43:56 +0000657 return ui::ROTATION_0;
Prabir Pradhan092f3a92021-11-25 10:53:27 -0800658 case ui::Transform::ROT_90:
Michael Wright635422b2022-12-02 00:43:56 +0000659 return ui::ROTATION_270;
Prabir Pradhan092f3a92021-11-25 10:53:27 -0800660 case ui::Transform::ROT_180:
Michael Wright635422b2022-12-02 00:43:56 +0000661 return ui::ROTATION_180;
Prabir Pradhan092f3a92021-11-25 10:53:27 -0800662 case ui::Transform::ROT_270:
Michael Wright635422b2022-12-02 00:43:56 +0000663 return ui::ROTATION_90;
Prabir Pradhan092f3a92021-11-25 10:53:27 -0800664 default:
Michael Wright635422b2022-12-02 00:43:56 +0000665 return std::nullopt;
Prabir Pradhan092f3a92021-11-25 10:53:27 -0800666 }
667}
668
Garfield Tan00f511d2019-06-12 16:55:40 -0700669float MotionEvent::getXCursorPosition() const {
chaviw9eaa22c2020-07-01 16:21:27 -0700670 vec2 vals = mTransform.transform(getRawXCursorPosition(), getRawYCursorPosition());
Prabir Pradhan00e029d2023-03-09 20:11:09 +0000671 return roundTransformedCoords(vals.x);
Garfield Tan00f511d2019-06-12 16:55:40 -0700672}
673
674float MotionEvent::getYCursorPosition() const {
chaviw9eaa22c2020-07-01 16:21:27 -0700675 vec2 vals = mTransform.transform(getRawXCursorPosition(), getRawYCursorPosition());
Prabir Pradhan00e029d2023-03-09 20:11:09 +0000676 return roundTransformedCoords(vals.y);
Garfield Tan00f511d2019-06-12 16:55:40 -0700677}
678
Garfield Tan937bb832019-07-25 17:48:31 -0700679void MotionEvent::setCursorPosition(float x, float y) {
chaviw9eaa22c2020-07-01 16:21:27 -0700680 ui::Transform inverse = mTransform.inverse();
681 vec2 vals = inverse.transform(x, y);
682 mRawXCursorPosition = vals.x;
683 mRawYCursorPosition = vals.y;
Garfield Tan937bb832019-07-25 17:48:31 -0700684}
685
Jeff Brown5912f952013-07-01 19:10:31 -0700686const PointerCoords* MotionEvent::getRawPointerCoords(size_t pointerIndex) const {
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +0000687 if (CC_UNLIKELY(pointerIndex < 0 || pointerIndex >= getPointerCount())) {
688 LOG(FATAL) << __func__ << ": Invalid pointer index " << pointerIndex << " for " << *this;
689 }
690 const size_t position = getHistorySize() * getPointerCount() + pointerIndex;
691 if (CC_UNLIKELY(position < 0 || position >= mSamplePointerCoords.size())) {
692 LOG(FATAL) << __func__ << ": Invalid array index " << position << " for " << *this;
693 }
694 return &mSamplePointerCoords[position];
Jeff Brown5912f952013-07-01 19:10:31 -0700695}
696
697float MotionEvent::getRawAxisValue(int32_t axis, size_t pointerIndex) const {
Evan Rosky84f07f02021-04-16 10:42:42 -0700698 return getHistoricalRawAxisValue(axis, pointerIndex, getHistorySize());
Jeff Brown5912f952013-07-01 19:10:31 -0700699}
700
701float MotionEvent::getAxisValue(int32_t axis, size_t pointerIndex) const {
chaviw9eaa22c2020-07-01 16:21:27 -0700702 return getHistoricalAxisValue(axis, pointerIndex, getHistorySize());
Jeff Brown5912f952013-07-01 19:10:31 -0700703}
704
705const PointerCoords* MotionEvent::getHistoricalRawPointerCoords(
706 size_t pointerIndex, size_t historicalIndex) const {
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +0000707 if (CC_UNLIKELY(pointerIndex < 0 || pointerIndex >= getPointerCount())) {
Harry Cuttsffbd83c2024-11-18 19:08:04 +0000708 LOG(FATAL) << __func__ << ": Invalid pointer index " << pointerIndex
709 << "; should be between >0 and ≤" << getPointerCount();
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +0000710 }
711 if (CC_UNLIKELY(historicalIndex < 0 || historicalIndex > getHistorySize())) {
Harry Cuttsffbd83c2024-11-18 19:08:04 +0000712 LOG(FATAL) << __func__ << ": Invalid historical index " << historicalIndex
713 << "; should be >0 and ≤" << getHistorySize();
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +0000714 }
715 const size_t position = historicalIndex * getPointerCount() + pointerIndex;
716 if (CC_UNLIKELY(position < 0 || position >= mSamplePointerCoords.size())) {
Harry Cuttsffbd83c2024-11-18 19:08:04 +0000717 LOG(FATAL) << __func__ << ": Invalid array index " << position << "; should be >0 and ≤"
718 << mSamplePointerCoords.size();
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +0000719 }
720 return &mSamplePointerCoords[position];
Jeff Brown5912f952013-07-01 19:10:31 -0700721}
722
723float MotionEvent::getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
Prabir Pradhan6b384612021-05-14 16:56:25 -0700724 size_t historicalIndex) const {
Prabir Pradhan9eb02c02021-10-19 14:02:20 -0700725 const PointerCoords& coords = *getHistoricalRawPointerCoords(pointerIndex, historicalIndex);
Prabir Pradhan9a53b552024-06-04 02:59:40 +0000726 return calculateTransformedAxisValue(axis, mSource, mFlags, mRawTransform, coords);
Jeff Brown5912f952013-07-01 19:10:31 -0700727}
728
729float MotionEvent::getHistoricalAxisValue(int32_t axis, size_t pointerIndex,
Prabir Pradhan9f388812021-05-13 16:54:53 -0700730 size_t historicalIndex) const {
Prabir Pradhan9eb02c02021-10-19 14:02:20 -0700731 const PointerCoords& coords = *getHistoricalRawPointerCoords(pointerIndex, historicalIndex);
Prabir Pradhan9a53b552024-06-04 02:59:40 +0000732 return calculateTransformedAxisValue(axis, mSource, mFlags, mTransform, coords);
Jeff Brown5912f952013-07-01 19:10:31 -0700733}
734
735ssize_t MotionEvent::findPointerIndex(int32_t pointerId) const {
736 size_t pointerCount = mPointerProperties.size();
737 for (size_t i = 0; i < pointerCount; i++) {
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800738 if (mPointerProperties[i].id == pointerId) {
Jeff Brown5912f952013-07-01 19:10:31 -0700739 return i;
740 }
741 }
742 return -1;
743}
744
745void MotionEvent::offsetLocation(float xOffset, float yOffset) {
chaviw9eaa22c2020-07-01 16:21:27 -0700746 float currXOffset = mTransform.tx();
747 float currYOffset = mTransform.ty();
748 mTransform.set(currXOffset + xOffset, currYOffset + yOffset);
Jeff Brown5912f952013-07-01 19:10:31 -0700749}
750
Prabir Pradhanadd8a4a2024-03-05 22:18:09 +0000751float MotionEvent::getRawXOffset() const {
752 // This is equivalent to the x-coordinate of the point that the origin of the raw coordinate
753 // space maps to.
754 return (mTransform * mRawTransform.inverse()).tx();
755}
756
757float MotionEvent::getRawYOffset() const {
758 // This is equivalent to the y-coordinate of the point that the origin of the raw coordinate
759 // space maps to.
760 return (mTransform * mRawTransform.inverse()).ty();
761}
762
Robert Carre07e1032018-11-26 12:55:53 -0800763void MotionEvent::scale(float globalScaleFactor) {
chaviw9eaa22c2020-07-01 16:21:27 -0700764 mTransform.set(mTransform.tx() * globalScaleFactor, mTransform.ty() * globalScaleFactor);
Prabir Pradhanb9b18502021-08-26 12:30:32 -0700765 mRawTransform.set(mRawTransform.tx() * globalScaleFactor,
766 mRawTransform.ty() * globalScaleFactor);
Robert Carre07e1032018-11-26 12:55:53 -0800767 mXPrecision *= globalScaleFactor;
768 mYPrecision *= globalScaleFactor;
Jeff Brown5912f952013-07-01 19:10:31 -0700769
770 size_t numSamples = mSamplePointerCoords.size();
771 for (size_t i = 0; i < numSamples; i++) {
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800772 mSamplePointerCoords[i].scale(globalScaleFactor, globalScaleFactor, globalScaleFactor);
Jeff Brown5912f952013-07-01 19:10:31 -0700773 }
774}
775
chaviw9eaa22c2020-07-01 16:21:27 -0700776void MotionEvent::transform(const std::array<float, 9>& matrix) {
Prabir Pradhan6b384612021-05-14 16:56:25 -0700777 // We want to preserve the raw axes values stored in the PointerCoords, so we just update the
778 // transform using the values passed in.
chaviw9eaa22c2020-07-01 16:21:27 -0700779 ui::Transform newTransform;
780 newTransform.set(matrix);
781 mTransform = newTransform * mTransform;
Jeff Brown5912f952013-07-01 19:10:31 -0700782}
783
Evan Roskyd4d4d802021-05-03 20:12:21 -0700784void MotionEvent::applyTransform(const std::array<float, 9>& matrix) {
Prabir Pradhan6b384612021-05-14 16:56:25 -0700785 ui::Transform transform;
786 transform.set(matrix);
Evan Roskyd4d4d802021-05-03 20:12:21 -0700787
788 // Apply the transformation to all samples.
Prabir Pradhan4b8d36c2024-06-07 15:10:46 +0000789 std::for_each(mSamplePointerCoords.begin(), mSamplePointerCoords.end(), [&](PointerCoords& c) {
790 calculateTransformedCoordsInPlace(c, mSource, mFlags, transform);
791 });
Prabir Pradhan4b19bd02021-06-01 17:34:59 -0700792
793 if (mRawXCursorPosition != AMOTION_EVENT_INVALID_CURSOR_POSITION &&
794 mRawYCursorPosition != AMOTION_EVENT_INVALID_CURSOR_POSITION) {
795 const vec2 cursor = transform.transform(mRawXCursorPosition, mRawYCursorPosition);
796 mRawXCursorPosition = cursor.x;
797 mRawYCursorPosition = cursor.y;
798 }
Evan Roskyd4d4d802021-05-03 20:12:21 -0700799}
800
chaviw9eaa22c2020-07-01 16:21:27 -0700801static status_t readFromParcel(ui::Transform& transform, const Parcel& parcel) {
802 float dsdx, dtdx, tx, dtdy, dsdy, ty;
803 status_t status = parcel.readFloat(&dsdx);
804 status |= parcel.readFloat(&dtdx);
805 status |= parcel.readFloat(&tx);
806 status |= parcel.readFloat(&dtdy);
807 status |= parcel.readFloat(&dsdy);
808 status |= parcel.readFloat(&ty);
809
810 transform.set({dsdx, dtdx, tx, dtdy, dsdy, ty, 0, 0, 1});
811 return status;
812}
813
814static status_t writeToParcel(const ui::Transform& transform, Parcel& parcel) {
815 status_t status = parcel.writeFloat(transform.dsdx());
816 status |= parcel.writeFloat(transform.dtdx());
817 status |= parcel.writeFloat(transform.tx());
818 status |= parcel.writeFloat(transform.dtdy());
819 status |= parcel.writeFloat(transform.dsdy());
820 status |= parcel.writeFloat(transform.ty());
821 return status;
822}
823
Jeff Brown5912f952013-07-01 19:10:31 -0700824status_t MotionEvent::readFromParcel(Parcel* parcel) {
825 size_t pointerCount = parcel->readInt32();
826 size_t sampleCount = parcel->readInt32();
Flanker552a8a52015-09-07 15:28:58 +0800827 if (pointerCount == 0 || pointerCount > MAX_POINTERS ||
828 sampleCount == 0 || sampleCount > MAX_SAMPLES) {
Jeff Brown5912f952013-07-01 19:10:31 -0700829 return BAD_VALUE;
830 }
831
Garfield Tan4cc839f2020-01-24 11:26:14 -0800832 mId = parcel->readInt32();
Jeff Brown5912f952013-07-01 19:10:31 -0700833 mDeviceId = parcel->readInt32();
Siarhei Vishniakou3826d472020-01-27 10:44:40 -0600834 mSource = parcel->readUint32();
Linnan Li13bf76a2024-05-05 19:18:02 +0800835 mDisplayId = ui::LogicalDisplayId{parcel->readInt32()};
Siarhei Vishniakou9c858ac2020-01-23 14:20:11 -0600836 std::vector<uint8_t> hmac;
837 status_t result = parcel->readByteVector(&hmac);
838 if (result != OK || hmac.size() != 32) {
839 return BAD_VALUE;
840 }
841 std::move(hmac.begin(), hmac.begin() + hmac.size(), mHmac.begin());
Jeff Brown5912f952013-07-01 19:10:31 -0700842 mAction = parcel->readInt32();
Michael Wright7b159c92015-05-14 14:48:03 +0100843 mActionButton = parcel->readInt32();
Jeff Brown5912f952013-07-01 19:10:31 -0700844 mFlags = parcel->readInt32();
845 mEdgeFlags = parcel->readInt32();
846 mMetaState = parcel->readInt32();
847 mButtonState = parcel->readInt32();
Siarhei Vishniakou49e59222018-12-28 18:17:15 -0800848 mClassification = static_cast<MotionClassification>(parcel->readByte());
chaviw9eaa22c2020-07-01 16:21:27 -0700849
850 result = android::readFromParcel(mTransform, *parcel);
851 if (result != OK) {
852 return result;
853 }
Jeff Brown5912f952013-07-01 19:10:31 -0700854 mXPrecision = parcel->readFloat();
855 mYPrecision = parcel->readFloat();
Garfield Tan937bb832019-07-25 17:48:31 -0700856 mRawXCursorPosition = parcel->readFloat();
857 mRawYCursorPosition = parcel->readFloat();
Prabir Pradhanb9b18502021-08-26 12:30:32 -0700858
859 result = android::readFromParcel(mRawTransform, *parcel);
860 if (result != OK) {
861 return result;
862 }
Jeff Brown5912f952013-07-01 19:10:31 -0700863 mDownTime = parcel->readInt64();
864
865 mPointerProperties.clear();
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800866 mPointerProperties.reserve(pointerCount);
Jeff Brown5912f952013-07-01 19:10:31 -0700867 mSampleEventTimes.clear();
Siarhei Vishniakou46a27742020-09-09 13:57:28 -0500868 mSampleEventTimes.reserve(sampleCount);
Jeff Brown5912f952013-07-01 19:10:31 -0700869 mSamplePointerCoords.clear();
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800870 mSamplePointerCoords.reserve(sampleCount * pointerCount);
Jeff Brown5912f952013-07-01 19:10:31 -0700871
872 for (size_t i = 0; i < pointerCount; i++) {
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800873 mPointerProperties.push_back({});
874 PointerProperties& properties = mPointerProperties.back();
Jeff Brown5912f952013-07-01 19:10:31 -0700875 properties.id = parcel->readInt32();
Siarhei Vishniakou6d73f832022-07-21 17:27:03 -0700876 properties.toolType = static_cast<ToolType>(parcel->readInt32());
Jeff Brown5912f952013-07-01 19:10:31 -0700877 }
878
Dan Austinc94fc452015-09-22 14:22:41 -0700879 while (sampleCount > 0) {
880 sampleCount--;
Siarhei Vishniakou46a27742020-09-09 13:57:28 -0500881 mSampleEventTimes.push_back(parcel->readInt64());
Jeff Brown5912f952013-07-01 19:10:31 -0700882 for (size_t i = 0; i < pointerCount; i++) {
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800883 mSamplePointerCoords.push_back({});
884 status_t status = mSamplePointerCoords.back().readFromParcel(parcel);
Jeff Brown5912f952013-07-01 19:10:31 -0700885 if (status) {
886 return status;
887 }
888 }
889 }
890 return OK;
891}
892
893status_t MotionEvent::writeToParcel(Parcel* parcel) const {
894 size_t pointerCount = mPointerProperties.size();
895 size_t sampleCount = mSampleEventTimes.size();
896
897 parcel->writeInt32(pointerCount);
898 parcel->writeInt32(sampleCount);
899
Garfield Tan4cc839f2020-01-24 11:26:14 -0800900 parcel->writeInt32(mId);
Jeff Brown5912f952013-07-01 19:10:31 -0700901 parcel->writeInt32(mDeviceId);
Siarhei Vishniakou3826d472020-01-27 10:44:40 -0600902 parcel->writeUint32(mSource);
Linnan Li13bf76a2024-05-05 19:18:02 +0800903 parcel->writeInt32(mDisplayId.val());
Siarhei Vishniakou9c858ac2020-01-23 14:20:11 -0600904 std::vector<uint8_t> hmac(mHmac.begin(), mHmac.end());
905 parcel->writeByteVector(hmac);
Jeff Brown5912f952013-07-01 19:10:31 -0700906 parcel->writeInt32(mAction);
Michael Wright7b159c92015-05-14 14:48:03 +0100907 parcel->writeInt32(mActionButton);
Jeff Brown5912f952013-07-01 19:10:31 -0700908 parcel->writeInt32(mFlags);
909 parcel->writeInt32(mEdgeFlags);
910 parcel->writeInt32(mMetaState);
911 parcel->writeInt32(mButtonState);
Siarhei Vishniakou49e59222018-12-28 18:17:15 -0800912 parcel->writeByte(static_cast<int8_t>(mClassification));
chaviw9eaa22c2020-07-01 16:21:27 -0700913
914 status_t result = android::writeToParcel(mTransform, *parcel);
915 if (result != OK) {
916 return result;
917 }
Jeff Brown5912f952013-07-01 19:10:31 -0700918 parcel->writeFloat(mXPrecision);
919 parcel->writeFloat(mYPrecision);
Garfield Tan937bb832019-07-25 17:48:31 -0700920 parcel->writeFloat(mRawXCursorPosition);
921 parcel->writeFloat(mRawYCursorPosition);
Prabir Pradhanb9b18502021-08-26 12:30:32 -0700922
923 result = android::writeToParcel(mRawTransform, *parcel);
924 if (result != OK) {
925 return result;
926 }
Jeff Brown5912f952013-07-01 19:10:31 -0700927 parcel->writeInt64(mDownTime);
928
929 for (size_t i = 0; i < pointerCount; i++) {
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800930 const PointerProperties& properties = mPointerProperties[i];
Jeff Brown5912f952013-07-01 19:10:31 -0700931 parcel->writeInt32(properties.id);
Siarhei Vishniakou6d73f832022-07-21 17:27:03 -0700932 parcel->writeInt32(static_cast<int32_t>(properties.toolType));
Jeff Brown5912f952013-07-01 19:10:31 -0700933 }
934
Siarhei Vishniakou6dbd0ce2022-01-13 01:24:14 -0800935 const PointerCoords* pc = mSamplePointerCoords.data();
Jeff Brown5912f952013-07-01 19:10:31 -0700936 for (size_t h = 0; h < sampleCount; h++) {
Siarhei Vishniakou46a27742020-09-09 13:57:28 -0500937 parcel->writeInt64(mSampleEventTimes[h]);
Jeff Brown5912f952013-07-01 19:10:31 -0700938 for (size_t i = 0; i < pointerCount; i++) {
939 status_t status = (pc++)->writeToParcel(parcel);
940 if (status) {
941 return status;
942 }
943 }
944 }
945 return OK;
946}
Jeff Brown5912f952013-07-01 19:10:31 -0700947
Siarhei Vishniakou3826d472020-01-27 10:44:40 -0600948bool MotionEvent::isTouchEvent(uint32_t source, int32_t action) {
Prabir Pradhan7e1ee562021-10-26 10:19:49 -0700949 if (isFromSource(source, AINPUT_SOURCE_CLASS_POINTER)) {
Jeff Brown5912f952013-07-01 19:10:31 -0700950 // Specifically excludes HOVER_MOVE and SCROLL.
951 switch (action & AMOTION_EVENT_ACTION_MASK) {
952 case AMOTION_EVENT_ACTION_DOWN:
953 case AMOTION_EVENT_ACTION_MOVE:
954 case AMOTION_EVENT_ACTION_UP:
955 case AMOTION_EVENT_ACTION_POINTER_DOWN:
956 case AMOTION_EVENT_ACTION_POINTER_UP:
957 case AMOTION_EVENT_ACTION_CANCEL:
958 case AMOTION_EVENT_ACTION_OUTSIDE:
959 return true;
960 }
961 }
962 return false;
963}
964
Michael Wright872db4f2014-04-22 15:03:51 -0700965const char* MotionEvent::getLabel(int32_t axis) {
Chris Ye4958d062020-08-20 13:21:10 -0700966 return InputEventLookup::getAxisLabel(axis);
Michael Wright872db4f2014-04-22 15:03:51 -0700967}
968
Siarhei Vishniakou5df34932023-01-23 12:41:01 -0800969std::optional<int> MotionEvent::getAxisFromLabel(const char* label) {
Chris Ye4958d062020-08-20 13:21:10 -0700970 return InputEventLookup::getAxisByLabel(label);
Michael Wright872db4f2014-04-22 15:03:51 -0700971}
972
Siarhei Vishniakouc68fdec2020-10-22 14:58:14 -0500973std::string MotionEvent::actionToString(int32_t action) {
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700974 // Convert MotionEvent action to string
975 switch (action & AMOTION_EVENT_ACTION_MASK) {
976 case AMOTION_EVENT_ACTION_DOWN:
977 return "DOWN";
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700978 case AMOTION_EVENT_ACTION_UP:
979 return "UP";
Siarhei Vishniakouc68fdec2020-10-22 14:58:14 -0500980 case AMOTION_EVENT_ACTION_MOVE:
981 return "MOVE";
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700982 case AMOTION_EVENT_ACTION_CANCEL:
983 return "CANCEL";
Siarhei Vishniakouc68fdec2020-10-22 14:58:14 -0500984 case AMOTION_EVENT_ACTION_OUTSIDE:
985 return "OUTSIDE";
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700986 case AMOTION_EVENT_ACTION_POINTER_DOWN:
Siarhei Vishniakouca205502021-07-16 21:31:58 +0000987 return StringPrintf("POINTER_DOWN(%" PRId32 ")", MotionEvent::getActionIndex(action));
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -0700988 case AMOTION_EVENT_ACTION_POINTER_UP:
Siarhei Vishniakouca205502021-07-16 21:31:58 +0000989 return StringPrintf("POINTER_UP(%" PRId32 ")", MotionEvent::getActionIndex(action));
Siarhei Vishniakouc68fdec2020-10-22 14:58:14 -0500990 case AMOTION_EVENT_ACTION_HOVER_MOVE:
991 return "HOVER_MOVE";
992 case AMOTION_EVENT_ACTION_SCROLL:
993 return "SCROLL";
994 case AMOTION_EVENT_ACTION_HOVER_ENTER:
995 return "HOVER_ENTER";
996 case AMOTION_EVENT_ACTION_HOVER_EXIT:
997 return "HOVER_EXIT";
998 case AMOTION_EVENT_ACTION_BUTTON_PRESS:
999 return "BUTTON_PRESS";
1000 case AMOTION_EVENT_ACTION_BUTTON_RELEASE:
1001 return "BUTTON_RELEASE";
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001002 }
Siarhei Vishniakouc68fdec2020-10-22 14:58:14 -05001003 return android::base::StringPrintf("%" PRId32, action);
Siarhei Vishniakoud44dddf2020-03-25 16:16:40 -07001004}
1005
Prabir Pradhanbf9b0a82024-02-29 02:23:50 +00001006std::tuple<int32_t, std::vector<PointerProperties>, std::vector<PointerCoords>> MotionEvent::split(
1007 int32_t action, int32_t flags, int32_t historySize,
1008 const std::vector<PointerProperties>& pointerProperties,
1009 const std::vector<PointerCoords>& pointerCoords,
1010 std::bitset<MAX_POINTER_ID + 1> splitPointerIds) {
1011 LOG_ALWAYS_FATAL_IF(!splitPointerIds.any());
1012 const auto pointerCount = pointerProperties.size();
1013 LOG_ALWAYS_FATAL_IF(pointerCoords.size() != (pointerCount * (historySize + 1)));
1014 const auto splitCount = splitPointerIds.count();
1015
1016 std::vector<PointerProperties> splitPointerProperties;
1017 std::vector<PointerCoords> splitPointerCoords;
1018
1019 for (uint32_t i = 0; i < pointerCount; i++) {
1020 if (splitPointerIds.test(pointerProperties[i].id)) {
1021 splitPointerProperties.emplace_back(pointerProperties[i]);
1022 }
1023 }
1024 for (uint32_t i = 0; i < pointerCoords.size(); i++) {
1025 if (splitPointerIds.test(pointerProperties[i % pointerCount].id)) {
1026 splitPointerCoords.emplace_back(pointerCoords[i]);
1027 }
1028 }
1029 LOG_ALWAYS_FATAL_IF(splitPointerCoords.size() !=
1030 (splitPointerProperties.size() * (historySize + 1)));
1031
1032 if (CC_UNLIKELY(splitPointerProperties.size() != splitCount)) {
Prabir Pradhan1a41fe02024-03-11 18:38:40 +00001033 // TODO(b/329107108): Promote this to a fatal check once bugs in the caller are resolved.
1034 LOG(ERROR) << "Cannot split MotionEvent: Requested splitting " << splitCount
Prabir Pradhanbf9b0a82024-02-29 02:23:50 +00001035 << " pointers from the original event, but the original event only contained "
1036 << splitPointerProperties.size() << " of those pointers.";
1037 }
1038
1039 // TODO(b/327503168): Verify the splitDownTime here once it is used correctly.
1040
1041 const auto splitAction = resolveActionForSplitMotionEvent(action, flags, pointerProperties,
1042 splitPointerProperties);
1043 return {splitAction, splitPointerProperties, splitPointerCoords};
1044}
1045
Prabir Pradhan7e1ee562021-10-26 10:19:49 -07001046// Apply the given transformation to the point without checking whether the entire transform
1047// should be disregarded altogether for the provided source.
1048static inline vec2 calculateTransformedXYUnchecked(uint32_t source, const ui::Transform& transform,
1049 const vec2& xy) {
1050 return shouldDisregardOffset(source) ? transformWithoutTranslation(transform, xy)
Prabir Pradhan00e029d2023-03-09 20:11:09 +00001051 : roundTransformedCoords(transform.transform(xy));
Prabir Pradhan7e1ee562021-10-26 10:19:49 -07001052}
1053
Prabir Pradhanb5cb9572021-09-24 06:35:16 -07001054vec2 MotionEvent::calculateTransformedXY(uint32_t source, const ui::Transform& transform,
1055 const vec2& xy) {
Prabir Pradhan7e1ee562021-10-26 10:19:49 -07001056 if (shouldDisregardTransformation(source)) {
1057 return xy;
1058 }
1059 return calculateTransformedXYUnchecked(source, transform, xy);
Prabir Pradhanb5cb9572021-09-24 06:35:16 -07001060}
1061
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001062// Keep in sync with calculateTransformedCoords.
Prabir Pradhan9a53b552024-06-04 02:59:40 +00001063float MotionEvent::calculateTransformedAxisValue(int32_t axis, uint32_t source, int32_t flags,
Prabir Pradhan9eb02c02021-10-19 14:02:20 -07001064 const ui::Transform& transform,
1065 const PointerCoords& coords) {
Prabir Pradhan7e1ee562021-10-26 10:19:49 -07001066 if (shouldDisregardTransformation(source)) {
1067 return coords.getAxisValue(axis);
1068 }
1069
Prabir Pradhan9eb02c02021-10-19 14:02:20 -07001070 if (axis == AMOTION_EVENT_AXIS_X || axis == AMOTION_EVENT_AXIS_Y) {
Prabir Pradhan7e1ee562021-10-26 10:19:49 -07001071 const vec2 xy = calculateTransformedXYUnchecked(source, transform, coords.getXYValue());
Prabir Pradhan9eb02c02021-10-19 14:02:20 -07001072 static_assert(AMOTION_EVENT_AXIS_X == 0 && AMOTION_EVENT_AXIS_Y == 1);
1073 return xy[axis];
1074 }
1075
1076 if (axis == AMOTION_EVENT_AXIS_RELATIVE_X || axis == AMOTION_EVENT_AXIS_RELATIVE_Y) {
1077 const vec2 relativeXy =
1078 transformWithoutTranslation(transform,
1079 {coords.getAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X),
1080 coords.getAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y)});
1081 return axis == AMOTION_EVENT_AXIS_RELATIVE_X ? relativeXy.x : relativeXy.y;
1082 }
1083
1084 if (axis == AMOTION_EVENT_AXIS_ORIENTATION) {
Prabir Pradhan9a53b552024-06-04 02:59:40 +00001085 return transformOrientation(transform, coords, flags);
Prabir Pradhan9eb02c02021-10-19 14:02:20 -07001086 }
1087
1088 return coords.getAxisValue(axis);
1089}
1090
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001091// Keep in sync with calculateTransformedAxisValue. This is an optimization of
1092// calculateTransformedAxisValue for all PointerCoords axes.
Prabir Pradhan4b8d36c2024-06-07 15:10:46 +00001093void MotionEvent::calculateTransformedCoordsInPlace(PointerCoords& coords, uint32_t source,
1094 int32_t flags, const ui::Transform& transform) {
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001095 if (shouldDisregardTransformation(source)) {
Prabir Pradhan4b8d36c2024-06-07 15:10:46 +00001096 return;
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001097 }
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001098
1099 const vec2 xy = calculateTransformedXYUnchecked(source, transform, coords.getXYValue());
Prabir Pradhan4b8d36c2024-06-07 15:10:46 +00001100 coords.setAxisValue(AMOTION_EVENT_AXIS_X, xy.x);
1101 coords.setAxisValue(AMOTION_EVENT_AXIS_Y, xy.y);
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001102
1103 const vec2 relativeXy =
1104 transformWithoutTranslation(transform,
1105 {coords.getAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X),
1106 coords.getAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y)});
Prabir Pradhan4b8d36c2024-06-07 15:10:46 +00001107 coords.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X, relativeXy.x);
1108 coords.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y, relativeXy.y);
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001109
Prabir Pradhan4b8d36c2024-06-07 15:10:46 +00001110 coords.setAxisValue(AMOTION_EVENT_AXIS_ORIENTATION,
1111 transformOrientation(transform, coords, flags));
1112}
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001113
Prabir Pradhan4b8d36c2024-06-07 15:10:46 +00001114PointerCoords MotionEvent::calculateTransformedCoords(uint32_t source, int32_t flags,
1115 const ui::Transform& transform,
1116 const PointerCoords& coords) {
1117 PointerCoords out = coords;
1118 calculateTransformedCoordsInPlace(out, source, flags, transform);
Prabir Pradhan8e6ce222022-02-24 09:08:54 -08001119 return out;
1120}
1121
Prabir Pradhan65a071a2024-01-05 20:52:09 +00001122bool MotionEvent::operator==(const android::MotionEvent& o) const {
1123 // We use NaN values to represent invalid cursor positions. Since NaN values are not equal
1124 // to themselves according to IEEE 754, we cannot use the default equality operator to compare
1125 // MotionEvents. Therefore we define a custom equality operator with special handling for NaNs.
1126 // clang-format off
1127 return InputEvent::operator==(static_cast<const InputEvent&>(o)) &&
1128 mAction == o.mAction &&
1129 mActionButton == o.mActionButton &&
1130 mFlags == o.mFlags &&
1131 mEdgeFlags == o.mEdgeFlags &&
1132 mMetaState == o.mMetaState &&
1133 mButtonState == o.mButtonState &&
1134 mClassification == o.mClassification &&
1135 mTransform == o.mTransform &&
1136 mXPrecision == o.mXPrecision &&
1137 mYPrecision == o.mYPrecision &&
1138 ((std::isnan(mRawXCursorPosition) && std::isnan(o.mRawXCursorPosition)) ||
1139 mRawXCursorPosition == o.mRawXCursorPosition) &&
1140 ((std::isnan(mRawYCursorPosition) && std::isnan(o.mRawYCursorPosition)) ||
1141 mRawYCursorPosition == o.mRawYCursorPosition) &&
1142 mRawTransform == o.mRawTransform && mDownTime == o.mDownTime &&
1143 mPointerProperties == o.mPointerProperties &&
1144 mSampleEventTimes == o.mSampleEventTimes &&
1145 mSamplePointerCoords == o.mSamplePointerCoords;
1146 // clang-format on
1147}
1148
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +00001149std::ostream& operator<<(std::ostream& out, const MotionEvent& event) {
1150 out << "MotionEvent { action=" << MotionEvent::actionToString(event.getAction());
1151 if (event.getActionButton() != 0) {
1152 out << ", actionButton=" << std::to_string(event.getActionButton());
1153 }
1154 const size_t pointerCount = event.getPointerCount();
hupeng3aa5a51a2022-09-02 16:00:18 +08001155 LOG_ALWAYS_FATAL_IF(pointerCount > MAX_POINTERS, "Too many pointers : pointerCount = %zu",
1156 pointerCount);
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +00001157 for (size_t i = 0; i < pointerCount; i++) {
1158 out << ", id[" << i << "]=" << event.getPointerId(i);
1159 float x = event.getX(i);
1160 float y = event.getY(i);
1161 if (x != 0 || y != 0) {
1162 out << ", x[" << i << "]=" << x;
1163 out << ", y[" << i << "]=" << y;
1164 }
Siarhei Vishniakou6d73f832022-07-21 17:27:03 -07001165 ToolType toolType = event.getToolType(i);
1166 if (toolType != ToolType::FINGER) {
1167 out << ", toolType[" << i << "]=" << ftl::enum_string(toolType);
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +00001168 }
1169 }
1170 if (event.getButtonState() != 0) {
1171 out << ", buttonState=" << event.getButtonState();
1172 }
1173 if (event.getClassification() != MotionClassification::NONE) {
1174 out << ", classification=" << motionClassificationToString(event.getClassification());
1175 }
1176 if (event.getMetaState() != 0) {
1177 out << ", metaState=" << event.getMetaState();
1178 }
Prabir Pradhan65455c72024-02-13 21:46:41 +00001179 if (event.getFlags() != 0) {
1180 out << ", flags=0x" << std::hex << event.getFlags() << std::dec;
1181 }
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +00001182 if (event.getEdgeFlags() != 0) {
1183 out << ", edgeFlags=" << event.getEdgeFlags();
1184 }
1185 if (pointerCount != 1) {
1186 out << ", pointerCount=" << pointerCount;
1187 }
1188 if (event.getHistorySize() != 0) {
1189 out << ", historySize=" << event.getHistorySize();
1190 }
1191 out << ", eventTime=" << event.getEventTime();
1192 out << ", downTime=" << event.getDownTime();
1193 out << ", deviceId=" << event.getDeviceId();
1194 out << ", source=" << inputEventSourceToString(event.getSource());
1195 out << ", displayId=" << event.getDisplayId();
Prabir Pradhanf5abab62024-02-01 20:51:32 +00001196 out << ", eventId=0x" << std::hex << event.getId() << std::dec;
Siarhei Vishniakou4ded0b02022-05-26 00:36:48 +00001197 out << "}";
1198 return out;
1199}
1200
Siarhei Vishniakou7feb2ea2019-11-25 15:11:23 -08001201// --- FocusEvent ---
1202
Antonio Kantek3cfec7b2021-11-05 18:26:17 -07001203void FocusEvent::initialize(int32_t id, bool hasFocus) {
Garfield Tan4cc839f2020-01-24 11:26:14 -08001204 InputEvent::initialize(id, ReservedInputDeviceId::VIRTUAL_KEYBOARD_ID, AINPUT_SOURCE_UNKNOWN,
Siarhei Vishniakoucfbee532024-05-10 13:41:35 -07001205 ui::LogicalDisplayId::INVALID, INVALID_HMAC);
Siarhei Vishniakou7feb2ea2019-11-25 15:11:23 -08001206 mHasFocus = hasFocus;
Siarhei Vishniakou7feb2ea2019-11-25 15:11:23 -08001207}
1208
1209void FocusEvent::initialize(const FocusEvent& from) {
1210 InputEvent::initialize(from);
1211 mHasFocus = from.mHasFocus;
Siarhei Vishniakou7feb2ea2019-11-25 15:11:23 -08001212}
Jeff Brown5912f952013-07-01 19:10:31 -07001213
Prabir Pradhan3f37b7b2020-11-10 16:50:18 -08001214// --- CaptureEvent ---
1215
1216void CaptureEvent::initialize(int32_t id, bool pointerCaptureEnabled) {
1217 InputEvent::initialize(id, ReservedInputDeviceId::VIRTUAL_KEYBOARD_ID, AINPUT_SOURCE_UNKNOWN,
Siarhei Vishniakoucfbee532024-05-10 13:41:35 -07001218 ui::LogicalDisplayId::INVALID, INVALID_HMAC);
Prabir Pradhan3f37b7b2020-11-10 16:50:18 -08001219 mPointerCaptureEnabled = pointerCaptureEnabled;
1220}
1221
1222void CaptureEvent::initialize(const CaptureEvent& from) {
1223 InputEvent::initialize(from);
1224 mPointerCaptureEnabled = from.mPointerCaptureEnabled;
1225}
1226
arthurhung7632c332020-12-30 16:58:01 +08001227// --- DragEvent ---
1228
1229void DragEvent::initialize(int32_t id, float x, float y, bool isExiting) {
1230 InputEvent::initialize(id, ReservedInputDeviceId::VIRTUAL_KEYBOARD_ID, AINPUT_SOURCE_UNKNOWN,
Siarhei Vishniakoucfbee532024-05-10 13:41:35 -07001231 ui::LogicalDisplayId::INVALID, INVALID_HMAC);
arthurhung7632c332020-12-30 16:58:01 +08001232 mIsExiting = isExiting;
1233 mX = x;
1234 mY = y;
1235}
1236
1237void DragEvent::initialize(const DragEvent& from) {
1238 InputEvent::initialize(from);
1239 mIsExiting = from.mIsExiting;
1240 mX = from.mX;
1241 mY = from.mY;
1242}
1243
Antonio Kantek7cdf8ef2021-07-13 18:04:53 -07001244// --- TouchModeEvent ---
1245
1246void TouchModeEvent::initialize(int32_t id, bool isInTouchMode) {
1247 InputEvent::initialize(id, ReservedInputDeviceId::VIRTUAL_KEYBOARD_ID, AINPUT_SOURCE_UNKNOWN,
Siarhei Vishniakoucfbee532024-05-10 13:41:35 -07001248 ui::LogicalDisplayId::INVALID, INVALID_HMAC);
Antonio Kantek7cdf8ef2021-07-13 18:04:53 -07001249 mIsInTouchMode = isInTouchMode;
1250}
1251
1252void TouchModeEvent::initialize(const TouchModeEvent& from) {
1253 InputEvent::initialize(from);
1254 mIsInTouchMode = from.mIsInTouchMode;
1255}
1256
Jeff Brown5912f952013-07-01 19:10:31 -07001257// --- PooledInputEventFactory ---
1258
1259PooledInputEventFactory::PooledInputEventFactory(size_t maxPoolSize) :
1260 mMaxPoolSize(maxPoolSize) {
1261}
1262
1263PooledInputEventFactory::~PooledInputEventFactory() {
Jeff Brown5912f952013-07-01 19:10:31 -07001264}
1265
1266KeyEvent* PooledInputEventFactory::createKeyEvent() {
Siarhei Vishniakou727a44e2019-11-23 12:59:16 -08001267 if (mKeyEventPool.empty()) {
1268 return new KeyEvent();
Jeff Brown5912f952013-07-01 19:10:31 -07001269 }
Siarhei Vishniakou727a44e2019-11-23 12:59:16 -08001270 KeyEvent* event = mKeyEventPool.front().release();
1271 mKeyEventPool.pop();
1272 return event;
Jeff Brown5912f952013-07-01 19:10:31 -07001273}
1274
1275MotionEvent* PooledInputEventFactory::createMotionEvent() {
Siarhei Vishniakou727a44e2019-11-23 12:59:16 -08001276 if (mMotionEventPool.empty()) {
1277 return new MotionEvent();
Jeff Brown5912f952013-07-01 19:10:31 -07001278 }
Siarhei Vishniakou727a44e2019-11-23 12:59:16 -08001279 MotionEvent* event = mMotionEventPool.front().release();
1280 mMotionEventPool.pop();
1281 return event;
Jeff Brown5912f952013-07-01 19:10:31 -07001282}
1283
Siarhei Vishniakou7feb2ea2019-11-25 15:11:23 -08001284FocusEvent* PooledInputEventFactory::createFocusEvent() {
1285 if (mFocusEventPool.empty()) {
1286 return new FocusEvent();
1287 }
1288 FocusEvent* event = mFocusEventPool.front().release();
1289 mFocusEventPool.pop();
1290 return event;
1291}
1292
Prabir Pradhan3f37b7b2020-11-10 16:50:18 -08001293CaptureEvent* PooledInputEventFactory::createCaptureEvent() {
1294 if (mCaptureEventPool.empty()) {
1295 return new CaptureEvent();
1296 }
1297 CaptureEvent* event = mCaptureEventPool.front().release();
1298 mCaptureEventPool.pop();
1299 return event;
1300}
1301
arthurhung7632c332020-12-30 16:58:01 +08001302DragEvent* PooledInputEventFactory::createDragEvent() {
1303 if (mDragEventPool.empty()) {
1304 return new DragEvent();
1305 }
1306 DragEvent* event = mDragEventPool.front().release();
1307 mDragEventPool.pop();
1308 return event;
1309}
1310
Antonio Kantek7cdf8ef2021-07-13 18:04:53 -07001311TouchModeEvent* PooledInputEventFactory::createTouchModeEvent() {
1312 if (mTouchModeEventPool.empty()) {
1313 return new TouchModeEvent();
1314 }
1315 TouchModeEvent* event = mTouchModeEventPool.front().release();
1316 mTouchModeEventPool.pop();
1317 return event;
1318}
1319
Jeff Brown5912f952013-07-01 19:10:31 -07001320void PooledInputEventFactory::recycle(InputEvent* event) {
1321 switch (event->getType()) {
Siarhei Vishniakou63b63612023-04-12 11:00:23 -07001322 case InputEventType::KEY: {
1323 if (mKeyEventPool.size() < mMaxPoolSize) {
1324 mKeyEventPool.push(std::unique_ptr<KeyEvent>(static_cast<KeyEvent*>(event)));
1325 return;
1326 }
1327 break;
Jeff Brown5912f952013-07-01 19:10:31 -07001328 }
Siarhei Vishniakou63b63612023-04-12 11:00:23 -07001329 case InputEventType::MOTION: {
1330 if (mMotionEventPool.size() < mMaxPoolSize) {
1331 mMotionEventPool.push(
1332 std::unique_ptr<MotionEvent>(static_cast<MotionEvent*>(event)));
1333 return;
1334 }
1335 break;
Jeff Brown5912f952013-07-01 19:10:31 -07001336 }
Siarhei Vishniakou63b63612023-04-12 11:00:23 -07001337 case InputEventType::FOCUS: {
1338 if (mFocusEventPool.size() < mMaxPoolSize) {
1339 mFocusEventPool.push(std::unique_ptr<FocusEvent>(static_cast<FocusEvent*>(event)));
1340 return;
1341 }
1342 break;
Siarhei Vishniakou7feb2ea2019-11-25 15:11:23 -08001343 }
Siarhei Vishniakou63b63612023-04-12 11:00:23 -07001344 case InputEventType::CAPTURE: {
1345 if (mCaptureEventPool.size() < mMaxPoolSize) {
1346 mCaptureEventPool.push(
1347 std::unique_ptr<CaptureEvent>(static_cast<CaptureEvent*>(event)));
1348 return;
1349 }
1350 break;
Prabir Pradhan3f37b7b2020-11-10 16:50:18 -08001351 }
Siarhei Vishniakou63b63612023-04-12 11:00:23 -07001352 case InputEventType::DRAG: {
1353 if (mDragEventPool.size() < mMaxPoolSize) {
1354 mDragEventPool.push(std::unique_ptr<DragEvent>(static_cast<DragEvent*>(event)));
1355 return;
1356 }
1357 break;
arthurhung7632c332020-12-30 16:58:01 +08001358 }
Siarhei Vishniakou63b63612023-04-12 11:00:23 -07001359 case InputEventType::TOUCH_MODE: {
1360 if (mTouchModeEventPool.size() < mMaxPoolSize) {
1361 mTouchModeEventPool.push(
1362 std::unique_ptr<TouchModeEvent>(static_cast<TouchModeEvent*>(event)));
1363 return;
1364 }
1365 break;
Antonio Kantekeb4a30c2021-09-28 17:49:49 -07001366 }
Jeff Brown5912f952013-07-01 19:10:31 -07001367 }
1368 delete event;
1369}
1370
1371} // namespace android