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