1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
#!/usr/bin/env python3
# vim: set expandtab shiftwidth=4:
# -*- Mode: python; coding: utf-8; indent-tabs-mode: nil -*- */
#
# Copyright © 2017 Red Hat, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#
import sys
import argparse
try:
import libevdev
import textwrap
import pyudev
except ModuleNotFoundError as e:
print("Error: {}".format(e), file=sys.stderr)
print(
"One or more python modules are missing. Please install those "
"modules and re-run this tool."
)
sys.exit(1)
print_dest = sys.stdout
def error(msg, **kwargs):
print(msg, **kwargs, file=sys.stderr)
def msg(msg, **kwargs):
print(msg, **kwargs, file=print_dest, flush=True)
def tv2us(sec, usec):
return sec * 1000000 + usec
def us2ms(us):
return int(us / 1000)
class Touch(object):
def __init__(self, down):
self._down = down
self._up = down
@property
def up(self):
return us2ms(self._up)
@up.setter
def up(self, up):
assert up > self.down
self._up = up
@property
def down(self):
return us2ms(self._down)
@property
def tdelta(self):
return self.up - self.down
class InvalidDeviceError(Exception):
pass
class Device(libevdev.Device):
def __init__(self, path):
if path is None:
self.path = self._find_touch_device()
else:
self.path = path
fd = open(self.path, "rb")
super().__init__(fd)
print("Using {}: {}\n".format(self.name, self.path))
if not self.has(libevdev.EV_KEY.BTN_TOUCH):
raise InvalidDeviceError("device does not have BTN_TOUCH")
self.touches = []
self.warned = False
def _find_touch_device(self):
context = pyudev.Context()
device_node = None
for device in context.list_devices(subsystem="input"):
if not device.device_node or not device.device_node.startswith(
"/dev/input/event"
):
continue
# pick the touchpad by default, fallback to the first
# touchscreen only when there is no touchpad
if device.get("ID_INPUT_TOUCHPAD", 0):
device_node = device.device_node
break
if device.get("ID_INPUT_TOUCHSCREEN", 0) and device_node is None:
device_node = device.device_node
if device_node is not None:
return device_node
error("Unable to find a touch device.")
sys.exit(1)
def handle_btn_touch(self, event):
if event.value != 0:
t = Touch(tv2us(event.sec, event.usec))
self.touches.append(t)
else:
self.touches[-1].up = tv2us(event.sec, event.usec)
msg("\rTouch sequences detected: {}".format(len(self.touches)), end="")
def handle_key(self, event):
tapcodes = [
libevdev.EV_KEY.BTN_TOOL_DOUBLETAP,
libevdev.EV_KEY.BTN_TOOL_TRIPLETAP,
libevdev.EV_KEY.BTN_TOOL_QUADTAP,
libevdev.EV_KEY.BTN_TOOL_QUINTTAP,
]
if event.code in tapcodes and event.value > 0:
if not self.warned:
self.warned = True
error(
"\rThis tool cannot handle multiple fingers, output will be invalid"
)
return
if event.matches(libevdev.EV_KEY.BTN_TOUCH):
self.handle_btn_touch(event)
def handle_syn(self, event):
if self.touch.dirty:
self.current_sequence().append(self.touch)
self.touch = Touch(
major=self.touch.major,
minor=self.touch.minor,
orientation=self.touch.orientation,
)
def handle_event(self, event):
if event.matches(libevdev.EV_KEY):
self.handle_key(event)
def read_events(self):
while True:
for event in self.events():
self.handle_event(event)
def print_summary(self):
deltas = sorted(t.tdelta for t in self.touches)
dmax = max(deltas)
dmin = min(deltas)
ndeltas = len(deltas)
davg = sum(deltas) / ndeltas
dmedian = deltas[int(ndeltas / 2)]
d95pc = deltas[int(ndeltas * 0.95)]
d90pc = deltas[int(ndeltas * 0.90)]
print("Time: ")
print(" Max delta: {}ms".format(int(dmax)))
print(" Min delta: {}ms".format(int(dmin)))
print(" Average delta: {}ms".format(int(davg)))
print(" Median delta: {}ms".format(int(dmedian)))
print(" 90th percentile: {}ms".format(int(d90pc)))
print(" 95th percentile: {}ms".format(int(d95pc)))
def print_dat(self):
print("# libinput-measure-touchpad-tap")
print(
textwrap.dedent(
"""\
# File contents:
# This file contains multiple prints of the data in
# different sort order. Row number is index of touch
# point within each group. Comparing data across groups
# will result in invalid analysis.
# Columns (1-indexed):
# Group 1, sorted by time of occurrence
# 1: touch down time in ms, offset by first event
# 2: touch up time in ms, offset by first event
# 3: time delta in ms);
# Group 2, sorted by touch down-up delta time (ascending)
# 4: touch down time in ms, offset by first event
# 5: touch up time in ms, offset by first event
# 6: time delta in ms
"""
)
)
deltas = [t for t in self.touches]
deltas_sorted = sorted(deltas, key=lambda t: t.tdelta)
offset = deltas[0].down
for t1, t2 in zip(deltas, deltas_sorted):
print(
t1.down - offset,
t1.up - offset,
t1.tdelta,
t2.down - offset,
t2.up - offset,
t2.tdelta,
)
def print(self, format):
if not self.touches:
error("No tap data available")
return
if format == "summary":
self.print_summary()
elif format == "dat":
self.print_dat()
def main(args):
parser = argparse.ArgumentParser(
description="Measure tap-to-click properties of devices"
)
parser.add_argument(
"path",
metavar="/dev/input/event0",
nargs="?",
type=str,
help="Path to device (optional)",
)
parser.add_argument(
"--format",
metavar="format",
choices=["summary", "dat"],
default="summary",
help='data format to print ("summary" or "dat")',
)
args = parser.parse_args()
if not sys.stdout.isatty():
global print_dest
print_dest = sys.stderr
try:
device = Device(args.path)
error(
"Ready for recording data.\n"
"Tap the touchpad multiple times with a single finger only.\n"
"For useful data we recommend at least 20 taps.\n"
"Ctrl+C to exit"
)
device.read_events()
except KeyboardInterrupt:
msg("")
device.print(args.format)
except (PermissionError, OSError) as e:
error("Error: failed to open device. {}".format(e))
except InvalidDeviceError as e:
error("Error: {}".format(e))
if __name__ == "__main__":
main(sys.argv)
|