xref: /aosp_15_r20/frameworks/native/libs/input/Input.cpp (revision 38e8c45f13ce32b0dcecb25141ffecaf386fa17f)
1 /*
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 
20 #include <attestation/HmacKeyManager.h>
21 #include <cutils/compiler.h>
22 #include <inttypes.h>
23 #include <string.h>
24 #include <optional>
25 
26 #include <android-base/file.h>
27 #include <android-base/logging.h>
28 #include <android-base/stringprintf.h>
29 #include <cutils/compiler.h>
30 #include <input/DisplayViewport.h>
31 #include <input/Input.h>
32 #include <input/InputDevice.h>
33 #include <input/InputEventLabels.h>
34 
35 #include <binder/Parcel.h>
36 #if defined(__ANDROID__)
37 #include <sys/random.h>
38 #endif
39 
40 using android::base::StringPrintf;
41 
42 namespace android {
43 
44 namespace {
45 
shouldDisregardTransformation(uint32_t source)46 bool shouldDisregardTransformation(uint32_t source) {
47     // Do not apply any transformations to axes from joysticks, touchpads, or relative mice.
48     return isFromSource(source, AINPUT_SOURCE_CLASS_JOYSTICK) ||
49             isFromSource(source, AINPUT_SOURCE_CLASS_POSITION) ||
50             isFromSource(source, AINPUT_SOURCE_MOUSE_RELATIVE);
51 }
52 
shouldDisregardOffset(uint32_t source)53 bool shouldDisregardOffset(uint32_t source) {
54     // 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.
57     return !isFromSource(source, AINPUT_SOURCE_CLASS_POINTER);
58 }
59 
resolveActionForSplitMotionEvent(int32_t action,int32_t flags,const std::vector<PointerProperties> & pointerProperties,const std::vector<PointerProperties> & splitPointerProperties)60 int32_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 
transformOrientation(const ui::Transform & transform,const PointerCoords & coords,int32_t motionEventFlags)99 float 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 
112 } // namespace
113 
motionClassificationToString(MotionClassification classification)114 const 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";
122         case MotionClassification::TWO_FINGER_SWIPE:
123             return "TWO_FINGER_SWIPE";
124         case MotionClassification::MULTI_FINGER_SWIPE:
125             return "MULTI_FINGER_SWIPE";
126         case MotionClassification::PINCH:
127             return "PINCH";
128     }
129 }
130 
131 // --- IdGenerator ---
132 #if defined(__ANDROID__)
133 [[maybe_unused]]
134 #endif
135 static status_t
getRandomBytes(uint8_t * data,size_t size)136 getRandomBytes(uint8_t* data, size_t size) {
137     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 
IdGenerator(Source source)149 IdGenerator::IdGenerator(Source source) : mSource(source) {}
150 
nextId() const151 int32_t IdGenerator::nextId() const {
152     constexpr uint32_t SEQUENCE_NUMBER_MASK = ~SOURCE_MASK;
153     int32_t id = 0;
154 
155 #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
169 #if defined(__linux__)
170     // On host, <sys/random.h> / GRND_NONBLOCK is not available
171     while (true) {
172         status_t result = getRandomBytes(reinterpret_cast<uint8_t*>(&id), sizeof(id));
173         if (result == OK) {
174             break;
175         }
176     }
177 #endif // __linux__
178 #endif // __ANDROID__
179     return (id & SEQUENCE_NUMBER_MASK) | static_cast<int32_t>(mSource);
180 }
181 
182 // --- InputEvent ---
183 
184 // 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.
roundTransformedCoords(float val)187 inline 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 
roundTransformedCoords(vec2 p)193 inline vec2 roundTransformedCoords(vec2 p) {
194     return {roundTransformedCoords(p.x), roundTransformedCoords(p.y)};
195 }
196 
transformWithoutTranslation(const ui::Transform & transform,const vec2 & xy)197 vec2 transformWithoutTranslation(const ui::Transform& transform, const vec2& xy) {
198     const vec2 transformedXy = transform.transform(xy);
199     const vec2 transformedOrigin = transform.transform(0, 0);
200     return roundTransformedCoords(transformedXy - transformedOrigin);
201 }
202 
transformAngle(const ui::Transform & transform,float angleRadians,bool isDirectional)203 float transformAngle(const ui::Transform& transform, float angleRadians, bool isDirectional) {
204     // 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 
217     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 
222     // 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 
inputEventSourceToString(int32_t source)227 std::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 
isFromSource(uint32_t source,uint32_t test)266 bool isFromSource(uint32_t source, uint32_t test) {
267     return (source & test) == test;
268 }
269 
isStylusToolType(ToolType toolType)270 bool isStylusToolType(ToolType toolType) {
271     return toolType == ToolType::STYLUS || toolType == ToolType::ERASER;
272 }
273 
isStylusEvent(uint32_t source,const std::vector<PointerProperties> & properties)274 bool 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 
verifiedKeyEventFromKeyEvent(const KeyEvent & event)287 VerifiedKeyEvent verifiedKeyEventFromKeyEvent(const KeyEvent& event) {
288     return {{VerifiedInputEvent::Type::KEY, event.getDeviceId(), event.getEventTime(),
289              event.getSource(), event.getDisplayId()},
290             event.getAction(),
291             event.getFlags() & VERIFIED_KEY_EVENT_FLAGS,
292             event.getDownTime(),
293             event.getKeyCode(),
294             event.getScanCode(),
295             event.getMetaState(),
296             event.getRepeatCount()};
297 }
298 
verifiedMotionEventFromMotionEvent(const MotionEvent & event)299 VerifiedMotionEvent 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(),
305             event.getFlags() & VERIFIED_MOTION_EVENT_FLAGS,
306             event.getDownTime(),
307             event.getMetaState(),
308             event.getButtonState()};
309 }
310 
initialize(int32_t id,int32_t deviceId,uint32_t source,ui::LogicalDisplayId displayId,std::array<uint8_t,32> hmac)311 void InputEvent::initialize(int32_t id, int32_t deviceId, uint32_t source,
312                             ui::LogicalDisplayId displayId, std::array<uint8_t, 32> hmac) {
313     mId = id;
314     mDeviceId = deviceId;
315     mSource = source;
316     mDisplayId = displayId;
317     mHmac = hmac;
318 }
319 
initialize(const InputEvent & from)320 void InputEvent::initialize(const InputEvent& from) {
321     mId = from.mId;
322     mDeviceId = from.mDeviceId;
323     mSource = from.mSource;
324     mDisplayId = from.mDisplayId;
325     mHmac = from.mHmac;
326 }
327 
nextId()328 int32_t InputEvent::nextId() {
329     static IdGenerator idGen(IdGenerator::Source::OTHER);
330     return idGen.nextId();
331 }
332 
operator <<(std::ostream & out,const InputEvent & event)333 std::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 
364 // --- KeyEvent ---
365 
getLabel(int32_t keyCode)366 const char* KeyEvent::getLabel(int32_t keyCode) {
367     return InputEventLookup::getLabelByKeyCode(keyCode);
368 }
369 
getKeyCodeFromLabel(const char * label)370 std::optional<int> KeyEvent::getKeyCodeFromLabel(const char* label) {
371     return InputEventLookup::getKeyCodeByLabel(label);
372 }
373 
initialize(int32_t id,int32_t deviceId,uint32_t source,ui::LogicalDisplayId displayId,std::array<uint8_t,32> hmac,int32_t action,int32_t flags,int32_t keyCode,int32_t scanCode,int32_t metaState,int32_t repeatCount,nsecs_t downTime,nsecs_t eventTime)374 void 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) {
379     InputEvent::initialize(id, deviceId, source, displayId, hmac);
380     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 
initialize(const KeyEvent & from)390 void 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 
actionToString(int32_t action)402 const 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 }
414 
operator <<(std::ostream & out,const KeyEvent & event)415 std::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();
432     out << ", eventId=0x" << std::hex << event.getId() << std::dec;
433     out << "}";
434     return out;
435 }
436 
operator <<(std::ostream & out,const PointerProperties & properties)437 std::ostream& operator<<(std::ostream& out, const PointerProperties& properties) {
438     out << "Pointer(id=" << properties.id << ", " << ftl::enum_string(properties.toolType) << ")";
439     return out;
440 }
441 
442 // --- PointerCoords ---
443 
getAxisValue(int32_t axis) const444 float PointerCoords::getAxisValue(int32_t axis) const {
445     if (axis < 0 || axis > 63 || !BitSet64::hasBit(bits, axis)){
446         return 0;
447     }
448     return values[BitSet64::getIndexOfBit(bits, axis)];
449 }
450 
setAxisValue(int32_t axis,float value)451 status_t PointerCoords::setAxisValue(int32_t axis, float value) {
452     if (axis < 0 || axis > 63) {
453         return NAME_NOT_FOUND;
454     }
455 
456     uint32_t index = BitSet64::getIndexOfBit(bits, axis);
457     if (!BitSet64::hasBit(bits, axis)) {
458         if (value == 0) {
459             return OK; // axes with value 0 do not need to be stored
460         }
461 
462         uint32_t count = BitSet64::count(bits);
463         if (count >= MAX_AXES) {
464             tooManyAxes(axis);
465             return NO_MEMORY;
466         }
467         BitSet64::markBit(bits, axis);
468         for (uint32_t i = count; i > index; i--) {
469             values[i] = values[i - 1];
470         }
471     }
472 
473     values[index] = value;
474     return OK;
475 }
476 
scaleAxisValue(PointerCoords & c,int axis,float scaleFactor)477 static 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 
scale(float globalScaleFactor,float windowXScale,float windowYScale)484 void PointerCoords::scale(float globalScaleFactor, float windowXScale, float windowYScale) {
485     // No need to scale pressure or size since they are normalized.
486     // No need to scale orientation since it is meaningless to do so.
487 
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);
498     scaleAxisValue(*this, AMOTION_EVENT_AXIS_RELATIVE_X, windowXScale);
499     scaleAxisValue(*this, AMOTION_EVENT_AXIS_RELATIVE_Y, windowYScale);
500 }
501 
readFromParcel(Parcel * parcel)502 status_t PointerCoords::readFromParcel(Parcel* parcel) {
503     bits = parcel->readInt64();
504 
505     uint32_t count = BitSet64::count(bits);
506     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     }
513 
514     isResampled = parcel->readBool();
515     return OK;
516 }
517 
writeToParcel(Parcel * parcel) const518 status_t PointerCoords::writeToParcel(Parcel* parcel) const {
519     parcel->writeInt64(bits);
520 
521     uint32_t count = BitSet64::count(bits);
522     for (uint32_t i = 0; i < count; i++) {
523         parcel->writeFloat(values[i]);
524     }
525 
526     parcel->writeBool(isResampled);
527     return OK;
528 }
529 
tooManyAxes(int axis)530 void 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 
operator ==(const PointerCoords & other) const535 bool PointerCoords::operator==(const PointerCoords& other) const {
536     if (bits != other.bits) {
537         return false;
538     }
539     uint32_t count = BitSet64::count(bits);
540     for (uint32_t i = 0; i < count; i++) {
541         if (values[i] != other.values[i]) {
542             return false;
543         }
544     }
545     if (isResampled != other.isResampled) {
546         return false;
547     }
548     return true;
549 }
550 
551 // --- MotionEvent ---
552 
initialize(int32_t id,int32_t deviceId,uint32_t source,ui::LogicalDisplayId displayId,std::array<uint8_t,32> hmac,int32_t action,int32_t actionButton,int32_t flags,int32_t edgeFlags,int32_t metaState,int32_t buttonState,MotionClassification classification,const ui::Transform & transform,float xPrecision,float yPrecision,float rawXCursorPosition,float rawYCursorPosition,const ui::Transform & rawTransform,nsecs_t downTime,nsecs_t eventTime,size_t pointerCount,const PointerProperties * pointerProperties,const PointerCoords * pointerCoords)553 void 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,
562                              const PointerCoords* pointerCoords) {
563     InputEvent::initialize(id, deviceId, source, displayId, hmac);
564     mAction = action;
565     mActionButton = actionButton;
566     mFlags = flags;
567     mEdgeFlags = edgeFlags;
568     mMetaState = metaState;
569     mButtonState = buttonState;
570     mClassification = classification;
571     mTransform = transform;
572     mXPrecision = xPrecision;
573     mYPrecision = yPrecision;
574     mRawXCursorPosition = rawXCursorPosition;
575     mRawYCursorPosition = rawYCursorPosition;
576     mRawTransform = rawTransform;
577     mDownTime = downTime;
578     mPointerProperties.clear();
579     mPointerProperties.insert(mPointerProperties.end(), &pointerProperties[0],
580                               &pointerProperties[pointerCount]);
581     mSampleEventTimes.clear();
582     mSamplePointerCoords.clear();
583     addSample(eventTime, pointerCoords, mId);
584 }
585 
copyFrom(const MotionEvent * other,bool keepHistory)586 void MotionEvent::copyFrom(const MotionEvent* other, bool keepHistory) {
587     InputEvent::initialize(other->mId, other->mDeviceId, other->mSource, other->mDisplayId,
588                            other->mHmac);
589     mAction = other->mAction;
590     mActionButton = other->mActionButton;
591     mFlags = other->mFlags;
592     mEdgeFlags = other->mEdgeFlags;
593     mMetaState = other->mMetaState;
594     mButtonState = other->mButtonState;
595     mClassification = other->mClassification;
596     mTransform = other->mTransform;
597     mXPrecision = other->mXPrecision;
598     mYPrecision = other->mYPrecision;
599     mRawXCursorPosition = other->mRawXCursorPosition;
600     mRawYCursorPosition = other->mRawYCursorPosition;
601     mRawTransform = other->mRawTransform;
602     mDownTime = other->mDownTime;
603     mPointerProperties = other->mPointerProperties;
604 
605     if (keepHistory) {
606         mSampleEventTimes = other->mSampleEventTimes;
607         mSamplePointerCoords = other->mSamplePointerCoords;
608     } else {
609         mSampleEventTimes.clear();
610         mSampleEventTimes.push_back(other->getEventTime());
611         mSamplePointerCoords.clear();
612         size_t pointerCount = other->getPointerCount();
613         size_t historySize = other->getHistorySize();
614         mSamplePointerCoords
615                 .insert(mSamplePointerCoords.end(),
616                         &other->mSamplePointerCoords[historySize * pointerCount],
617                         &other->mSamplePointerCoords[historySize * pointerCount + pointerCount]);
618     }
619 }
620 
splitFrom(const android::MotionEvent & other,std::bitset<MAX_POINTER_ID+1> splitPointerIds,int32_t newEventId)621 void 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 
addSample(int64_t eventTime,const PointerCoords * pointerCoords,int32_t eventId)643 void MotionEvent::addSample(int64_t eventTime, const PointerCoords* pointerCoords,
644                             int32_t eventId) {
645     mId = eventId;
646     mSampleEventTimes.push_back(eventTime);
647     mSamplePointerCoords.insert(mSamplePointerCoords.end(), &pointerCoords[0],
648                                 &pointerCoords[getPointerCount()]);
649 }
650 
getSurfaceRotation() const651 std::optional<ui::Rotation> MotionEvent::getSurfaceRotation() const {
652     // 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:
657             return ui::ROTATION_0;
658         case ui::Transform::ROT_90:
659             return ui::ROTATION_270;
660         case ui::Transform::ROT_180:
661             return ui::ROTATION_180;
662         case ui::Transform::ROT_270:
663             return ui::ROTATION_90;
664         default:
665             return std::nullopt;
666     }
667 }
668 
getXCursorPosition() const669 float MotionEvent::getXCursorPosition() const {
670     vec2 vals = mTransform.transform(getRawXCursorPosition(), getRawYCursorPosition());
671     return roundTransformedCoords(vals.x);
672 }
673 
getYCursorPosition() const674 float MotionEvent::getYCursorPosition() const {
675     vec2 vals = mTransform.transform(getRawXCursorPosition(), getRawYCursorPosition());
676     return roundTransformedCoords(vals.y);
677 }
678 
setCursorPosition(float x,float y)679 void MotionEvent::setCursorPosition(float x, float y) {
680     ui::Transform inverse = mTransform.inverse();
681     vec2 vals = inverse.transform(x, y);
682     mRawXCursorPosition = vals.x;
683     mRawYCursorPosition = vals.y;
684 }
685 
getRawPointerCoords(size_t pointerIndex) const686 const PointerCoords* MotionEvent::getRawPointerCoords(size_t pointerIndex) const {
687     if (CC_UNLIKELY(pointerIndex < 0 || pointerIndex >= getPointerCount())) {
688         LOG(FATAL) << __func__ << ": Invalid pointer index " << pointerIndex << " for "
689                    << safeDump();
690     }
691     const size_t position = getHistorySize() * getPointerCount() + pointerIndex;
692     if (CC_UNLIKELY(position < 0 || position >= mSamplePointerCoords.size())) {
693         LOG(FATAL) << __func__ << ": Invalid array index " << position << " for " << safeDump();
694     }
695     return &mSamplePointerCoords[position];
696 }
697 
getRawAxisValue(int32_t axis,size_t pointerIndex) const698 float MotionEvent::getRawAxisValue(int32_t axis, size_t pointerIndex) const {
699     return getHistoricalRawAxisValue(axis, pointerIndex, getHistorySize());
700 }
701 
getAxisValue(int32_t axis,size_t pointerIndex) const702 float MotionEvent::getAxisValue(int32_t axis, size_t pointerIndex) const {
703     return getHistoricalAxisValue(axis, pointerIndex, getHistorySize());
704 }
705 
getHistoricalRawPointerCoords(size_t pointerIndex,size_t historicalIndex) const706 const PointerCoords* MotionEvent::getHistoricalRawPointerCoords(
707         size_t pointerIndex, size_t historicalIndex) const {
708     if (CC_UNLIKELY(pointerIndex < 0 || pointerIndex >= getPointerCount())) {
709         LOG(FATAL) << __func__ << ": Invalid pointer index " << pointerIndex << " for "
710                    << safeDump();
711     }
712     if (CC_UNLIKELY(historicalIndex < 0 || historicalIndex > getHistorySize())) {
713         LOG(FATAL) << __func__ << ": Invalid historical index " << historicalIndex << " for "
714                    << safeDump();
715     }
716     const size_t position = historicalIndex * getPointerCount() + pointerIndex;
717     if (CC_UNLIKELY(position < 0 || position >= mSamplePointerCoords.size())) {
718         LOG(FATAL) << __func__ << ": Invalid array index " << position << " for " << safeDump();
719     }
720     return &mSamplePointerCoords[position];
721 }
722 
getHistoricalRawAxisValue(int32_t axis,size_t pointerIndex,size_t historicalIndex) const723 float MotionEvent::getHistoricalRawAxisValue(int32_t axis, size_t pointerIndex,
724                                              size_t historicalIndex) const {
725     const PointerCoords& coords = *getHistoricalRawPointerCoords(pointerIndex, historicalIndex);
726     return calculateTransformedAxisValue(axis, mSource, mFlags, mRawTransform, coords);
727 }
728 
getHistoricalAxisValue(int32_t axis,size_t pointerIndex,size_t historicalIndex) const729 float MotionEvent::getHistoricalAxisValue(int32_t axis, size_t pointerIndex,
730                                           size_t historicalIndex) const {
731     const PointerCoords& coords = *getHistoricalRawPointerCoords(pointerIndex, historicalIndex);
732     return calculateTransformedAxisValue(axis, mSource, mFlags, mTransform, coords);
733 }
734 
findPointerIndex(int32_t pointerId) const735 ssize_t MotionEvent::findPointerIndex(int32_t pointerId) const {
736     size_t pointerCount = mPointerProperties.size();
737     for (size_t i = 0; i < pointerCount; i++) {
738         if (mPointerProperties[i].id == pointerId) {
739             return i;
740         }
741     }
742     return -1;
743 }
744 
offsetLocation(float xOffset,float yOffset)745 void MotionEvent::offsetLocation(float xOffset, float yOffset) {
746     float currXOffset = mTransform.tx();
747     float currYOffset = mTransform.ty();
748     mTransform.set(currXOffset + xOffset, currYOffset + yOffset);
749 }
750 
getRawXOffset() const751 float 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 
getRawYOffset() const757 float 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 
scale(float globalScaleFactor)763 void MotionEvent::scale(float globalScaleFactor) {
764     mTransform.set(mTransform.tx() * globalScaleFactor, mTransform.ty() * globalScaleFactor);
765     mRawTransform.set(mRawTransform.tx() * globalScaleFactor,
766                       mRawTransform.ty() * globalScaleFactor);
767     mXPrecision *= globalScaleFactor;
768     mYPrecision *= globalScaleFactor;
769 
770     size_t numSamples = mSamplePointerCoords.size();
771     for (size_t i = 0; i < numSamples; i++) {
772         mSamplePointerCoords[i].scale(globalScaleFactor, globalScaleFactor, globalScaleFactor);
773     }
774 }
775 
transform(const std::array<float,9> & matrix)776 void MotionEvent::transform(const std::array<float, 9>& matrix) {
777     // We want to preserve the raw axes values stored in the PointerCoords, so we just update the
778     // transform using the values passed in.
779     ui::Transform newTransform;
780     newTransform.set(matrix);
781     mTransform = newTransform * mTransform;
782 }
783 
applyTransform(const std::array<float,9> & matrix)784 void MotionEvent::applyTransform(const std::array<float, 9>& matrix) {
785     ui::Transform transform;
786     transform.set(matrix);
787 
788     // Apply the transformation to all samples.
789     std::for_each(mSamplePointerCoords.begin(), mSamplePointerCoords.end(), [&](PointerCoords& c) {
790         calculateTransformedCoordsInPlace(c, mSource, mFlags, transform);
791     });
792 
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     }
799 }
800 
readFromParcel(ui::Transform & transform,const Parcel & parcel)801 static 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 
writeToParcel(const ui::Transform & transform,Parcel & parcel)814 static 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 
readFromParcel(Parcel * parcel)824 status_t MotionEvent::readFromParcel(Parcel* parcel) {
825     size_t pointerCount = parcel->readInt32();
826     size_t sampleCount = parcel->readInt32();
827     if (pointerCount == 0 || pointerCount > MAX_POINTERS ||
828             sampleCount == 0 || sampleCount > MAX_SAMPLES) {
829         return BAD_VALUE;
830     }
831 
832     mId = parcel->readInt32();
833     mDeviceId = parcel->readInt32();
834     mSource = parcel->readUint32();
835     mDisplayId = ui::LogicalDisplayId{parcel->readInt32()};
836     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());
842     mAction = parcel->readInt32();
843     mActionButton = parcel->readInt32();
844     mFlags = parcel->readInt32();
845     mEdgeFlags = parcel->readInt32();
846     mMetaState = parcel->readInt32();
847     mButtonState = parcel->readInt32();
848     mClassification = static_cast<MotionClassification>(parcel->readByte());
849 
850     result = android::readFromParcel(mTransform, *parcel);
851     if (result != OK) {
852         return result;
853     }
854     mXPrecision = parcel->readFloat();
855     mYPrecision = parcel->readFloat();
856     mRawXCursorPosition = parcel->readFloat();
857     mRawYCursorPosition = parcel->readFloat();
858 
859     result = android::readFromParcel(mRawTransform, *parcel);
860     if (result != OK) {
861         return result;
862     }
863     mDownTime = parcel->readInt64();
864 
865     mPointerProperties.clear();
866     mPointerProperties.reserve(pointerCount);
867     mSampleEventTimes.clear();
868     mSampleEventTimes.reserve(sampleCount);
869     mSamplePointerCoords.clear();
870     mSamplePointerCoords.reserve(sampleCount * pointerCount);
871 
872     for (size_t i = 0; i < pointerCount; i++) {
873         mPointerProperties.push_back({});
874         PointerProperties& properties = mPointerProperties.back();
875         properties.id = parcel->readInt32();
876         properties.toolType = static_cast<ToolType>(parcel->readInt32());
877     }
878 
879     while (sampleCount > 0) {
880         sampleCount--;
881         mSampleEventTimes.push_back(parcel->readInt64());
882         for (size_t i = 0; i < pointerCount; i++) {
883             mSamplePointerCoords.push_back({});
884             status_t status = mSamplePointerCoords.back().readFromParcel(parcel);
885             if (status) {
886                 return status;
887             }
888         }
889     }
890     return OK;
891 }
892 
writeToParcel(Parcel * parcel) const893 status_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 
900     parcel->writeInt32(mId);
901     parcel->writeInt32(mDeviceId);
902     parcel->writeUint32(mSource);
903     parcel->writeInt32(mDisplayId.val());
904     std::vector<uint8_t> hmac(mHmac.begin(), mHmac.end());
905     parcel->writeByteVector(hmac);
906     parcel->writeInt32(mAction);
907     parcel->writeInt32(mActionButton);
908     parcel->writeInt32(mFlags);
909     parcel->writeInt32(mEdgeFlags);
910     parcel->writeInt32(mMetaState);
911     parcel->writeInt32(mButtonState);
912     parcel->writeByte(static_cast<int8_t>(mClassification));
913 
914     status_t result = android::writeToParcel(mTransform, *parcel);
915     if (result != OK) {
916         return result;
917     }
918     parcel->writeFloat(mXPrecision);
919     parcel->writeFloat(mYPrecision);
920     parcel->writeFloat(mRawXCursorPosition);
921     parcel->writeFloat(mRawYCursorPosition);
922 
923     result = android::writeToParcel(mRawTransform, *parcel);
924     if (result != OK) {
925         return result;
926     }
927     parcel->writeInt64(mDownTime);
928 
929     for (size_t i = 0; i < pointerCount; i++) {
930         const PointerProperties& properties = mPointerProperties[i];
931         parcel->writeInt32(properties.id);
932         parcel->writeInt32(static_cast<int32_t>(properties.toolType));
933     }
934 
935     const PointerCoords* pc = mSamplePointerCoords.data();
936     for (size_t h = 0; h < sampleCount; h++) {
937         parcel->writeInt64(mSampleEventTimes[h]);
938         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 }
947 
isTouchEvent(uint32_t source,int32_t action)948 bool MotionEvent::isTouchEvent(uint32_t source, int32_t action) {
949     if (isFromSource(source, AINPUT_SOURCE_CLASS_POINTER)) {
950         // 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 
getLabel(int32_t axis)965 const char* MotionEvent::getLabel(int32_t axis) {
966     return InputEventLookup::getAxisLabel(axis);
967 }
968 
getAxisFromLabel(const char * label)969 std::optional<int> MotionEvent::getAxisFromLabel(const char* label) {
970     return InputEventLookup::getAxisByLabel(label);
971 }
972 
actionToString(int32_t action)973 std::string MotionEvent::actionToString(int32_t action) {
974     // Convert MotionEvent action to string
975     switch (action & AMOTION_EVENT_ACTION_MASK) {
976         case AMOTION_EVENT_ACTION_DOWN:
977             return "DOWN";
978         case AMOTION_EVENT_ACTION_UP:
979             return "UP";
980         case AMOTION_EVENT_ACTION_MOVE:
981             return "MOVE";
982         case AMOTION_EVENT_ACTION_CANCEL:
983             return "CANCEL";
984         case AMOTION_EVENT_ACTION_OUTSIDE:
985             return "OUTSIDE";
986         case AMOTION_EVENT_ACTION_POINTER_DOWN:
987             return StringPrintf("POINTER_DOWN(%" PRId32 ")", MotionEvent::getActionIndex(action));
988         case AMOTION_EVENT_ACTION_POINTER_UP:
989             return StringPrintf("POINTER_UP(%" PRId32 ")", MotionEvent::getActionIndex(action));
990         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";
1002     }
1003     return android::base::StringPrintf("%" PRId32, action);
1004 }
1005 
split(int32_t action,int32_t flags,int32_t historySize,const std::vector<PointerProperties> & pointerProperties,const std::vector<PointerCoords> & pointerCoords,std::bitset<MAX_POINTER_ID+1> splitPointerIds)1006 std::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)) {
1033         // 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
1035                    << " 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 
1046 // Apply the given transformation to the point without checking whether the entire transform
1047 // should be disregarded altogether for the provided source.
calculateTransformedXYUnchecked(uint32_t source,const ui::Transform & transform,const vec2 & xy)1048 static inline vec2 calculateTransformedXYUnchecked(uint32_t source, const ui::Transform& transform,
1049                                                    const vec2& xy) {
1050     return shouldDisregardOffset(source) ? transformWithoutTranslation(transform, xy)
1051                                          : roundTransformedCoords(transform.transform(xy));
1052 }
1053 
calculateTransformedXY(uint32_t source,const ui::Transform & transform,const vec2 & xy)1054 vec2 MotionEvent::calculateTransformedXY(uint32_t source, const ui::Transform& transform,
1055                                          const vec2& xy) {
1056     if (shouldDisregardTransformation(source)) {
1057         return xy;
1058     }
1059     return calculateTransformedXYUnchecked(source, transform, xy);
1060 }
1061 
1062 // Keep in sync with calculateTransformedCoords.
calculateTransformedAxisValue(int32_t axis,uint32_t source,int32_t flags,const ui::Transform & transform,const PointerCoords & coords)1063 float MotionEvent::calculateTransformedAxisValue(int32_t axis, uint32_t source, int32_t flags,
1064                                                  const ui::Transform& transform,
1065                                                  const PointerCoords& coords) {
1066     if (shouldDisregardTransformation(source)) {
1067         return coords.getAxisValue(axis);
1068     }
1069 
1070     if (axis == AMOTION_EVENT_AXIS_X || axis == AMOTION_EVENT_AXIS_Y) {
1071         const vec2 xy = calculateTransformedXYUnchecked(source, transform, coords.getXYValue());
1072         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) {
1085         return transformOrientation(transform, coords, flags);
1086     }
1087 
1088     return coords.getAxisValue(axis);
1089 }
1090 
1091 // Keep in sync with calculateTransformedAxisValue. This is an optimization of
1092 // calculateTransformedAxisValue for all PointerCoords axes.
calculateTransformedCoordsInPlace(PointerCoords & coords,uint32_t source,int32_t flags,const ui::Transform & transform)1093 void MotionEvent::calculateTransformedCoordsInPlace(PointerCoords& coords, uint32_t source,
1094                                                     int32_t flags, const ui::Transform& transform) {
1095     if (shouldDisregardTransformation(source)) {
1096         return;
1097     }
1098 
1099     const vec2 xy = calculateTransformedXYUnchecked(source, transform, coords.getXYValue());
1100     coords.setAxisValue(AMOTION_EVENT_AXIS_X, xy.x);
1101     coords.setAxisValue(AMOTION_EVENT_AXIS_Y, xy.y);
1102 
1103     const vec2 relativeXy =
1104             transformWithoutTranslation(transform,
1105                                         {coords.getAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X),
1106                                          coords.getAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y)});
1107     coords.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X, relativeXy.x);
1108     coords.setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y, relativeXy.y);
1109 
1110     coords.setAxisValue(AMOTION_EVENT_AXIS_ORIENTATION,
1111                         transformOrientation(transform, coords, flags));
1112 }
1113 
calculateTransformedCoords(uint32_t source,int32_t flags,const ui::Transform & transform,const PointerCoords & coords)1114 PointerCoords 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);
1119     return out;
1120 }
1121 
operator ==(const android::MotionEvent & o) const1122 bool 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 
safeDump() const1149 std::string MotionEvent::safeDump() const {
1150     std::stringstream out;
1151     // Field names have the m prefix here to make it easy to distinguish safeDump output from
1152     // operator<< output in logs.
1153     out << "MotionEvent { mAction=" << MotionEvent::actionToString(mAction);
1154     if (mActionButton != 0) {
1155         out << ", mActionButton=" << mActionButton;
1156     }
1157     if (mButtonState != 0) {
1158         out << ", mButtonState=" << mButtonState;
1159     }
1160     if (mClassification != MotionClassification::NONE) {
1161         out << ", mClassification=" << motionClassificationToString(mClassification);
1162     }
1163     if (mMetaState != 0) {
1164         out << ", mMetaState=" << mMetaState;
1165     }
1166     if (mFlags != 0) {
1167         out << ", mFlags=0x" << std::hex << mFlags << std::dec;
1168     }
1169     if (mEdgeFlags != 0) {
1170         out << ", mEdgeFlags=" << mEdgeFlags;
1171     }
1172     out << ", mDownTime=" << mDownTime;
1173     out << ", mDeviceId=" << mDeviceId;
1174     out << ", mSource=" << inputEventSourceToString(mSource);
1175     out << ", mDisplayId=" << mDisplayId;
1176     out << ", mEventId=0x" << std::hex << mId << std::dec;
1177     // Since we're not assuming the data is at all valid, we also limit the number of items that
1178     // might be printed from vectors, in case the vector's size field is corrupted.
1179     out << ", mPointerProperties=(" << mPointerProperties.size() << ")[";
1180     for (size_t i = 0; i < mPointerProperties.size() && i < MAX_POINTERS; i++) {
1181         out << (i > 0 ? ", " : "") << mPointerProperties.at(i);
1182     }
1183     out << "], mSampleEventTimes=(" << mSampleEventTimes.size() << ")[";
1184     for (size_t i = 0; i < mSampleEventTimes.size() && i < 256; i++) {
1185         out << (i > 0 ? ", " : "") << mSampleEventTimes.at(i);
1186     }
1187     out << "], mSamplePointerCoords=(" << mSamplePointerCoords.size() << ")[";
1188     for (size_t i = 0; i < mSamplePointerCoords.size() && i < MAX_POINTERS; i++) {
1189         const PointerCoords& coords = mSamplePointerCoords.at(i);
1190         out << (i > 0 ? ", " : "") << "(" << coords.getX() << ", " << coords.getY() << ")";
1191     }
1192     out << "] }";
1193     return out.str();
1194 }
1195 
operator <<(std::ostream & out,const MotionEvent & event)1196 std::ostream& operator<<(std::ostream& out, const MotionEvent& event) {
1197     out << "MotionEvent { action=" << MotionEvent::actionToString(event.getAction());
1198     if (event.getActionButton() != 0) {
1199         out << ", actionButton=" << std::to_string(event.getActionButton());
1200     }
1201     const size_t pointerCount = event.getPointerCount();
1202     LOG_ALWAYS_FATAL_IF(pointerCount > MAX_POINTERS, "Too many pointers : pointerCount = %zu",
1203                         pointerCount);
1204     for (size_t i = 0; i < pointerCount; i++) {
1205         out << ", id[" << i << "]=" << event.getPointerId(i);
1206         float x = event.getX(i);
1207         float y = event.getY(i);
1208         if (x != 0 || y != 0) {
1209             out << ", x[" << i << "]=" << x;
1210             out << ", y[" << i << "]=" << y;
1211         }
1212         ToolType toolType = event.getToolType(i);
1213         if (toolType != ToolType::FINGER) {
1214             out << ", toolType[" << i << "]=" << ftl::enum_string(toolType);
1215         }
1216     }
1217     if (event.getButtonState() != 0) {
1218         out << ", buttonState=" << event.getButtonState();
1219     }
1220     if (event.getClassification() != MotionClassification::NONE) {
1221         out << ", classification=" << motionClassificationToString(event.getClassification());
1222     }
1223     if (event.getMetaState() != 0) {
1224         out << ", metaState=" << event.getMetaState();
1225     }
1226     if (event.getFlags() != 0) {
1227         out << ", flags=0x" << std::hex << event.getFlags() << std::dec;
1228     }
1229     if (event.getEdgeFlags() != 0) {
1230         out << ", edgeFlags=" << event.getEdgeFlags();
1231     }
1232     if (pointerCount != 1) {
1233         out << ", pointerCount=" << pointerCount;
1234     }
1235     if (event.getHistorySize() != 0) {
1236         out << ", historySize=" << event.getHistorySize();
1237     }
1238     out << ", eventTime=" << event.getEventTime();
1239     out << ", downTime=" << event.getDownTime();
1240     out << ", deviceId=" << event.getDeviceId();
1241     out << ", source=" << inputEventSourceToString(event.getSource());
1242     out << ", displayId=" << event.getDisplayId();
1243     out << ", eventId=0x" << std::hex << event.getId() << std::dec;
1244     out << "}";
1245     return out;
1246 }
1247 
1248 // --- FocusEvent ---
1249 
initialize(int32_t id,bool hasFocus)1250 void FocusEvent::initialize(int32_t id, bool hasFocus) {
1251     InputEvent::initialize(id, ReservedInputDeviceId::VIRTUAL_KEYBOARD_ID, AINPUT_SOURCE_UNKNOWN,
1252                            ui::LogicalDisplayId::INVALID, INVALID_HMAC);
1253     mHasFocus = hasFocus;
1254 }
1255 
initialize(const FocusEvent & from)1256 void FocusEvent::initialize(const FocusEvent& from) {
1257     InputEvent::initialize(from);
1258     mHasFocus = from.mHasFocus;
1259 }
1260 
1261 // --- CaptureEvent ---
1262 
initialize(int32_t id,bool pointerCaptureEnabled)1263 void CaptureEvent::initialize(int32_t id, bool pointerCaptureEnabled) {
1264     InputEvent::initialize(id, ReservedInputDeviceId::VIRTUAL_KEYBOARD_ID, AINPUT_SOURCE_UNKNOWN,
1265                            ui::LogicalDisplayId::INVALID, INVALID_HMAC);
1266     mPointerCaptureEnabled = pointerCaptureEnabled;
1267 }
1268 
initialize(const CaptureEvent & from)1269 void CaptureEvent::initialize(const CaptureEvent& from) {
1270     InputEvent::initialize(from);
1271     mPointerCaptureEnabled = from.mPointerCaptureEnabled;
1272 }
1273 
1274 // --- DragEvent ---
1275 
initialize(int32_t id,float x,float y,bool isExiting)1276 void DragEvent::initialize(int32_t id, float x, float y, bool isExiting) {
1277     InputEvent::initialize(id, ReservedInputDeviceId::VIRTUAL_KEYBOARD_ID, AINPUT_SOURCE_UNKNOWN,
1278                            ui::LogicalDisplayId::INVALID, INVALID_HMAC);
1279     mIsExiting = isExiting;
1280     mX = x;
1281     mY = y;
1282 }
1283 
initialize(const DragEvent & from)1284 void DragEvent::initialize(const DragEvent& from) {
1285     InputEvent::initialize(from);
1286     mIsExiting = from.mIsExiting;
1287     mX = from.mX;
1288     mY = from.mY;
1289 }
1290 
1291 // --- TouchModeEvent ---
1292 
initialize(int32_t id,bool isInTouchMode)1293 void TouchModeEvent::initialize(int32_t id, bool isInTouchMode) {
1294     InputEvent::initialize(id, ReservedInputDeviceId::VIRTUAL_KEYBOARD_ID, AINPUT_SOURCE_UNKNOWN,
1295                            ui::LogicalDisplayId::INVALID, INVALID_HMAC);
1296     mIsInTouchMode = isInTouchMode;
1297 }
1298 
initialize(const TouchModeEvent & from)1299 void TouchModeEvent::initialize(const TouchModeEvent& from) {
1300     InputEvent::initialize(from);
1301     mIsInTouchMode = from.mIsInTouchMode;
1302 }
1303 
1304 // --- PooledInputEventFactory ---
1305 
PooledInputEventFactory(size_t maxPoolSize)1306 PooledInputEventFactory::PooledInputEventFactory(size_t maxPoolSize) :
1307         mMaxPoolSize(maxPoolSize) {
1308 }
1309 
~PooledInputEventFactory()1310 PooledInputEventFactory::~PooledInputEventFactory() {
1311 }
1312 
createKeyEvent()1313 KeyEvent* PooledInputEventFactory::createKeyEvent() {
1314     if (mKeyEventPool.empty()) {
1315         return new KeyEvent();
1316     }
1317     KeyEvent* event = mKeyEventPool.front().release();
1318     mKeyEventPool.pop();
1319     return event;
1320 }
1321 
createMotionEvent()1322 MotionEvent* PooledInputEventFactory::createMotionEvent() {
1323     if (mMotionEventPool.empty()) {
1324         return new MotionEvent();
1325     }
1326     MotionEvent* event = mMotionEventPool.front().release();
1327     mMotionEventPool.pop();
1328     return event;
1329 }
1330 
createFocusEvent()1331 FocusEvent* PooledInputEventFactory::createFocusEvent() {
1332     if (mFocusEventPool.empty()) {
1333         return new FocusEvent();
1334     }
1335     FocusEvent* event = mFocusEventPool.front().release();
1336     mFocusEventPool.pop();
1337     return event;
1338 }
1339 
createCaptureEvent()1340 CaptureEvent* PooledInputEventFactory::createCaptureEvent() {
1341     if (mCaptureEventPool.empty()) {
1342         return new CaptureEvent();
1343     }
1344     CaptureEvent* event = mCaptureEventPool.front().release();
1345     mCaptureEventPool.pop();
1346     return event;
1347 }
1348 
createDragEvent()1349 DragEvent* PooledInputEventFactory::createDragEvent() {
1350     if (mDragEventPool.empty()) {
1351         return new DragEvent();
1352     }
1353     DragEvent* event = mDragEventPool.front().release();
1354     mDragEventPool.pop();
1355     return event;
1356 }
1357 
createTouchModeEvent()1358 TouchModeEvent* PooledInputEventFactory::createTouchModeEvent() {
1359     if (mTouchModeEventPool.empty()) {
1360         return new TouchModeEvent();
1361     }
1362     TouchModeEvent* event = mTouchModeEventPool.front().release();
1363     mTouchModeEventPool.pop();
1364     return event;
1365 }
1366 
recycle(InputEvent * event)1367 void PooledInputEventFactory::recycle(InputEvent* event) {
1368     switch (event->getType()) {
1369         case InputEventType::KEY: {
1370             if (mKeyEventPool.size() < mMaxPoolSize) {
1371                 mKeyEventPool.push(std::unique_ptr<KeyEvent>(static_cast<KeyEvent*>(event)));
1372                 return;
1373             }
1374             break;
1375         }
1376         case InputEventType::MOTION: {
1377             if (mMotionEventPool.size() < mMaxPoolSize) {
1378                 mMotionEventPool.push(
1379                         std::unique_ptr<MotionEvent>(static_cast<MotionEvent*>(event)));
1380                 return;
1381             }
1382             break;
1383         }
1384         case InputEventType::FOCUS: {
1385             if (mFocusEventPool.size() < mMaxPoolSize) {
1386                 mFocusEventPool.push(std::unique_ptr<FocusEvent>(static_cast<FocusEvent*>(event)));
1387                 return;
1388             }
1389             break;
1390         }
1391         case InputEventType::CAPTURE: {
1392             if (mCaptureEventPool.size() < mMaxPoolSize) {
1393                 mCaptureEventPool.push(
1394                         std::unique_ptr<CaptureEvent>(static_cast<CaptureEvent*>(event)));
1395                 return;
1396             }
1397             break;
1398         }
1399         case InputEventType::DRAG: {
1400             if (mDragEventPool.size() < mMaxPoolSize) {
1401                 mDragEventPool.push(std::unique_ptr<DragEvent>(static_cast<DragEvent*>(event)));
1402                 return;
1403             }
1404             break;
1405         }
1406         case InputEventType::TOUCH_MODE: {
1407             if (mTouchModeEventPool.size() < mMaxPoolSize) {
1408                 mTouchModeEventPool.push(
1409                         std::unique_ptr<TouchModeEvent>(static_cast<TouchModeEvent*>(event)));
1410                 return;
1411             }
1412             break;
1413         }
1414     }
1415     delete event;
1416 }
1417 
1418 } // namespace android
1419