blob: 31d82f1abe0aad75b4e0d9cf9d193859018a3a76 [file] [log] [blame]
Michael Wrightd02c5b62014-02-10 15:10:22 -08001/*
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
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070017#ifndef _UI_INPUTREADER_INPUT_READER_H
18#define _UI_INPUTREADER_INPUT_READER_H
Michael Wrightd02c5b62014-02-10 15:10:22 -080019
20#include "EventHub.h"
Michael Wrightd02c5b62014-02-10 15:10:22 -080021#include "InputListener.h"
Prabir Pradhan29c95332018-11-14 20:14:11 -080022#include "InputReaderBase.h"
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070023#include "InputReaderContext.h"
Prabir Pradhan5a57cff2019-10-31 18:40:33 -070024#include "InputThread.h"
Michael Wrightd02c5b62014-02-10 15:10:22 -080025
Siarhei Vishniakoue54cb852017-03-21 17:48:16 -070026#include <utils/Condition.h>
Siarhei Vishniakoue54cb852017-03-21 17:48:16 -070027#include <utils/Mutex.h>
Michael Wrightd02c5b62014-02-10 15:10:22 -080028
Nathaniel R. Lewis10793a62019-11-05 02:17:02 +000029#include <unordered_map>
Siarhei Vishniakoud6343922018-07-06 23:33:37 +010030#include <vector>
Michael Wrightd02c5b62014-02-10 15:10:22 -080031
Michael Wrightd02c5b62014-02-10 15:10:22 -080032namespace android {
33
34class InputDevice;
35class InputMapper;
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070036struct StylusState;
Michael Wrightd02c5b62014-02-10 15:10:22 -080037
Michael Wrightd02c5b62014-02-10 15:10:22 -080038/* The input reader reads raw event data from the event hub and processes it into input events
39 * that it sends to the input listener. Some functions of the input reader, such as early
40 * event filtering in low power states, are controlled by a separate policy object.
41 *
Prabir Pradhan28efc192019-11-05 01:10:04 +000042 * The InputReader owns a collection of InputMappers. InputReader starts its own thread, where
43 * most of the work happens, but the InputReader can receive queries from other system
Michael Wrightd02c5b62014-02-10 15:10:22 -080044 * components running on arbitrary threads. To keep things manageable, the InputReader
45 * uses a single Mutex to guard its state. The Mutex may be held while calling into the
46 * EventHub or the InputReaderPolicy but it is never held while calling into the
Prabir Pradhan28efc192019-11-05 01:10:04 +000047 * InputListener. All calls to InputListener must happen from InputReader's thread.
Michael Wrightd02c5b62014-02-10 15:10:22 -080048 */
49class InputReader : public InputReaderInterface {
50public:
Siarhei Vishniakou3bc7e092019-07-24 17:43:30 -070051 InputReader(std::shared_ptr<EventHubInterface> eventHub,
52 const sp<InputReaderPolicyInterface>& policy,
53 const sp<InputListenerInterface>& listener);
Michael Wrightd02c5b62014-02-10 15:10:22 -080054 virtual ~InputReader();
55
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070056 virtual void dump(std::string& dump) override;
57 virtual void monitor() override;
Michael Wrightd02c5b62014-02-10 15:10:22 -080058
Prabir Pradhan28efc192019-11-05 01:10:04 +000059 virtual status_t start() override;
60 virtual status_t stop() override;
Michael Wrightd02c5b62014-02-10 15:10:22 -080061
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070062 virtual void getInputDevices(std::vector<InputDeviceInfo>& outInputDevices) override;
Michael Wrightd02c5b62014-02-10 15:10:22 -080063
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070064 virtual bool isInputDeviceEnabled(int32_t deviceId) override;
Siarhei Vishniakoue54cb852017-03-21 17:48:16 -070065
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070066 virtual int32_t getScanCodeState(int32_t deviceId, uint32_t sourceMask,
67 int32_t scanCode) override;
68 virtual int32_t getKeyCodeState(int32_t deviceId, uint32_t sourceMask,
69 int32_t keyCode) override;
70 virtual int32_t getSwitchState(int32_t deviceId, uint32_t sourceMask, int32_t sw) override;
Michael Wrightd02c5b62014-02-10 15:10:22 -080071
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070072 virtual void toggleCapsLockState(int32_t deviceId) override;
Andrii Kulian763a3a42016-03-08 10:46:16 -080073
Prabir Pradhanda7c00c2019-08-29 14:12:42 -070074 virtual bool hasKeys(int32_t deviceId, uint32_t sourceMask, size_t numCodes,
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070075 const int32_t* keyCodes, uint8_t* outFlags) override;
Michael Wrightd02c5b62014-02-10 15:10:22 -080076
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070077 virtual void requestRefreshConfiguration(uint32_t changes) override;
Michael Wrightd02c5b62014-02-10 15:10:22 -080078
79 virtual void vibrate(int32_t deviceId, const nsecs_t* pattern, size_t patternSize,
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070080 ssize_t repeat, int32_t token) override;
81 virtual void cancelVibrate(int32_t deviceId, int32_t token) override;
Michael Wrightd02c5b62014-02-10 15:10:22 -080082
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -070083 virtual bool canDispatchToDisplay(int32_t deviceId, int32_t displayId) override;
Prabir Pradhanda7c00c2019-08-29 14:12:42 -070084
Michael Wrightd02c5b62014-02-10 15:10:22 -080085protected:
86 // These members are protected so they can be instrumented by test cases.
Nathaniel R. Lewisa7b82e12020-02-12 15:40:45 -080087 virtual std::shared_ptr<InputDevice> createDeviceLocked(
88 int32_t deviceId, const InputDeviceIdentifier& identifier);
Michael Wrightd02c5b62014-02-10 15:10:22 -080089
Prabir Pradhan28efc192019-11-05 01:10:04 +000090 // With each iteration of the loop, InputReader reads and processes one incoming message from
91 // the EventHub.
92 void loopOnce();
93
Michael Wrightd02c5b62014-02-10 15:10:22 -080094 class ContextImpl : public InputReaderContext {
95 InputReader* mReader;
96
97 public:
Chih-Hung Hsieh6d2ede12016-09-01 11:28:23 -070098 explicit ContextImpl(InputReader* reader);
Michael Wrightd02c5b62014-02-10 15:10:22 -080099
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -0700100 virtual void updateGlobalMetaState() override;
101 virtual int32_t getGlobalMetaState() override;
102 virtual void disableVirtualKeysUntil(nsecs_t time) override;
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800103 virtual bool shouldDropVirtualKey(nsecs_t now, int32_t keyCode, int32_t scanCode) override;
Prabir Pradhanf1fbf9e2019-09-04 16:29:40 -0700104 virtual void fadePointer() override;
105 virtual void requestTimeoutAtTime(nsecs_t when) override;
106 virtual int32_t bumpGeneration() override;
107 virtual void getExternalStylusDevices(std::vector<InputDeviceInfo>& outDevices) override;
108 virtual void dispatchExternalStylusState(const StylusState& outState) override;
109 virtual InputReaderPolicyInterface* getPolicy() override;
110 virtual InputListenerInterface* getListener() override;
111 virtual EventHubInterface* getEventHub() override;
112 virtual uint32_t getNextSequenceNum() override;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800113 } mContext;
114
115 friend class ContextImpl;
116
117private:
Prabir Pradhan5a57cff2019-10-31 18:40:33 -0700118 std::unique_ptr<InputThread> mThread;
Prabir Pradhan28efc192019-11-05 01:10:04 +0000119
Michael Wrightd02c5b62014-02-10 15:10:22 -0800120 Mutex mLock;
121
122 Condition mReaderIsAliveCondition;
123
Siarhei Vishniakou3bc7e092019-07-24 17:43:30 -0700124 // This could be unique_ptr, but due to the way InputReader tests are written,
125 // it is made shared_ptr here. In the tests, an EventHub reference is retained by the test
126 // in parallel to passing it to the InputReader.
127 std::shared_ptr<EventHubInterface> mEventHub;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800128 sp<InputReaderPolicyInterface> mPolicy;
129 sp<QueuedInputListener> mQueuedListener;
130
131 InputReaderConfiguration mConfig;
132
Prabir Pradhan42611e02018-11-27 14:04:02 -0800133 // used by InputReaderContext::getNextSequenceNum() as a counter for event sequence numbers
134 uint32_t mNextSequenceNum;
135
Michael Wrightd02c5b62014-02-10 15:10:22 -0800136 // The event queue.
137 static const int EVENT_BUFFER_SIZE = 256;
138 RawEvent mEventBuffer[EVENT_BUFFER_SIZE];
139
Nathaniel R. Lewisa7b82e12020-02-12 15:40:45 -0800140 // An input device can represent a collection of EventHub devices. This map provides a way
141 // to lookup the input device instance from the EventHub device id.
142 std::unordered_map<int32_t /*eventHubId*/, std::shared_ptr<InputDevice>> mDevices;
Michael Wrightd02c5b62014-02-10 15:10:22 -0800143
144 // low-level input event decoding and device management
145 void processEventsLocked(const RawEvent* rawEvents, size_t count);
146
Nathaniel R. Lewisa7b82e12020-02-12 15:40:45 -0800147 void addDeviceLocked(nsecs_t when, int32_t eventHubId);
148 void removeDeviceLocked(nsecs_t when, int32_t eventHubId);
149 void processEventsForDeviceLocked(int32_t eventHubId, const RawEvent* rawEvents, size_t count);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800150 void timeoutExpiredLocked(nsecs_t when);
151
152 void handleConfigurationChangedLocked(nsecs_t when);
153
154 int32_t mGlobalMetaState;
155 void updateGlobalMetaStateLocked();
156 int32_t getGlobalMetaStateLocked();
157
Michael Wright842500e2015-03-13 17:32:02 -0700158 void notifyExternalStylusPresenceChanged();
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800159 void getExternalStylusDevicesLocked(std::vector<InputDeviceInfo>& outDevices);
Michael Wright842500e2015-03-13 17:32:02 -0700160 void dispatchExternalStylusState(const StylusState& state);
161
Michael Wrightd02c5b62014-02-10 15:10:22 -0800162 void fadePointerLocked();
163
164 int32_t mGeneration;
165 int32_t bumpGenerationLocked();
166
Nathaniel R. Lewisa7b82e12020-02-12 15:40:45 -0800167 int32_t mNextInputDeviceId;
168 int32_t nextInputDeviceIdLocked();
169
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800170 void getInputDevicesLocked(std::vector<InputDeviceInfo>& outInputDevices);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800171
172 nsecs_t mDisableVirtualKeysTimeout;
173 void disableVirtualKeysUntilLocked(nsecs_t time);
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -0800174 bool shouldDropVirtualKeyLocked(nsecs_t now, int32_t keyCode, int32_t scanCode);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800175
176 nsecs_t mNextTimeout;
177 void requestTimeoutAtTimeLocked(nsecs_t when);
178
179 uint32_t mConfigurationChangesToRefresh;
180 void refreshConfigurationLocked(uint32_t changes);
181
182 // state queries
183 typedef int32_t (InputDevice::*GetStateFunc)(uint32_t sourceMask, int32_t code);
184 int32_t getStateLocked(int32_t deviceId, uint32_t sourceMask, int32_t code,
Prabir Pradhanda7c00c2019-08-29 14:12:42 -0700185 GetStateFunc getStateFunc);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800186 bool markSupportedKeyCodesLocked(int32_t deviceId, uint32_t sourceMask, size_t numCodes,
Prabir Pradhanda7c00c2019-08-29 14:12:42 -0700187 const int32_t* keyCodes, uint8_t* outFlags);
Nathaniel R. Lewisa7b82e12020-02-12 15:40:45 -0800188
189 // find an InputDevice from an InputDevice id
190 InputDevice* findInputDevice(int32_t deviceId);
Michael Wrightd02c5b62014-02-10 15:10:22 -0800191};
192
Michael Wrightd02c5b62014-02-10 15:10:22 -0800193} // namespace android
194
Prabir Pradhanbaa5c822019-08-30 15:27:05 -0700195#endif // _UI_INPUTREADER_INPUT_READER_H