2022-01-14 17:50:57 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# input-remapper - GUI for device specific keyboard mappings
|
|
|
|
# Copyright (C) 2022 sezanzeb <proxima@sezanzeb.de>
|
|
|
|
#
|
|
|
|
# This file is part of input-remapper.
|
|
|
|
#
|
|
|
|
# input-remapper is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# input-remapper is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with input-remapper. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
import evdev
|
2022-03-17 09:32:22 +00:00
|
|
|
|
2022-01-14 17:50:57 +00:00
|
|
|
import inputremapper.utils
|
|
|
|
import inputremapper.exceptions
|
|
|
|
from inputremapper.logger import logger
|
|
|
|
|
2022-03-17 09:32:22 +00:00
|
|
|
|
2022-01-14 17:50:57 +00:00
|
|
|
DEV_NAME = "input-remapper"
|
|
|
|
DEFAULT_UINPUTS = {
|
|
|
|
# for event codes see linux/input-event-codes.h
|
|
|
|
"keyboard": {
|
|
|
|
evdev.ecodes.EV_KEY: list(evdev.ecodes.KEY.keys() & evdev.ecodes.keys.keys())
|
|
|
|
},
|
|
|
|
"gamepad": {
|
|
|
|
evdev.ecodes.EV_KEY: [*range(0x130, 0x13F)], # BTN_SOUTH - BTN_THUMBR
|
|
|
|
evdev.ecodes.EV_ABS: [
|
|
|
|
*range(0x00, 0x06),
|
|
|
|
*range(0x10, 0x12),
|
|
|
|
], # 6-axis and 1 hat switch
|
|
|
|
},
|
|
|
|
"mouse": {
|
|
|
|
evdev.ecodes.EV_KEY: [*range(0x110, 0x118)], # BTN_LEFT - BTN_TASK
|
2022-04-17 10:19:23 +00:00
|
|
|
evdev.ecodes.EV_REL: [*range(0x00, 0x0D)], # all REL axis
|
2022-01-14 17:50:57 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class UInput(evdev.UInput):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
logger.debug(f"creating UInput device: '{kwargs['name']}'")
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def can_emit(self, event):
|
2022-04-18 11:52:59 +00:00
|
|
|
"""Check if an event can be emitted by the uinput
|
2022-01-14 17:50:57 +00:00
|
|
|
|
|
|
|
Wrong events might be injected if the group mappings are wrong
|
|
|
|
"""
|
|
|
|
# TODO check for event value especially for EV_ABS
|
|
|
|
return event[1] in self.capabilities().get(event[0], [])
|
|
|
|
|
|
|
|
|
|
|
|
class FrontendUInput:
|
2022-04-18 11:52:59 +00:00
|
|
|
"""Uinput which can not actually send events, for use in the frontend."""
|
2022-01-14 17:50:57 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, events=None, name="py-evdev-uinput", **kwargs):
|
|
|
|
# see https://python-evdev.readthedocs.io/en/latest/apidoc.html#module-evdev.uinput
|
|
|
|
self.events = events
|
|
|
|
self.name = name
|
|
|
|
|
|
|
|
logger.debug(f"creating fake UInput device: '{self.name}'")
|
|
|
|
|
|
|
|
def capabilities(self):
|
|
|
|
return self.events
|
|
|
|
|
|
|
|
|
|
|
|
class GlobalUInputs:
|
|
|
|
"""Manages all uinputs that are shared between all injection processes."""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.devices = {}
|
|
|
|
self._uinput_factory = None
|
2022-03-17 09:32:22 +00:00
|
|
|
self.is_service = inputremapper.utils.is_service()
|
2022-01-14 17:50:57 +00:00
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return iter(uinput for _, uinput in self.devices.items())
|
|
|
|
|
2022-03-17 09:32:22 +00:00
|
|
|
def ensure_uinput_factory_set(self):
|
|
|
|
if self._uinput_factory is not None:
|
|
|
|
return
|
2022-01-14 17:50:57 +00:00
|
|
|
|
2022-03-17 09:32:22 +00:00
|
|
|
if self.is_service:
|
2022-01-14 17:50:57 +00:00
|
|
|
self._uinput_factory = UInput
|
|
|
|
else:
|
|
|
|
self._uinput_factory = FrontendUInput
|
|
|
|
|
2022-03-17 09:32:22 +00:00
|
|
|
def prepare_all(self):
|
|
|
|
"""Generate uinputs."""
|
|
|
|
self.ensure_uinput_factory_set()
|
|
|
|
|
2022-01-14 17:50:57 +00:00
|
|
|
for name, events in DEFAULT_UINPUTS.items():
|
|
|
|
if name in self.devices.keys():
|
|
|
|
continue
|
2022-03-17 09:32:22 +00:00
|
|
|
|
2022-01-14 17:50:57 +00:00
|
|
|
self.devices[name] = self._uinput_factory(
|
|
|
|
name=f"{DEV_NAME} {name}",
|
|
|
|
phys=DEV_NAME,
|
|
|
|
events=events,
|
|
|
|
)
|
|
|
|
|
2022-03-17 09:32:22 +00:00
|
|
|
def prepare_single(self, name: str):
|
|
|
|
"""Generate a single uinput.
|
|
|
|
|
|
|
|
This has to be done in the main process before injections that use it start.
|
|
|
|
"""
|
|
|
|
self.ensure_uinput_factory_set()
|
|
|
|
|
|
|
|
if name not in DEFAULT_UINPUTS:
|
|
|
|
raise KeyError("Could not find a matching uinput to generate.")
|
|
|
|
|
|
|
|
if name in self.devices:
|
|
|
|
logger.debug('Target "%s" already exists', name)
|
|
|
|
return
|
|
|
|
|
|
|
|
self.devices[name] = self._uinput_factory(
|
|
|
|
name=f"{DEV_NAME} {name}",
|
|
|
|
phys=DEV_NAME,
|
|
|
|
events=DEFAULT_UINPUTS[name],
|
|
|
|
)
|
|
|
|
|
2022-01-14 17:50:57 +00:00
|
|
|
def write(self, event, target_uinput):
|
2022-04-18 11:52:59 +00:00
|
|
|
"""Write event to target uinput."""
|
2022-01-14 17:50:57 +00:00
|
|
|
uinput = self.get_uinput(target_uinput)
|
|
|
|
if not uinput:
|
|
|
|
raise inputremapper.exceptions.UinputNotAvailable(target_uinput)
|
|
|
|
|
|
|
|
if not uinput.can_emit(event):
|
|
|
|
raise inputremapper.exceptions.EventNotHandled(event)
|
|
|
|
|
|
|
|
uinput.write(*event)
|
|
|
|
uinput.syn()
|
|
|
|
|
2022-03-17 09:32:22 +00:00
|
|
|
def get_uinput(self, name: str):
|
2022-01-14 17:50:57 +00:00
|
|
|
"""UInput with name
|
|
|
|
|
|
|
|
Or None if there is no uinput with this name.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
name : uniqe name of the uinput device
|
|
|
|
"""
|
|
|
|
if name in self.devices.keys():
|
|
|
|
return self.devices[name]
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
global_uinputs = GlobalUInputs()
|