mirror of
https://github.com/moparisthebest/uinput-mapper
synced 2024-11-05 16:45:02 -05:00
98 lines
2.2 KiB
Python
Executable File
98 lines
2.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
import linux_uinput, ctypes, fcntl, os, sys
|
|
import select
|
|
|
|
from cinput import *
|
|
from mapper import KeyMapper, parse_conf
|
|
|
|
try:
|
|
import cPickle as pickle
|
|
except ImportError:
|
|
import pickle
|
|
|
|
import optparse
|
|
|
|
_usage = 'input-read /dev/input/event<0> ... /dev/input/event<N>'
|
|
parser = optparse.OptionParser(description='Read input devices.',
|
|
usage = _usage,
|
|
version='0.01')
|
|
parser.add_option('-D', '--dump', action='store_false',
|
|
default=True, help='Dump will marshall all the events to stdout')
|
|
|
|
parser.add_option('-C', '--compat', action='store_true',
|
|
help='Enable compatibility mode; for Python < 2.7')
|
|
|
|
args, input_file = parser.parse_args()
|
|
|
|
|
|
if len(input_file) == 0:
|
|
parser.print_help()
|
|
exit(0)
|
|
|
|
fs = map(InputDevice, input_file)
|
|
|
|
config = {}
|
|
for idx, f in enumerate(fs):
|
|
c = parse_conf(f, idx)
|
|
|
|
config.update(c)
|
|
|
|
pp = select.epoll()
|
|
for f in fs:
|
|
pp.register(f.get_fd(), select.EPOLLIN)
|
|
|
|
if args.dump:
|
|
for f in fs:
|
|
print 'Version:', f.get_version()
|
|
print f.get_name()
|
|
|
|
d = f.get_exposed_events()
|
|
for k, v in d.iteritems():
|
|
print k + ':', ', '.join(v)
|
|
|
|
else:
|
|
p = pickle.Pickler(sys.stdout)
|
|
|
|
p.dump(len(fs))
|
|
|
|
p.dump(config)
|
|
|
|
sys.stdout.flush()
|
|
|
|
i = 0
|
|
while True:
|
|
events = pp.poll()
|
|
|
|
for e in events:
|
|
fd, ev_mask = e
|
|
|
|
if not ev_mask & select.EPOLLIN:
|
|
continue
|
|
|
|
# Lets undo that epoll speedup ;-)
|
|
for idx, _ in enumerate(fs):
|
|
if _.get_fd() == fd:
|
|
f = _
|
|
i = idx
|
|
|
|
ev = f.next_event()
|
|
|
|
if args.dump:
|
|
try:
|
|
print i, ev.time.tv_sec, ev.time.tv_usec
|
|
s = '%s %s %d' % (rev_events[ev.type], rev_event_keys[ev.type][ev.code], ev.value)
|
|
print 'Event type:', s
|
|
except KeyError:
|
|
pass
|
|
|
|
else:
|
|
if not args.compat:
|
|
p.dump((i, ev))
|
|
else:
|
|
# Use this rather than the line above if you use an old python version (also
|
|
# edit create.py)
|
|
p.dump((i, (ev.time.tv_sec, ev.time.tv_usec, ev.type, ev.code,
|
|
ev.value)))
|
|
|
|
sys.stdout.flush()
|