blob: 6cce8ecc7b025d14f6ef73cb6fdabe7f688b50a4 [file] [log] [blame]
Prabir Pradhan29c95332018-11-14 20:14:11 -08001/*
2 * Copyright (C) 2018 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#ifndef _UI_INPUT_READER_BASE_H
18#define _UI_INPUT_READER_BASE_H
19
Prabir Pradhan28efc192019-11-05 01:10:04 +000020#include <input/DisplayViewport.h>
Prabir Pradhan29c95332018-11-14 20:14:11 -080021#include <input/Input.h>
22#include <input/InputDevice.h>
Prabir Pradhan29c95332018-11-14 20:14:11 -080023#include <input/VelocityControl.h>
24#include <input/VelocityTracker.h>
Nathaniel R. Lewiscacd69a2019-08-12 22:07:00 +000025#include <stddef.h>
26#include <unistd.h>
Prabir Pradhan28efc192019-11-05 01:10:04 +000027#include <utils/Errors.h>
Prabir Pradhan29c95332018-11-14 20:14:11 -080028#include <utils/RefBase.h>
Prabir Pradhan29c95332018-11-14 20:14:11 -080029
Siarhei Vishniakouc6f61192019-07-23 18:12:31 +000030#include <optional>
31#include <set>
Siarhei Vishniakou8158e7e2018-10-15 14:28:20 -070032#include <unordered_map>
Prabir Pradhan29c95332018-11-14 20:14:11 -080033#include <vector>
34
Nathaniel R. Lewiscacd69a2019-08-12 22:07:00 +000035#include "PointerControllerInterface.h"
36#include "VibrationElement.h"
37
Prabir Pradhan29c95332018-11-14 20:14:11 -080038// Maximum supported size of a vibration pattern.
39// Must be at least 2.
40#define MAX_VIBRATE_PATTERN_SIZE 100
41
Prabir Pradhan29c95332018-11-14 20:14:11 -080042namespace android {
43
Prabir Pradhan28efc192019-11-05 01:10:04 +000044// --- InputReaderInterface ---
45
46/* The interface for the InputReader shared library.
47 *
48 * Manages one or more threads that process raw input events and sends cooked event data to an
49 * input listener.
50 *
51 * The implementation must guarantee thread safety for this interface. However, since the input
52 * listener is NOT thread safe, all calls to the listener must happen from the same thread.
53 */
Prabir Pradhan29c95332018-11-14 20:14:11 -080054class InputReaderInterface : public virtual RefBase {
55protected:
56 InputReaderInterface() { }
57 virtual ~InputReaderInterface() { }
58
59public:
60 /* Dumps the state of the input reader.
61 *
62 * This method may be called on any thread (usually by the input manager). */
63 virtual void dump(std::string& dump) = 0;
64
Prabir Pradhan28efc192019-11-05 01:10:04 +000065 /* Called by the heartbeat to ensures that the reader has not deadlocked. */
Prabir Pradhan29c95332018-11-14 20:14:11 -080066 virtual void monitor() = 0;
67
68 /* Returns true if the input device is enabled. */
69 virtual bool isInputDeviceEnabled(int32_t deviceId) = 0;
70
Prabir Pradhan28efc192019-11-05 01:10:04 +000071 /* Makes the reader start processing events from the kernel. */
72 virtual status_t start() = 0;
73
74 /* Makes the reader stop processing any more events. */
75 virtual status_t stop() = 0;
Prabir Pradhan29c95332018-11-14 20:14:11 -080076
77 /* Gets information about all input devices.
78 *
79 * This method may be called on any thread (usually by the input manager).
80 */
Chris Ye98d3f532020-10-01 21:48:59 -070081 virtual std::vector<InputDeviceInfo> getInputDevices() const = 0;
Prabir Pradhan29c95332018-11-14 20:14:11 -080082
83 /* Query current input state. */
84 virtual int32_t getScanCodeState(int32_t deviceId, uint32_t sourceMask,
85 int32_t scanCode) = 0;
86 virtual int32_t getKeyCodeState(int32_t deviceId, uint32_t sourceMask,
87 int32_t keyCode) = 0;
88 virtual int32_t getSwitchState(int32_t deviceId, uint32_t sourceMask,
89 int32_t sw) = 0;
90
91 /* Toggle Caps Lock */
92 virtual void toggleCapsLockState(int32_t deviceId) = 0;
93
94 /* Determine whether physical keys exist for the given framework-domain key codes. */
95 virtual bool hasKeys(int32_t deviceId, uint32_t sourceMask,
96 size_t numCodes, const int32_t* keyCodes, uint8_t* outFlags) = 0;
97
98 /* Requests that a reconfiguration of all input devices.
99 * The changes flag is a bitfield that indicates what has changed and whether
100 * the input devices must all be reopened. */
101 virtual void requestRefreshConfiguration(uint32_t changes) = 0;
102
103 /* Controls the vibrator of a particular input device. */
Chris Ye87143712020-11-10 05:05:58 +0000104 virtual void vibrate(int32_t deviceId, const VibrationSequence& sequence, ssize_t repeat,
105 int32_t token) = 0;
Prabir Pradhan29c95332018-11-14 20:14:11 -0800106 virtual void cancelVibrate(int32_t deviceId, int32_t token) = 0;
Arthur Hungc23540e2018-11-29 20:42:11 +0800107
Chris Ye87143712020-11-10 05:05:58 +0000108 virtual bool isVibrating(int32_t deviceId) = 0;
109
110 virtual std::vector<int32_t> getVibratorIds(int32_t deviceId) = 0;
111
Arthur Hungc23540e2018-11-29 20:42:11 +0800112 /* Return true if the device can send input events to the specified display. */
113 virtual bool canDispatchToDisplay(int32_t deviceId, int32_t displayId) = 0;
Prabir Pradhan29c95332018-11-14 20:14:11 -0800114};
115
Prabir Pradhan28efc192019-11-05 01:10:04 +0000116// --- InputReaderConfiguration ---
Prabir Pradhan29c95332018-11-14 20:14:11 -0800117
118/*
119 * Input reader configuration.
120 *
121 * Specifies various options that modify the behavior of the input reader.
122 */
123struct InputReaderConfiguration {
124 // Describes changes that have occurred.
125 enum {
126 // The pointer speed changed.
127 CHANGE_POINTER_SPEED = 1 << 0,
128
129 // The pointer gesture control changed.
130 CHANGE_POINTER_GESTURE_ENABLEMENT = 1 << 1,
131
132 // The display size or orientation changed.
133 CHANGE_DISPLAY_INFO = 1 << 2,
134
135 // The visible touches option changed.
136 CHANGE_SHOW_TOUCHES = 1 << 3,
137
138 // The keyboard layouts must be reloaded.
139 CHANGE_KEYBOARD_LAYOUTS = 1 << 4,
140
141 // The device name alias supplied by the may have changed for some devices.
142 CHANGE_DEVICE_ALIAS = 1 << 5,
143
144 // The location calibration matrix changed.
145 CHANGE_TOUCH_AFFINE_TRANSFORMATION = 1 << 6,
146
147 // The presence of an external stylus has changed.
148 CHANGE_EXTERNAL_STYLUS_PRESENCE = 1 << 7,
149
150 // The pointer capture mode has changed.
151 CHANGE_POINTER_CAPTURE = 1 << 8,
152
153 // The set of disabled input devices (disabledDevices) has changed.
154 CHANGE_ENABLED_STATE = 1 << 9,
155
156 // All devices must be reopened.
157 CHANGE_MUST_REOPEN = 1 << 31,
158 };
159
160 // Gets the amount of time to disable virtual keys after the screen is touched
161 // in order to filter out accidental virtual key presses due to swiping gestures
162 // or taps near the edge of the display. May be 0 to disable the feature.
163 nsecs_t virtualKeyQuietTime;
164
165 // The excluded device names for the platform.
166 // Devices with these names will be ignored.
167 std::vector<std::string> excludedDeviceNames;
168
Siarhei Vishniakou8158e7e2018-10-15 14:28:20 -0700169 // The associations between input ports and display ports.
170 // Used to determine which DisplayViewport should be tied to which InputDevice.
171 std::unordered_map<std::string, uint8_t> portAssociations;
172
Garfield Tan888a6a42020-01-09 11:39:16 -0800173 // The suggested display ID to show the cursor.
174 int32_t defaultPointerDisplayId;
175
Prabir Pradhan29c95332018-11-14 20:14:11 -0800176 // Velocity control parameters for mouse pointer movements.
177 VelocityControlParameters pointerVelocityControlParameters;
178
179 // Velocity control parameters for mouse wheel movements.
180 VelocityControlParameters wheelVelocityControlParameters;
181
182 // True if pointer gestures are enabled.
183 bool pointerGesturesEnabled;
184
185 // Quiet time between certain pointer gesture transitions.
186 // Time to allow for all fingers or buttons to settle into a stable state before
187 // starting a new gesture.
188 nsecs_t pointerGestureQuietInterval;
189
190 // The minimum speed that a pointer must travel for us to consider switching the active
191 // touch pointer to it during a drag. This threshold is set to avoid switching due
192 // to noise from a finger resting on the touch pad (perhaps just pressing it down).
193 float pointerGestureDragMinSwitchSpeed; // in pixels per second
194
195 // Tap gesture delay time.
196 // The time between down and up must be less than this to be considered a tap.
197 nsecs_t pointerGestureTapInterval;
198
199 // Tap drag gesture delay time.
200 // The time between the previous tap's up and the next down must be less than
201 // this to be considered a drag. Otherwise, the previous tap is finished and a
202 // new tap begins.
203 //
204 // Note that the previous tap will be held down for this entire duration so this
205 // interval must be shorter than the long press timeout.
206 nsecs_t pointerGestureTapDragInterval;
207
208 // The distance in pixels that the pointer is allowed to move from initial down
209 // to up and still be called a tap.
210 float pointerGestureTapSlop; // in pixels
211
212 // Time after the first touch points go down to settle on an initial centroid.
213 // This is intended to be enough time to handle cases where the user puts down two
214 // fingers at almost but not quite exactly the same time.
215 nsecs_t pointerGestureMultitouchSettleInterval;
216
217 // The transition from PRESS to SWIPE or FREEFORM gesture mode is made when
218 // at least two pointers have moved at least this far from their starting place.
219 float pointerGestureMultitouchMinDistance; // in pixels
220
221 // The transition from PRESS to SWIPE gesture mode can only occur when the
222 // cosine of the angle between the two vectors is greater than or equal to than this value
223 // which indicates that the vectors are oriented in the same direction.
224 // When the vectors are oriented in the exactly same direction, the cosine is 1.0.
225 // (In exactly opposite directions, the cosine is -1.0.)
226 float pointerGestureSwipeTransitionAngleCosine;
227
228 // The transition from PRESS to SWIPE gesture mode can only occur when the
229 // fingers are no more than this far apart relative to the diagonal size of
230 // the touch pad. For example, a ratio of 0.5 means that the fingers must be
231 // no more than half the diagonal size of the touch pad apart.
232 float pointerGestureSwipeMaxWidthRatio;
233
234 // The gesture movement speed factor relative to the size of the display.
235 // Movement speed applies when the fingers are moving in the same direction.
236 // Without acceleration, a full swipe of the touch pad diagonal in movement mode
237 // will cover this portion of the display diagonal.
238 float pointerGestureMovementSpeedRatio;
239
240 // The gesture zoom speed factor relative to the size of the display.
241 // Zoom speed applies when the fingers are mostly moving relative to each other
242 // to execute a scale gesture or similar.
243 // Without acceleration, a full swipe of the touch pad diagonal in zoom mode
244 // will cover this portion of the display diagonal.
245 float pointerGestureZoomSpeedRatio;
246
247 // True to show the location of touches on the touch screen as spots.
248 bool showTouches;
249
250 // True if pointer capture is enabled.
251 bool pointerCapture;
252
253 // The set of currently disabled input devices.
Siarhei Vishniakouc6f61192019-07-23 18:12:31 +0000254 std::set<int32_t> disabledDevices;
Prabir Pradhan29c95332018-11-14 20:14:11 -0800255
256 InputReaderConfiguration() :
257 virtualKeyQuietTime(0),
258 pointerVelocityControlParameters(1.0f, 500.0f, 3000.0f, 3.0f),
259 wheelVelocityControlParameters(1.0f, 15.0f, 50.0f, 4.0f),
260 pointerGesturesEnabled(true),
261 pointerGestureQuietInterval(100 * 1000000LL), // 100 ms
262 pointerGestureDragMinSwitchSpeed(50), // 50 pixels per second
263 pointerGestureTapInterval(150 * 1000000LL), // 150 ms
264 pointerGestureTapDragInterval(150 * 1000000LL), // 150 ms
265 pointerGestureTapSlop(10.0f), // 10 pixels
266 pointerGestureMultitouchSettleInterval(100 * 1000000LL), // 100 ms
267 pointerGestureMultitouchMinDistance(15), // 15 pixels
268 pointerGestureSwipeTransitionAngleCosine(0.2588f), // cosine of 75 degrees
269 pointerGestureSwipeMaxWidthRatio(0.25f),
270 pointerGestureMovementSpeedRatio(0.8f),
271 pointerGestureZoomSpeedRatio(0.3f),
Siarhei Vishniakou4b057032019-01-30 19:43:49 -0800272 showTouches(false), pointerCapture(false) { }
Prabir Pradhan29c95332018-11-14 20:14:11 -0800273
Siarhei Vishniakouc5ae0dc2019-07-10 15:51:18 -0700274 static std::string changesToString(uint32_t changes);
275
Siarhei Vishniakou8158e7e2018-10-15 14:28:20 -0700276 std::optional<DisplayViewport> getDisplayViewportByType(ViewportType type) const;
277 std::optional<DisplayViewport> getDisplayViewportByUniqueId(const std::string& uniqueDisplayId)
278 const;
279 std::optional<DisplayViewport> getDisplayViewportByPort(uint8_t physicalPort) const;
Garfield Tan888a6a42020-01-09 11:39:16 -0800280 std::optional<DisplayViewport> getDisplayViewportById(int32_t displayId) const;
Prabir Pradhan29c95332018-11-14 20:14:11 -0800281 void setDisplayViewports(const std::vector<DisplayViewport>& viewports);
282
283
284 void dump(std::string& dump) const;
285 void dumpViewport(std::string& dump, const DisplayViewport& viewport) const;
286
287private:
288 std::vector<DisplayViewport> mDisplays;
289};
290
Prabir Pradhan28efc192019-11-05 01:10:04 +0000291// --- TouchAffineTransformation ---
292
Prabir Pradhan29c95332018-11-14 20:14:11 -0800293struct TouchAffineTransformation {
294 float x_scale;
295 float x_ymix;
296 float x_offset;
297 float y_xmix;
298 float y_scale;
299 float y_offset;
300
301 TouchAffineTransformation() :
302 x_scale(1.0f), x_ymix(0.0f), x_offset(0.0f),
303 y_xmix(0.0f), y_scale(1.0f), y_offset(0.0f) {
304 }
305
306 TouchAffineTransformation(float xscale, float xymix, float xoffset,
307 float yxmix, float yscale, float yoffset) :
308 x_scale(xscale), x_ymix(xymix), x_offset(xoffset),
309 y_xmix(yxmix), y_scale(yscale), y_offset(yoffset) {
310 }
311
312 void applyTo(float& x, float& y) const;
313};
314
Prabir Pradhan28efc192019-11-05 01:10:04 +0000315// --- InputReaderPolicyInterface ---
316
Prabir Pradhan29c95332018-11-14 20:14:11 -0800317/*
318 * Input reader policy interface.
319 *
320 * The input reader policy is used by the input reader to interact with the Window Manager
321 * and other system components.
322 *
323 * The actual implementation is partially supported by callbacks into the DVM
324 * via JNI. This interface is also mocked in the unit tests.
325 *
Prabir Pradhan28efc192019-11-05 01:10:04 +0000326 * These methods will NOT re-enter the input reader interface, so they may be called from
327 * any method in the input reader interface.
Prabir Pradhan29c95332018-11-14 20:14:11 -0800328 */
329class InputReaderPolicyInterface : public virtual RefBase {
330protected:
331 InputReaderPolicyInterface() { }
332 virtual ~InputReaderPolicyInterface() { }
333
334public:
335 /* Gets the input reader configuration. */
336 virtual void getReaderConfiguration(InputReaderConfiguration* outConfig) = 0;
337
338 /* Gets a pointer controller associated with the specified cursor device (ie. a mouse). */
Michael Wright17db18e2020-06-26 20:51:44 +0100339 virtual std::shared_ptr<PointerControllerInterface> obtainPointerController(
340 int32_t deviceId) = 0;
Prabir Pradhan29c95332018-11-14 20:14:11 -0800341
342 /* Notifies the input reader policy that some input devices have changed
343 * and provides information about all current input devices.
344 */
Arthur Hung7c3ae9c2019-03-11 11:23:03 +0800345 virtual void notifyInputDevicesChanged(const std::vector<InputDeviceInfo>& inputDevices) = 0;
Prabir Pradhan29c95332018-11-14 20:14:11 -0800346
347 /* Gets the keyboard layout for a particular input device. */
Chris Ye3a1e4462020-08-12 10:13:15 -0700348 virtual std::shared_ptr<KeyCharacterMap> getKeyboardLayoutOverlay(
Prabir Pradhan29c95332018-11-14 20:14:11 -0800349 const InputDeviceIdentifier& identifier) = 0;
350
351 /* Gets a user-supplied alias for a particular input device, or an empty string if none. */
352 virtual std::string getDeviceAlias(const InputDeviceIdentifier& identifier) = 0;
353
354 /* Gets the affine calibration associated with the specified device. */
355 virtual TouchAffineTransformation getTouchAffineTransformation(
356 const std::string& inputDeviceDescriptor, int32_t surfaceRotation) = 0;
Prabir Pradhan29c95332018-11-14 20:14:11 -0800357};
358
359} // namespace android
360
Garfield Tan888a6a42020-01-09 11:39:16 -0800361#endif // _UI_INPUT_READER_COMMON_H