summaryrefslogtreecommitdiff
path: root/tools/libinput-list-kernel-devices.py
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2022-12-08 09:41:14 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2022-12-08 10:08:44 +1000
commit1250407c7c7b3160a590684211d4112385bf36ca (patch)
tree26500e92edf422707d57e2f20e14ef2504533697 /tools/libinput-list-kernel-devices.py
parentfb8d2855664aa49ba078f27e147fb218679198be (diff)
downloadlibinput-1250407c7c7b3160a590684211d4112385bf36ca.tar.gz
tools: add a libinput list-kernel-devices tool
Same as libinput list-devices, but lists the available event nodes. This effectively does the same as libinput record without arguments but it's more obvious in what it is supposed to do and thus easier to point to. Also, it uses pyudev instead of libevdev so it does not need to run as root to discover devices. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'tools/libinput-list-kernel-devices.py')
-rwxr-xr-xtools/libinput-list-kernel-devices.py69
1 files changed, 69 insertions, 0 deletions
diff --git a/tools/libinput-list-kernel-devices.py b/tools/libinput-list-kernel-devices.py
new file mode 100755
index 00000000..95caa08b
--- /dev/null
+++ b/tools/libinput-list-kernel-devices.py
@@ -0,0 +1,69 @@
+#!/usr/bin/env python3
+# vim: set expandtab shiftwidth=4:
+# -*- Mode: python; coding: utf-8; indent-tabs-mode: nil -*- */
+#
+# Copyright © 2018 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 argparse
+import sys
+
+try:
+ import pyudev
+except ModuleNotFoundError as e:
+ print("Error: {}".format(str(e)), file=sys.stderr)
+ print(
+ "One or more python modules are missing. Please install those "
+ "modules and re-run this tool."
+ )
+ sys.exit(1)
+
+
+def list_devices():
+ devices = {}
+ context = pyudev.Context()
+ for device in context.list_devices(subsystem="input"):
+ if (device.device_node or "").startswith("/dev/input/event"):
+ parent = device.parent
+ if parent is not None:
+ name = parent.properties["NAME"] or ""
+ # The udev name includes enclosing quotes
+ devices[device.device_node] = name[1:-1]
+
+ def versionsort(key):
+ return int(key[len("/dev/input/event") :])
+
+ for k in sorted(devices, key=versionsort):
+ print(f"{k}:\t{devices[k]}")
+
+
+def main():
+ parser = argparse.ArgumentParser(description="List kernel devices")
+ args = parser.parse_args()
+
+ list_devices()
+
+
+if __name__ == "__main__":
+ try:
+ main()
+ except KeyboardInterrupt:
+ print("Exited on user request")