uinput-mapper/py/create.py

56 lines
1.2 KiB
Python

import linux_uinput, ctypes, fcntl, os, sys
from cinput import *
from mapper import KeyMapper, parse_conf
from example_conf import config
from linux_input import timeval, input_event
import imp
try:
import cPickle as pickle
except ImportError:
import pickle
import optparse
parser = optparse.OptionParser(description='Create input devices. '
'TODO')
parser.add_option('-c', '--config', type=str, action='append',
default=[],
help='Merge configuration file with default '
'configuration (allowed to be used multiple times)')
parser.add_option('-C', '--compat', action='store_true',
help='Enable compatibility mode; for Python < 2.7')
args = parser.parse_args()
# Unpickle from stdin ; currently this is the default and only way
f = pickle.Unpickler(sys.stdin)
conf = f.load()
for path in args.config:
if path:
config = imp.load_source('', path).config
conf.update(config)
m = KeyMapper(conf)
d = UInputDevice()
m.expose(d)
d.setup('Example input device')
while True:
if not args.compat:
ev = f.load()
else:
ev_p = f.load()
ti = timeval(ev_p[0], ev_p[1])
ev = input_event(ti, ev_p[2], ev_p[3], ev_p[4])
ev = m.map_event(ev)
d.fire_event(ev)