Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 1 | /** |
| 2 | * Copyright 2024 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 | |
Paul Ramirez | e2bb187 | 2024-08-12 20:21:13 +0000 | [diff] [blame] | 17 | #define LOG_TAG "InputConsumerNoResampling" |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 18 | #define ATRACE_TAG ATRACE_TAG_INPUT |
| 19 | |
Paul Ramirez | be9c544 | 2024-07-10 00:12:41 +0000 | [diff] [blame] | 20 | #include <chrono> |
| 21 | |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 22 | #include <inttypes.h> |
| 23 | |
| 24 | #include <android-base/logging.h> |
| 25 | #include <android-base/properties.h> |
| 26 | #include <android-base/stringprintf.h> |
| 27 | #include <cutils/properties.h> |
| 28 | #include <ftl/enum.h> |
| 29 | #include <utils/Trace.h> |
| 30 | |
| 31 | #include <com_android_input_flags.h> |
| 32 | #include <input/InputConsumerNoResampling.h> |
| 33 | #include <input/PrintTools.h> |
| 34 | #include <input/TraceTools.h> |
| 35 | |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 36 | namespace android { |
| 37 | |
| 38 | namespace { |
| 39 | |
Paul Ramirez | cd7488c | 2024-09-13 23:01:12 +0000 | [diff] [blame] | 40 | using std::chrono::nanoseconds; |
| 41 | |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 42 | /** |
| 43 | * Log debug messages relating to the consumer end of the transport channel. |
| 44 | * Enable this via "adb shell setprop log.tag.InputTransportConsumer DEBUG" (requires restart) |
| 45 | */ |
| 46 | const bool DEBUG_TRANSPORT_CONSUMER = |
| 47 | __android_log_is_loggable(ANDROID_LOG_DEBUG, LOG_TAG "Consumer", ANDROID_LOG_INFO); |
| 48 | |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 49 | std::unique_ptr<KeyEvent> createKeyEvent(const InputMessage& msg) { |
| 50 | std::unique_ptr<KeyEvent> event = std::make_unique<KeyEvent>(); |
| 51 | event->initialize(msg.body.key.eventId, msg.body.key.deviceId, msg.body.key.source, |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 52 | ui::LogicalDisplayId{msg.body.key.displayId}, msg.body.key.hmac, |
| 53 | msg.body.key.action, msg.body.key.flags, msg.body.key.keyCode, |
| 54 | msg.body.key.scanCode, msg.body.key.metaState, msg.body.key.repeatCount, |
| 55 | msg.body.key.downTime, msg.body.key.eventTime); |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 56 | return event; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 57 | } |
| 58 | |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 59 | std::unique_ptr<FocusEvent> createFocusEvent(const InputMessage& msg) { |
| 60 | std::unique_ptr<FocusEvent> event = std::make_unique<FocusEvent>(); |
| 61 | event->initialize(msg.body.focus.eventId, msg.body.focus.hasFocus); |
| 62 | return event; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 63 | } |
| 64 | |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 65 | std::unique_ptr<CaptureEvent> createCaptureEvent(const InputMessage& msg) { |
| 66 | std::unique_ptr<CaptureEvent> event = std::make_unique<CaptureEvent>(); |
| 67 | event->initialize(msg.body.capture.eventId, msg.body.capture.pointerCaptureEnabled); |
| 68 | return event; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 69 | } |
| 70 | |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 71 | std::unique_ptr<DragEvent> createDragEvent(const InputMessage& msg) { |
| 72 | std::unique_ptr<DragEvent> event = std::make_unique<DragEvent>(); |
| 73 | event->initialize(msg.body.drag.eventId, msg.body.drag.x, msg.body.drag.y, |
| 74 | msg.body.drag.isExiting); |
| 75 | return event; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 76 | } |
| 77 | |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 78 | std::unique_ptr<MotionEvent> createMotionEvent(const InputMessage& msg) { |
| 79 | std::unique_ptr<MotionEvent> event = std::make_unique<MotionEvent>(); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 80 | const uint32_t pointerCount = msg.body.motion.pointerCount; |
| 81 | std::vector<PointerProperties> pointerProperties; |
| 82 | pointerProperties.reserve(pointerCount); |
| 83 | std::vector<PointerCoords> pointerCoords; |
| 84 | pointerCoords.reserve(pointerCount); |
| 85 | for (uint32_t i = 0; i < pointerCount; i++) { |
| 86 | pointerProperties.push_back(msg.body.motion.pointers[i].properties); |
| 87 | pointerCoords.push_back(msg.body.motion.pointers[i].coords); |
| 88 | } |
| 89 | |
| 90 | ui::Transform transform; |
| 91 | transform.set({msg.body.motion.dsdx, msg.body.motion.dtdx, msg.body.motion.tx, |
| 92 | msg.body.motion.dtdy, msg.body.motion.dsdy, msg.body.motion.ty, 0, 0, 1}); |
| 93 | ui::Transform displayTransform; |
| 94 | displayTransform.set({msg.body.motion.dsdxRaw, msg.body.motion.dtdxRaw, msg.body.motion.txRaw, |
| 95 | msg.body.motion.dtdyRaw, msg.body.motion.dsdyRaw, msg.body.motion.tyRaw, |
| 96 | 0, 0, 1}); |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 97 | event->initialize(msg.body.motion.eventId, msg.body.motion.deviceId, msg.body.motion.source, |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 98 | ui::LogicalDisplayId{msg.body.motion.displayId}, msg.body.motion.hmac, |
| 99 | msg.body.motion.action, msg.body.motion.actionButton, msg.body.motion.flags, |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 100 | msg.body.motion.edgeFlags, msg.body.motion.metaState, |
| 101 | msg.body.motion.buttonState, msg.body.motion.classification, transform, |
| 102 | msg.body.motion.xPrecision, msg.body.motion.yPrecision, |
| 103 | msg.body.motion.xCursorPosition, msg.body.motion.yCursorPosition, |
| 104 | displayTransform, msg.body.motion.downTime, msg.body.motion.eventTime, |
| 105 | pointerCount, pointerProperties.data(), pointerCoords.data()); |
| 106 | return event; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | void addSample(MotionEvent& event, const InputMessage& msg) { |
| 110 | uint32_t pointerCount = msg.body.motion.pointerCount; |
| 111 | std::vector<PointerCoords> pointerCoords; |
| 112 | pointerCoords.reserve(pointerCount); |
| 113 | for (uint32_t i = 0; i < pointerCount; i++) { |
| 114 | pointerCoords.push_back(msg.body.motion.pointers[i].coords); |
| 115 | } |
| 116 | |
| 117 | // TODO(b/329770983): figure out if it's safe to combine events with mismatching metaState |
| 118 | event.setMetaState(event.getMetaState() | msg.body.motion.metaState); |
jioana | 71c6f73 | 2024-07-16 15:42:56 +0000 | [diff] [blame] | 119 | event.addSample(msg.body.motion.eventTime, pointerCoords.data(), msg.body.motion.eventId); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 120 | } |
| 121 | |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 122 | std::unique_ptr<TouchModeEvent> createTouchModeEvent(const InputMessage& msg) { |
| 123 | std::unique_ptr<TouchModeEvent> event = std::make_unique<TouchModeEvent>(); |
| 124 | event->initialize(msg.body.touchMode.eventId, msg.body.touchMode.isInTouchMode); |
| 125 | return event; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | std::string outboundMessageToString(const InputMessage& outboundMsg) { |
| 129 | switch (outboundMsg.header.type) { |
| 130 | case InputMessage::Type::FINISHED: { |
| 131 | return android::base::StringPrintf(" Finish: seq=%" PRIu32 " handled=%s", |
| 132 | outboundMsg.header.seq, |
| 133 | toString(outboundMsg.body.finished.handled)); |
| 134 | } |
| 135 | case InputMessage::Type::TIMELINE: { |
| 136 | return android::base:: |
| 137 | StringPrintf(" Timeline: inputEventId=%" PRId32 " gpuCompletedTime=%" PRId64 |
| 138 | ", presentTime=%" PRId64, |
| 139 | outboundMsg.body.timeline.eventId, |
| 140 | outboundMsg.body.timeline |
| 141 | .graphicsTimeline[GraphicsTimeline::GPU_COMPLETED_TIME], |
| 142 | outboundMsg.body.timeline |
| 143 | .graphicsTimeline[GraphicsTimeline::PRESENT_TIME]); |
| 144 | } |
| 145 | default: { |
| 146 | LOG(FATAL) << "Outbound message must be FINISHED or TIMELINE, got " |
| 147 | << ftl::enum_string(outboundMsg.header.type); |
| 148 | return "Unreachable"; |
| 149 | } |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | InputMessage createFinishedMessage(uint32_t seq, bool handled, nsecs_t consumeTime) { |
| 154 | InputMessage msg; |
| 155 | msg.header.type = InputMessage::Type::FINISHED; |
| 156 | msg.header.seq = seq; |
| 157 | msg.body.finished.handled = handled; |
| 158 | msg.body.finished.consumeTime = consumeTime; |
| 159 | return msg; |
| 160 | } |
| 161 | |
| 162 | InputMessage createTimelineMessage(int32_t inputEventId, nsecs_t gpuCompletedTime, |
| 163 | nsecs_t presentTime) { |
| 164 | InputMessage msg; |
| 165 | msg.header.type = InputMessage::Type::TIMELINE; |
| 166 | msg.header.seq = 0; |
| 167 | msg.body.timeline.eventId = inputEventId; |
| 168 | msg.body.timeline.graphicsTimeline[GraphicsTimeline::GPU_COMPLETED_TIME] = gpuCompletedTime; |
| 169 | msg.body.timeline.graphicsTimeline[GraphicsTimeline::PRESENT_TIME] = presentTime; |
| 170 | return msg; |
| 171 | } |
| 172 | |
Paul Ramirez | be9c544 | 2024-07-10 00:12:41 +0000 | [diff] [blame] | 173 | bool isPointerEvent(const MotionEvent& motionEvent) { |
| 174 | return (motionEvent.getSource() & AINPUT_SOURCE_CLASS_POINTER) == AINPUT_SOURCE_CLASS_POINTER; |
| 175 | } |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 176 | } // namespace |
| 177 | |
| 178 | using android::base::Result; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 179 | |
| 180 | // --- InputConsumerNoResampling --- |
| 181 | |
| 182 | InputConsumerNoResampling::InputConsumerNoResampling(const std::shared_ptr<InputChannel>& channel, |
Paul Ramirez | 87f1c01 | 2024-09-18 18:23:14 +0000 | [diff] [blame^] | 183 | sp<Looper> looper, |
Paul Ramirez | be9c544 | 2024-07-10 00:12:41 +0000 | [diff] [blame] | 184 | InputConsumerCallbacks& callbacks, |
| 185 | std::unique_ptr<Resampler> resampler) |
Paul Ramirez | e2bb187 | 2024-08-12 20:21:13 +0000 | [diff] [blame] | 186 | : mChannel{channel}, |
| 187 | mLooper{looper}, |
Paul Ramirez | 87f1c01 | 2024-09-18 18:23:14 +0000 | [diff] [blame^] | 188 | mCallbacks{callbacks}, |
Paul Ramirez | e2bb187 | 2024-08-12 20:21:13 +0000 | [diff] [blame] | 189 | mResampler{std::move(resampler)}, |
Paul Ramirez | be9c544 | 2024-07-10 00:12:41 +0000 | [diff] [blame] | 190 | mFdEvents(0) { |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 191 | LOG_ALWAYS_FATAL_IF(mLooper == nullptr); |
| 192 | mCallback = sp<LooperEventCallback>::make( |
| 193 | std::bind(&InputConsumerNoResampling::handleReceiveCallback, this, |
| 194 | std::placeholders::_1)); |
| 195 | // In the beginning, there are no pending outbounds events; we only care about receiving |
| 196 | // incoming data. |
| 197 | setFdEvents(ALOOPER_EVENT_INPUT); |
| 198 | } |
| 199 | |
| 200 | InputConsumerNoResampling::~InputConsumerNoResampling() { |
| 201 | ensureCalledOnLooperThread(__func__); |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 202 | consumeBatchedInputEvents(/*requestedFrameTime=*/std::nullopt); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 203 | while (!mOutboundQueue.empty()) { |
| 204 | processOutboundEvents(); |
| 205 | // This is our last chance to ack the events. If we don't ack them here, we will get an ANR, |
| 206 | // so keep trying to send the events as long as they are present in the queue. |
| 207 | } |
| 208 | setFdEvents(0); |
| 209 | } |
| 210 | |
| 211 | int InputConsumerNoResampling::handleReceiveCallback(int events) { |
| 212 | // Allowed return values of this function as documented in LooperCallback::handleEvent |
| 213 | constexpr int REMOVE_CALLBACK = 0; |
| 214 | constexpr int KEEP_CALLBACK = 1; |
| 215 | |
| 216 | if (events & (ALOOPER_EVENT_ERROR | ALOOPER_EVENT_HANGUP)) { |
| 217 | // This error typically occurs when the publisher has closed the input channel |
| 218 | // as part of removing a window or finishing an IME session, in which case |
| 219 | // the consumer will soon be disposed as well. |
| 220 | if (DEBUG_TRANSPORT_CONSUMER) { |
| 221 | LOG(INFO) << "The channel was hung up or an error occurred: " << mChannel->getName(); |
| 222 | } |
| 223 | return REMOVE_CALLBACK; |
| 224 | } |
| 225 | |
| 226 | int handledEvents = 0; |
| 227 | if (events & ALOOPER_EVENT_INPUT) { |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 228 | handleMessages(readAllMessages()); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 229 | handledEvents |= ALOOPER_EVENT_INPUT; |
| 230 | } |
| 231 | |
| 232 | if (events & ALOOPER_EVENT_OUTPUT) { |
| 233 | processOutboundEvents(); |
| 234 | handledEvents |= ALOOPER_EVENT_OUTPUT; |
| 235 | } |
| 236 | if (handledEvents != events) { |
| 237 | LOG(FATAL) << "Mismatch: handledEvents=" << handledEvents << ", events=" << events; |
| 238 | } |
| 239 | return KEEP_CALLBACK; |
| 240 | } |
| 241 | |
| 242 | void InputConsumerNoResampling::processOutboundEvents() { |
| 243 | while (!mOutboundQueue.empty()) { |
| 244 | const InputMessage& outboundMsg = mOutboundQueue.front(); |
| 245 | |
| 246 | const status_t result = mChannel->sendMessage(&outboundMsg); |
| 247 | if (result == OK) { |
| 248 | if (outboundMsg.header.type == InputMessage::Type::FINISHED) { |
| 249 | ATRACE_ASYNC_END("InputConsumer processing", /*cookie=*/outboundMsg.header.seq); |
| 250 | } |
| 251 | // Successful send. Erase the entry and keep trying to send more |
| 252 | mOutboundQueue.pop(); |
| 253 | continue; |
| 254 | } |
| 255 | |
| 256 | // Publisher is busy, try again later. Keep this entry (do not erase) |
| 257 | if (result == WOULD_BLOCK) { |
| 258 | setFdEvents(ALOOPER_EVENT_INPUT | ALOOPER_EVENT_OUTPUT); |
| 259 | return; // try again later |
| 260 | } |
| 261 | |
| 262 | // Some other error. Give up |
| 263 | LOG(FATAL) << "Failed to send outbound event on channel '" << mChannel->getName() |
| 264 | << "'. status=" << statusToString(result) << "(" << result << ")"; |
| 265 | } |
| 266 | |
| 267 | // The queue is now empty. Tell looper there's no more output to expect. |
| 268 | setFdEvents(ALOOPER_EVENT_INPUT); |
| 269 | } |
| 270 | |
| 271 | void InputConsumerNoResampling::finishInputEvent(uint32_t seq, bool handled) { |
| 272 | ensureCalledOnLooperThread(__func__); |
| 273 | mOutboundQueue.push(createFinishedMessage(seq, handled, popConsumeTime(seq))); |
| 274 | // also produce finish events for all batches for this seq (if any) |
| 275 | const auto it = mBatchedSequenceNumbers.find(seq); |
| 276 | if (it != mBatchedSequenceNumbers.end()) { |
| 277 | for (uint32_t subSeq : it->second) { |
| 278 | mOutboundQueue.push(createFinishedMessage(subSeq, handled, popConsumeTime(subSeq))); |
| 279 | } |
| 280 | mBatchedSequenceNumbers.erase(it); |
| 281 | } |
| 282 | processOutboundEvents(); |
| 283 | } |
| 284 | |
| 285 | bool InputConsumerNoResampling::probablyHasInput() const { |
| 286 | // Ideally, this would only be allowed to run on the looper thread, and in production, it will. |
| 287 | // However, for testing, it's convenient to call this while the looper thread is blocked, so |
| 288 | // we do not call ensureCalledOnLooperThread here. |
| 289 | return (!mBatches.empty()) || mChannel->probablyHasInput(); |
| 290 | } |
| 291 | |
| 292 | void InputConsumerNoResampling::reportTimeline(int32_t inputEventId, nsecs_t gpuCompletedTime, |
| 293 | nsecs_t presentTime) { |
| 294 | ensureCalledOnLooperThread(__func__); |
| 295 | mOutboundQueue.push(createTimelineMessage(inputEventId, gpuCompletedTime, presentTime)); |
| 296 | processOutboundEvents(); |
| 297 | } |
| 298 | |
| 299 | nsecs_t InputConsumerNoResampling::popConsumeTime(uint32_t seq) { |
| 300 | auto it = mConsumeTimes.find(seq); |
| 301 | // Consume time will be missing if either 'finishInputEvent' is called twice, or if it was |
| 302 | // called for the wrong (synthetic?) input event. Either way, it is a bug that should be fixed. |
| 303 | LOG_ALWAYS_FATAL_IF(it == mConsumeTimes.end(), "Could not find consume time for seq=%" PRIu32, |
| 304 | seq); |
| 305 | nsecs_t consumeTime = it->second; |
| 306 | mConsumeTimes.erase(it); |
| 307 | return consumeTime; |
| 308 | } |
| 309 | |
| 310 | void InputConsumerNoResampling::setFdEvents(int events) { |
| 311 | if (mFdEvents != events) { |
| 312 | mFdEvents = events; |
| 313 | if (events != 0) { |
| 314 | mLooper->addFd(mChannel->getFd(), 0, events, mCallback, nullptr); |
| 315 | } else { |
| 316 | mLooper->removeFd(mChannel->getFd()); |
| 317 | } |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | void InputConsumerNoResampling::handleMessages(std::vector<InputMessage>&& messages) { |
| 322 | // TODO(b/297226446) : add resampling |
| 323 | for (const InputMessage& msg : messages) { |
| 324 | if (msg.header.type == InputMessage::Type::MOTION) { |
| 325 | const int32_t action = msg.body.motion.action; |
| 326 | const DeviceId deviceId = msg.body.motion.deviceId; |
| 327 | const int32_t source = msg.body.motion.source; |
| 328 | const bool batchableEvent = (action == AMOTION_EVENT_ACTION_MOVE || |
| 329 | action == AMOTION_EVENT_ACTION_HOVER_MOVE) && |
| 330 | (isFromSource(source, AINPUT_SOURCE_CLASS_POINTER) || |
| 331 | isFromSource(source, AINPUT_SOURCE_CLASS_JOYSTICK)); |
| 332 | if (batchableEvent) { |
| 333 | // add it to batch |
| 334 | mBatches[deviceId].emplace(msg); |
| 335 | } else { |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 336 | // consume all pending batches for this device immediately |
| 337 | consumeBatchedInputEvents(deviceId, /*requestedFrameTime=*/std::nullopt); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 338 | handleMessage(msg); |
| 339 | } |
| 340 | } else { |
| 341 | // Non-motion events shouldn't force the consumption of pending batched events |
| 342 | handleMessage(msg); |
| 343 | } |
| 344 | } |
| 345 | // At the end of this, if we still have pending batches, notify the receiver about it. |
| 346 | |
| 347 | // We need to carefully notify the InputConsumerCallbacks about the pending batch. The receiver |
| 348 | // could choose to consume all events when notified about the batch. That means that the |
| 349 | // "mBatches" variable could change when 'InputConsumerCallbacks::onBatchedInputEventPending' is |
| 350 | // invoked. We also can't notify the InputConsumerCallbacks in a while loop until mBatches is |
| 351 | // empty, because the receiver could choose to not consume the batch immediately. |
| 352 | std::set<int32_t> pendingBatchSources; |
| 353 | for (const auto& [_, pendingMessages] : mBatches) { |
| 354 | // Assume that all messages for a given device has the same source. |
| 355 | pendingBatchSources.insert(pendingMessages.front().body.motion.source); |
| 356 | } |
| 357 | for (const int32_t source : pendingBatchSources) { |
| 358 | const bool sourceStillRemaining = |
| 359 | std::any_of(mBatches.begin(), mBatches.end(), [=](const auto& pair) { |
| 360 | return pair.second.front().body.motion.source == source; |
| 361 | }); |
| 362 | if (sourceStillRemaining) { |
| 363 | mCallbacks.onBatchedInputEventPending(source); |
| 364 | } |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | std::vector<InputMessage> InputConsumerNoResampling::readAllMessages() { |
| 369 | std::vector<InputMessage> messages; |
| 370 | while (true) { |
Paul Ramirez | 0c25e86 | 2024-06-18 21:33:33 +0000 | [diff] [blame] | 371 | android::base::Result<InputMessage> result = mChannel->receiveMessage(); |
| 372 | if (result.ok()) { |
| 373 | const InputMessage& msg = *result; |
| 374 | const auto [_, inserted] = |
| 375 | mConsumeTimes.emplace(msg.header.seq, systemTime(SYSTEM_TIME_MONOTONIC)); |
| 376 | LOG_ALWAYS_FATAL_IF(!inserted, "Already have a consume time for seq=%" PRIu32, |
| 377 | msg.header.seq); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 378 | |
Paul Ramirez | 0c25e86 | 2024-06-18 21:33:33 +0000 | [diff] [blame] | 379 | // Trace the event processing timeline - event was just read from the socket |
| 380 | // TODO(b/329777420): distinguish between multiple instances of InputConsumer |
| 381 | // in the same process. |
| 382 | ATRACE_ASYNC_BEGIN("InputConsumer processing", /*cookie=*/msg.header.seq); |
| 383 | messages.push_back(msg); |
| 384 | } else { // !result.ok() |
| 385 | switch (result.error().code()) { |
| 386 | case WOULD_BLOCK: { |
| 387 | return messages; |
| 388 | } |
| 389 | case DEAD_OBJECT: { |
| 390 | LOG(FATAL) << "Got a dead object for " << mChannel->getName(); |
| 391 | break; |
| 392 | } |
| 393 | case BAD_VALUE: { |
| 394 | LOG(FATAL) << "Got a bad value for " << mChannel->getName(); |
| 395 | break; |
| 396 | } |
| 397 | default: { |
| 398 | LOG(FATAL) << "Unexpected error: " << result.error().message(); |
| 399 | break; |
| 400 | } |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 401 | } |
| 402 | } |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | void InputConsumerNoResampling::handleMessage(const InputMessage& msg) const { |
| 407 | switch (msg.header.type) { |
| 408 | case InputMessage::Type::KEY: { |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 409 | std::unique_ptr<KeyEvent> keyEvent = createKeyEvent(msg); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 410 | mCallbacks.onKeyEvent(std::move(keyEvent), msg.header.seq); |
| 411 | break; |
| 412 | } |
| 413 | |
| 414 | case InputMessage::Type::MOTION: { |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 415 | std::unique_ptr<MotionEvent> motionEvent = createMotionEvent(msg); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 416 | mCallbacks.onMotionEvent(std::move(motionEvent), msg.header.seq); |
| 417 | break; |
| 418 | } |
| 419 | |
| 420 | case InputMessage::Type::FINISHED: |
| 421 | case InputMessage::Type::TIMELINE: { |
Siarhei Vishniakou | 11d223b | 2024-03-26 21:52:38 +0000 | [diff] [blame] | 422 | LOG(FATAL) << "Consumed a " << ftl::enum_string(msg.header.type) |
| 423 | << " message, which should never be seen by InputConsumer on " |
| 424 | << mChannel->getName(); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 425 | break; |
| 426 | } |
| 427 | |
| 428 | case InputMessage::Type::FOCUS: { |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 429 | std::unique_ptr<FocusEvent> focusEvent = createFocusEvent(msg); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 430 | mCallbacks.onFocusEvent(std::move(focusEvent), msg.header.seq); |
| 431 | break; |
| 432 | } |
| 433 | |
| 434 | case InputMessage::Type::CAPTURE: { |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 435 | std::unique_ptr<CaptureEvent> captureEvent = createCaptureEvent(msg); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 436 | mCallbacks.onCaptureEvent(std::move(captureEvent), msg.header.seq); |
| 437 | break; |
| 438 | } |
| 439 | |
| 440 | case InputMessage::Type::DRAG: { |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 441 | std::unique_ptr<DragEvent> dragEvent = createDragEvent(msg); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 442 | mCallbacks.onDragEvent(std::move(dragEvent), msg.header.seq); |
| 443 | break; |
| 444 | } |
| 445 | |
| 446 | case InputMessage::Type::TOUCH_MODE: { |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 447 | std::unique_ptr<TouchModeEvent> touchModeEvent = createTouchModeEvent(msg); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 448 | mCallbacks.onTouchModeEvent(std::move(touchModeEvent), msg.header.seq); |
| 449 | break; |
| 450 | } |
| 451 | } |
| 452 | } |
| 453 | |
Paul Ramirez | b41d38e | 2024-07-16 17:44:20 +0000 | [diff] [blame] | 454 | std::pair<std::unique_ptr<MotionEvent>, std::optional<uint32_t>> |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 455 | InputConsumerNoResampling::createBatchedMotionEvent(const nsecs_t requestedFrameTime, |
Paul Ramirez | b41d38e | 2024-07-16 17:44:20 +0000 | [diff] [blame] | 456 | std::queue<InputMessage>& messages) { |
| 457 | std::unique_ptr<MotionEvent> motionEvent; |
| 458 | std::optional<uint32_t> firstSeqForBatch; |
Paul Ramirez | cd7488c | 2024-09-13 23:01:12 +0000 | [diff] [blame] | 459 | const nanoseconds resampleLatency = |
| 460 | (mResampler != nullptr) ? mResampler->getResampleLatency() : nanoseconds{0}; |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 461 | const nanoseconds adjustedFrameTime = nanoseconds{requestedFrameTime} - resampleLatency; |
Paul Ramirez | cd7488c | 2024-09-13 23:01:12 +0000 | [diff] [blame] | 462 | |
| 463 | while (!messages.empty() && |
| 464 | (messages.front().body.motion.eventTime <= adjustedFrameTime.count())) { |
Paul Ramirez | b41d38e | 2024-07-16 17:44:20 +0000 | [diff] [blame] | 465 | if (motionEvent == nullptr) { |
| 466 | motionEvent = createMotionEvent(messages.front()); |
| 467 | firstSeqForBatch = messages.front().header.seq; |
| 468 | const auto [_, inserted] = mBatchedSequenceNumbers.insert({*firstSeqForBatch, {}}); |
| 469 | LOG_IF(FATAL, !inserted) |
| 470 | << "The sequence " << messages.front().header.seq << " was already present!"; |
| 471 | } else { |
| 472 | addSample(*motionEvent, messages.front()); |
| 473 | mBatchedSequenceNumbers[*firstSeqForBatch].push_back(messages.front().header.seq); |
| 474 | } |
| 475 | messages.pop(); |
| 476 | } |
Paul Ramirez | be9c544 | 2024-07-10 00:12:41 +0000 | [diff] [blame] | 477 | // Check if resampling should be performed. |
| 478 | if (motionEvent != nullptr && isPointerEvent(*motionEvent) && mResampler != nullptr) { |
| 479 | InputMessage* futureSample = nullptr; |
| 480 | if (!messages.empty()) { |
| 481 | futureSample = &messages.front(); |
| 482 | } |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 483 | mResampler->resampleMotionEvent(nanoseconds{requestedFrameTime}, *motionEvent, |
| 484 | futureSample); |
Paul Ramirez | be9c544 | 2024-07-10 00:12:41 +0000 | [diff] [blame] | 485 | } |
Paul Ramirez | b41d38e | 2024-07-16 17:44:20 +0000 | [diff] [blame] | 486 | return std::make_pair(std::move(motionEvent), firstSeqForBatch); |
| 487 | } |
| 488 | |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 489 | bool InputConsumerNoResampling::consumeBatchedInputEvents( |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 490 | std::optional<DeviceId> deviceId, std::optional<nsecs_t> requestedFrameTime) { |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 491 | ensureCalledOnLooperThread(__func__); |
| 492 | // When batching is not enabled, we want to consume all events. That's equivalent to having an |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 493 | // infinite requestedFrameTime. |
| 494 | requestedFrameTime = requestedFrameTime.value_or(std::numeric_limits<nsecs_t>::max()); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 495 | bool producedEvents = false; |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 496 | |
| 497 | for (auto deviceIdIter = (deviceId.has_value()) ? (mBatches.find(*deviceId)) |
| 498 | : (mBatches.begin()); |
| 499 | deviceIdIter != mBatches.cend(); ++deviceIdIter) { |
| 500 | std::queue<InputMessage>& messages = deviceIdIter->second; |
| 501 | auto [motion, firstSeqForBatch] = createBatchedMotionEvent(*requestedFrameTime, messages); |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 502 | if (motion != nullptr) { |
| 503 | LOG_ALWAYS_FATAL_IF(!firstSeqForBatch.has_value()); |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 504 | mCallbacks.onMotionEvent(std::move(motion), *firstSeqForBatch); |
| 505 | producedEvents = true; |
| 506 | } else { |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 507 | // This is OK, it just means that the requestedFrameTime is too old (all events that we |
| 508 | // have pending are in the future of the requestedFrameTime). Maybe print a warning? If |
| 509 | // there are multiple devices active though, this might be normal and can just be |
| 510 | // ignored, unless none of them resulted in any consumption (in that case, this function |
| 511 | // would already return "false" so we could just leave it up to the caller). |
| 512 | } |
| 513 | |
| 514 | if (deviceId.has_value()) { |
| 515 | // We already consumed events for this device. Break here to prevent iterating over the |
| 516 | // other devices. |
| 517 | break; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 518 | } |
| 519 | } |
| 520 | std::erase_if(mBatches, [](const auto& pair) { return pair.second.empty(); }); |
| 521 | return producedEvents; |
| 522 | } |
| 523 | |
Paul Ramirez | 00cf5d0 | 2024-09-05 17:10:12 +0000 | [diff] [blame] | 524 | bool InputConsumerNoResampling::consumeBatchedInputEvents( |
| 525 | std::optional<nsecs_t> requestedFrameTime) { |
| 526 | return consumeBatchedInputEvents(/*deviceId=*/std::nullopt, requestedFrameTime); |
| 527 | } |
| 528 | |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 529 | void InputConsumerNoResampling::ensureCalledOnLooperThread(const char* func) const { |
| 530 | sp<Looper> callingThreadLooper = Looper::getForThread(); |
Paul Ramirez | 87f1c01 | 2024-09-18 18:23:14 +0000 | [diff] [blame^] | 531 | if (callingThreadLooper != mLooper) { |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 532 | LOG(FATAL) << "The function " << func << " can only be called on the looper thread"; |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | std::string InputConsumerNoResampling::dump() const { |
| 537 | ensureCalledOnLooperThread(__func__); |
| 538 | std::string out; |
| 539 | if (mOutboundQueue.empty()) { |
| 540 | out += "mOutboundQueue: <empty>\n"; |
| 541 | } else { |
| 542 | out += "mOutboundQueue:\n"; |
| 543 | // Make a copy of mOutboundQueue for printing destructively. Unfortunately std::queue |
| 544 | // doesn't provide a good way to iterate over the entire container. |
| 545 | std::queue<InputMessage> tmpQueue = mOutboundQueue; |
| 546 | while (!tmpQueue.empty()) { |
| 547 | out += std::string(" ") + outboundMessageToString(tmpQueue.front()) + "\n"; |
| 548 | tmpQueue.pop(); |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | if (mBatches.empty()) { |
| 553 | out += "mBatches: <empty>\n"; |
| 554 | } else { |
| 555 | out += "mBatches:\n"; |
| 556 | for (const auto& [deviceId, messages] : mBatches) { |
| 557 | out += " Device id "; |
| 558 | out += std::to_string(deviceId); |
| 559 | out += ":\n"; |
| 560 | // Make a copy of mOutboundQueue for printing destructively. Unfortunately std::queue |
| 561 | // doesn't provide a good way to iterate over the entire container. |
| 562 | std::queue<InputMessage> tmpQueue = messages; |
| 563 | while (!tmpQueue.empty()) { |
| 564 | LOG_ALWAYS_FATAL_IF(tmpQueue.front().header.type != InputMessage::Type::MOTION); |
Siarhei Vishniakou | 3891ec9 | 2024-03-15 13:29:57 -0700 | [diff] [blame] | 565 | std::unique_ptr<MotionEvent> motion = createMotionEvent(tmpQueue.front()); |
| 566 | out += std::string(" ") + streamableToString(*motion) + "\n"; |
Siarhei Vishniakou | 2b92027 | 2024-02-27 19:49:51 -0800 | [diff] [blame] | 567 | tmpQueue.pop(); |
| 568 | } |
| 569 | } |
| 570 | } |
| 571 | |
| 572 | return out; |
| 573 | } |
| 574 | |
| 575 | } // namespace android |