uinput-mapper/input-create

74 lines
1.7 KiB
Plaintext
Raw Normal View History

2013-05-14 23:46:18 +02:00
#!/usr/bin/env python
import linux_uinput, ctypes, fcntl, os, sys
2013-04-20 01:10:16 +02:00
from cinput import *
from mapper import KeyMapper, parse_conf, pretty_conf_print, \
get_exported_device_count
2013-05-09 16:10:28 +02:00
from linux_input import timeval, input_event
2013-05-09 16:10:28 +02:00
try:
import cPickle as pickle
except ImportError:
import pickle
2013-05-14 21:30:03 +02:00
import imp
import optparse
2013-05-14 21:30:03 +02:00
_usage = 'python create.py /path/to/config1 ... /path/to/configN'
parser = optparse.OptionParser(description='Create input devices.',
usage=_usage,
version='0.01'
)
parser.add_option('-C', '--compat', action='store_true',
help='Enable compatibility mode; for Python < 2.7')
2013-05-18 18:32:44 +02:00
parser.add_option('-v', '--verbose', action='store_true',
help='Enable verbose mode')
2013-05-10 17:33:25 +02:00
args, cfg = parser.parse_args()
# Unpickle from stdin ; currently this is the default and only way
in_f = pickle.Unpickler(sys.stdin)
2013-05-18 18:32:44 +02:00
# Read input device count
nifd = in_f.load()
2013-05-18 18:32:44 +02:00
# Read configuration
conf = in_f.load()
2013-05-19 13:07:59 +02:00
if args.verbose:
pretty_conf_print(conf)
2013-05-18 18:32:44 +02:00
# Allow configurations to change our current configuration
2013-05-10 17:33:25 +02:00
for path in cfg:
config_merge = imp.load_source('', path).config_merge
config_merge(conf)
2013-05-18 18:32:44 +02:00
if args.verbose:
pretty_conf_print(conf)
2013-05-09 16:10:28 +02:00
m = KeyMapper(conf)
2013-05-18 18:32:44 +02:00
# Get number of output devices (determined from conf)
nofd = get_exported_device_count(conf)
2013-05-18 18:32:44 +02:00
# Create and expose uinput devices
ofs = []
for f in xrange(nofd):
d = UInputDevice()
m.expose(d, f)
d.setup('Example input device')
ofs.append(d)
2013-05-18 18:32:44 +02:00
# Map events
while True:
if not args.compat:
fd, ev = in_f.load()
else:
fd, ev_p = in_f.load()
ti = timeval(ev_p[0], ev_p[1])
ev = input_event(ti, ev_p[2], ev_p[3], ev_p[4])
2013-04-19 01:11:56 +02:00
idx, ev = m.map_event(ev, fd)
d = ofs[idx]
2013-04-19 01:11:56 +02:00
d.fire_event(ev)