2020-11-02 20:57:28 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# key-mapper - GUI for device specific keyboard mappings
|
|
|
|
# Copyright (C) 2020 sezanzeb <proxima@hip70890b.de>
|
|
|
|
#
|
|
|
|
# This file is part of key-mapper.
|
|
|
|
#
|
|
|
|
# key-mapper 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.
|
|
|
|
#
|
|
|
|
# key-mapper 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 key-mapper. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2020-11-22 12:58:56 +00:00
|
|
|
"""Keeps injecting keycodes in the background based on the mapping."""
|
2020-11-02 20:57:28 +00:00
|
|
|
|
|
|
|
|
2020-11-19 10:12:28 +00:00
|
|
|
import re
|
2020-11-19 00:02:27 +00:00
|
|
|
import asyncio
|
|
|
|
import time
|
2020-11-19 10:12:28 +00:00
|
|
|
import subprocess
|
2020-11-18 12:17:49 +00:00
|
|
|
import multiprocessing
|
2020-11-02 20:57:28 +00:00
|
|
|
|
2020-11-05 00:24:56 +00:00
|
|
|
import evdev
|
2020-12-02 14:18:23 +00:00
|
|
|
from evdev.ecodes import EV_KEY, EV_ABS
|
2020-11-05 00:24:56 +00:00
|
|
|
|
2020-11-02 20:57:28 +00:00
|
|
|
from keymapper.logger import logger
|
2020-11-22 20:41:29 +00:00
|
|
|
from keymapper.getdevices import get_devices
|
2020-11-30 15:22:17 +00:00
|
|
|
from keymapper.state import system_mapping, KEYCODE_OFFSET
|
2020-12-02 14:18:23 +00:00
|
|
|
from keymapper.dev.keycode_mapper import handle_keycode
|
|
|
|
from keymapper.dev.ev_abs_mapper import ev_abs_mapper
|
2020-11-28 17:39:55 +00:00
|
|
|
from keymapper.dev.macros import parse
|
2020-11-18 19:03:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
DEV_NAME = 'key-mapper'
|
2020-12-01 22:53:32 +00:00
|
|
|
CLOSE = 0
|
2020-11-19 00:02:27 +00:00
|
|
|
|
|
|
|
|
2020-11-19 10:12:28 +00:00
|
|
|
def is_numlock_on():
|
|
|
|
"""Get the current state of the numlock."""
|
|
|
|
xset_q = subprocess.check_output(['xset', 'q']).decode()
|
|
|
|
num_lock_status = re.search(
|
|
|
|
r'Num Lock:\s+(.+?)\s',
|
|
|
|
xset_q
|
|
|
|
)
|
2020-11-22 20:41:29 +00:00
|
|
|
|
2020-11-19 10:12:28 +00:00
|
|
|
if num_lock_status is not None:
|
|
|
|
return num_lock_status[1] == 'on'
|
|
|
|
|
2020-11-22 20:41:29 +00:00
|
|
|
return False
|
|
|
|
|
2020-11-19 10:12:28 +00:00
|
|
|
|
|
|
|
def toggle_numlock():
|
|
|
|
"""Turn the numlock on or off."""
|
|
|
|
try:
|
|
|
|
subprocess.check_output(['numlockx', 'toggle'])
|
|
|
|
except FileNotFoundError:
|
|
|
|
# doesn't seem to be installed everywhere
|
|
|
|
logger.debug('numlockx not found, trying to inject a keycode')
|
|
|
|
# and this doesn't always work.
|
|
|
|
device = evdev.UInput(
|
2020-12-01 22:53:32 +00:00
|
|
|
name=f'{DEV_NAME} numlock-control',
|
|
|
|
phys=DEV_NAME,
|
2020-11-19 10:12:28 +00:00
|
|
|
)
|
2020-11-30 21:42:53 +00:00
|
|
|
device.write(EV_KEY, evdev.ecodes.KEY_NUMLOCK, 1)
|
2020-11-19 10:12:28 +00:00
|
|
|
device.syn()
|
2020-11-30 21:42:53 +00:00
|
|
|
device.write(EV_KEY, evdev.ecodes.KEY_NUMLOCK, 0)
|
2020-11-19 10:12:28 +00:00
|
|
|
device.syn()
|
|
|
|
|
|
|
|
|
|
|
|
def ensure_numlock(func):
|
2020-11-22 20:41:29 +00:00
|
|
|
"""Decorator to reset the numlock to its initial state afterwards."""
|
2020-11-19 10:12:28 +00:00
|
|
|
def wrapped(*args, **kwargs):
|
|
|
|
# for some reason, grabbing a device can modify the num lock state.
|
|
|
|
# remember it and apply back later
|
|
|
|
numlock_before = is_numlock_on()
|
|
|
|
result = func(*args, **kwargs)
|
|
|
|
numlock_after = is_numlock_on()
|
|
|
|
if numlock_after != numlock_before:
|
|
|
|
logger.debug('Reverting numlock status to %s', numlock_before)
|
|
|
|
toggle_numlock()
|
|
|
|
return result
|
|
|
|
return wrapped
|
|
|
|
|
|
|
|
|
2020-11-18 12:17:49 +00:00
|
|
|
class KeycodeInjector:
|
2020-11-28 14:43:24 +00:00
|
|
|
"""Keeps injecting keycodes in the background based on the mapping.
|
|
|
|
|
|
|
|
Is a process to make it non-blocking for the rest of the code and to
|
|
|
|
make running multiple injector easier. There is one procss per
|
|
|
|
hardware-device that is being mapped.
|
|
|
|
"""
|
2020-11-19 10:12:28 +00:00
|
|
|
@ensure_numlock
|
2020-11-28 14:43:24 +00:00
|
|
|
def __init__(self, device, mapping):
|
|
|
|
"""Start injecting keycodes based on custom_mapping.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
device : string
|
|
|
|
the name of the device as available in get_device
|
|
|
|
"""
|
2020-11-17 13:35:36 +00:00
|
|
|
self.device = device
|
2020-11-28 14:43:24 +00:00
|
|
|
self.mapping = mapping
|
|
|
|
self._process = None
|
2020-12-01 22:53:32 +00:00
|
|
|
self._msg_pipe = multiprocessing.Pipe()
|
2020-11-30 15:22:17 +00:00
|
|
|
|
2020-12-01 23:02:41 +00:00
|
|
|
# some EV_ABS mapping stuff
|
2020-12-02 14:18:23 +00:00
|
|
|
self.abs_state = [0, 0]
|
2020-12-01 23:02:41 +00:00
|
|
|
|
2020-11-28 14:43:24 +00:00
|
|
|
def start_injecting(self):
|
|
|
|
"""Start injecting keycodes."""
|
|
|
|
self._process = multiprocessing.Process(target=self._start_injecting)
|
|
|
|
self._process.start()
|
|
|
|
|
2020-12-02 18:33:31 +00:00
|
|
|
def map_ev_to_abs(self, capabilities):
|
|
|
|
"""Check if joystick movements can and should be mapped."""
|
|
|
|
# mapping buttons only works without ABS events in the capabilities,
|
|
|
|
# possibly due to some intentional constraints in the os. So always
|
|
|
|
# do this without the option to configure, if it is possible.
|
|
|
|
return evdev.ecodes.ABS_X in capabilities.get(EV_ABS, [])
|
|
|
|
|
2020-11-28 14:43:24 +00:00
|
|
|
def _prepare_device(self, path):
|
2020-12-01 22:53:32 +00:00
|
|
|
"""Try to grab the device, return if not needed/possible.
|
|
|
|
|
|
|
|
Also return if ABS events are changed to REL mouse movements,
|
|
|
|
because the capabilities of the returned device are changed
|
|
|
|
so this cannot be checked later anymore.
|
|
|
|
"""
|
2020-11-28 14:43:24 +00:00
|
|
|
device = evdev.InputDevice(path)
|
|
|
|
|
|
|
|
if device is None:
|
2020-12-01 22:53:32 +00:00
|
|
|
return None, False
|
2020-11-28 14:43:24 +00:00
|
|
|
|
2020-11-30 15:22:17 +00:00
|
|
|
capabilities = device.capabilities(absinfo=False)
|
2020-11-28 14:43:24 +00:00
|
|
|
|
|
|
|
needed = False
|
2020-11-30 21:42:53 +00:00
|
|
|
if capabilities.get(EV_KEY) is not None:
|
2020-12-02 18:33:31 +00:00
|
|
|
for (ev_type, keycode), _ in self.mapping:
|
|
|
|
# TEST ev_type
|
|
|
|
if keycode - KEYCODE_OFFSET in capabilities.get(ev_type, []):
|
2020-11-30 21:42:53 +00:00
|
|
|
needed = True
|
|
|
|
break
|
|
|
|
|
2020-12-02 18:33:31 +00:00
|
|
|
map_ev_abs = self.map_ev_to_abs(capabilities)
|
2020-12-02 14:18:23 +00:00
|
|
|
|
2020-12-01 23:02:41 +00:00
|
|
|
if map_ev_abs:
|
2020-11-30 15:22:17 +00:00
|
|
|
needed = True
|
2020-11-28 14:43:24 +00:00
|
|
|
|
|
|
|
if not needed:
|
|
|
|
# skipping reading and checking on events from those devices
|
|
|
|
# may be beneficial for performance.
|
2020-11-29 19:18:00 +00:00
|
|
|
logger.debug('No need to grab %s', path)
|
2020-12-01 22:53:32 +00:00
|
|
|
return None, False
|
2020-11-28 14:43:24 +00:00
|
|
|
|
|
|
|
attempts = 0
|
|
|
|
while True:
|
|
|
|
device = evdev.InputDevice(path)
|
|
|
|
try:
|
|
|
|
# grab to avoid e.g. the disabled keycode of 10 to confuse
|
|
|
|
# X, especially when one of the buttons of your mouse also
|
|
|
|
# uses 10. This also avoids having to load an empty xkb
|
|
|
|
# symbols file to prevent writing any unwanted keys.
|
|
|
|
device.grab()
|
|
|
|
break
|
|
|
|
except IOError:
|
|
|
|
attempts += 1
|
2020-11-30 21:42:53 +00:00
|
|
|
# it might take a little time until the device is free if
|
|
|
|
# it was previously grabbed.
|
2020-11-30 17:59:34 +00:00
|
|
|
logger.debug('Failed attemts to grab %s: %d', path, attempts)
|
2020-11-28 14:43:24 +00:00
|
|
|
|
|
|
|
if attempts >= 4:
|
|
|
|
logger.error('Cannot grab %s, it is possibly in use', path)
|
2020-12-01 22:53:32 +00:00
|
|
|
return None, False
|
2020-11-28 14:43:24 +00:00
|
|
|
|
|
|
|
time.sleep(0.15)
|
|
|
|
|
2020-12-01 23:02:41 +00:00
|
|
|
return device, map_ev_abs
|
2020-11-28 14:43:24 +00:00
|
|
|
|
2020-12-01 23:02:41 +00:00
|
|
|
def _modify_capabilities(self, input_device, map_ev_abs):
|
2020-11-28 14:43:24 +00:00
|
|
|
"""Adds all keycode into a copy of a devices capabilities.
|
|
|
|
|
|
|
|
Prameters
|
|
|
|
---------
|
|
|
|
input_device : evdev.InputDevice
|
2020-12-01 23:02:41 +00:00
|
|
|
map_ev_abs : bool
|
2020-12-01 22:53:32 +00:00
|
|
|
if ABS capabilities should be removed in favor of REL
|
2020-11-28 14:43:24 +00:00
|
|
|
"""
|
2020-11-30 15:22:17 +00:00
|
|
|
ecodes = evdev.ecodes
|
|
|
|
|
2020-12-02 14:18:23 +00:00
|
|
|
# copy the capabilities because the uinput is going
|
2020-11-28 14:43:24 +00:00
|
|
|
# to act like the device.
|
|
|
|
capabilities = input_device.capabilities(absinfo=False)
|
2020-11-30 17:59:34 +00:00
|
|
|
|
2020-11-30 15:22:17 +00:00
|
|
|
# Furthermore, support all injected keycodes
|
2020-11-30 17:59:34 +00:00
|
|
|
if len(self.mapping) > 0 and capabilities.get(ecodes.EV_KEY) is None:
|
|
|
|
capabilities[ecodes.EV_KEY] = []
|
|
|
|
|
2020-12-02 18:33:31 +00:00
|
|
|
for (ev_type, _), character in self.mapping:
|
2020-11-30 15:22:17 +00:00
|
|
|
keycode = system_mapping.get(character)
|
|
|
|
if keycode is not None:
|
2020-12-02 18:33:31 +00:00
|
|
|
capabilities[ev_type].append(keycode - KEYCODE_OFFSET)
|
2020-11-30 15:22:17 +00:00
|
|
|
|
2020-12-01 23:02:41 +00:00
|
|
|
if map_ev_abs:
|
2020-12-01 22:53:32 +00:00
|
|
|
del capabilities[ecodes.EV_ABS]
|
2020-11-30 15:22:17 +00:00
|
|
|
capabilities[ecodes.EV_REL] = [
|
|
|
|
evdev.ecodes.REL_X,
|
|
|
|
evdev.ecodes.REL_Y,
|
|
|
|
# for my system to recognize it as mouse, WHEEL is also needed:
|
|
|
|
evdev.ecodes.REL_WHEEL,
|
|
|
|
]
|
2020-11-28 14:43:24 +00:00
|
|
|
|
|
|
|
# just like what python-evdev does in from_device
|
2020-11-30 15:22:17 +00:00
|
|
|
if ecodes.EV_SYN in capabilities:
|
|
|
|
del capabilities[ecodes.EV_SYN]
|
|
|
|
if ecodes.EV_FF in capabilities:
|
|
|
|
del capabilities[ecodes.EV_FF]
|
2020-11-28 14:43:24 +00:00
|
|
|
|
|
|
|
return capabilities
|
|
|
|
|
2020-12-01 22:53:32 +00:00
|
|
|
async def _msg_listener(self, loop):
|
|
|
|
"""Wait for messages from the main process to do special stuff."""
|
|
|
|
while True:
|
|
|
|
frame_available = asyncio.Event()
|
|
|
|
loop.add_reader(self._msg_pipe[0].fileno(), frame_available.set)
|
|
|
|
await frame_available.wait()
|
|
|
|
frame_available.clear()
|
|
|
|
msg = self._msg_pipe[0].recv()
|
|
|
|
if msg == CLOSE:
|
|
|
|
logger.debug('Received close signal')
|
|
|
|
# stop the event loop and cause the process to reach its end
|
|
|
|
# cleanly. Using .terminate prevents coverage from working.
|
|
|
|
loop.stop()
|
|
|
|
return
|
|
|
|
|
2020-11-28 14:43:24 +00:00
|
|
|
def _start_injecting(self):
|
|
|
|
"""The injection worker that keeps injecting until terminated.
|
|
|
|
|
|
|
|
Stuff is non-blocking by using asyncio in order to do multiple things
|
|
|
|
somewhat concurrently.
|
|
|
|
"""
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
coroutines = []
|
2020-11-18 19:03:37 +00:00
|
|
|
|
2020-11-22 15:54:40 +00:00
|
|
|
logger.info('Starting injecting the mapping for %s', self.device)
|
2020-11-18 19:03:37 +00:00
|
|
|
|
2020-11-30 15:22:17 +00:00
|
|
|
paths = get_devices()[self.device]['paths']
|
|
|
|
|
2020-11-18 19:03:37 +00:00
|
|
|
# Watch over each one of the potentially multiple devices per hardware
|
2020-12-01 22:53:32 +00:00
|
|
|
for path in paths:
|
2020-12-01 23:02:41 +00:00
|
|
|
input_device, map_ev_abs = self._prepare_device(path)
|
2020-11-28 14:43:24 +00:00
|
|
|
if input_device is None:
|
|
|
|
continue
|
|
|
|
|
2020-11-30 15:22:17 +00:00
|
|
|
# certain capabilities can have side effects apparently. with an
|
|
|
|
# EV_ABS capability, EV_REL won't move the mouse pointer anymore.
|
|
|
|
# so don't merge all InputDevices into one UInput device.
|
2020-11-28 14:43:24 +00:00
|
|
|
uinput = evdev.UInput(
|
2020-12-01 22:53:32 +00:00
|
|
|
name=f'{DEV_NAME} {self.device}',
|
|
|
|
phys=DEV_NAME,
|
2020-12-01 23:02:41 +00:00
|
|
|
events=self._modify_capabilities(input_device, map_ev_abs)
|
2020-11-18 19:03:37 +00:00
|
|
|
)
|
2020-11-30 15:22:17 +00:00
|
|
|
|
2020-11-30 21:42:53 +00:00
|
|
|
# keycode injection
|
2020-12-01 23:02:41 +00:00
|
|
|
coroutine = self._keycode_loop(input_device, uinput, map_ev_abs)
|
2020-11-28 14:43:24 +00:00
|
|
|
coroutines.append(coroutine)
|
2020-11-19 00:40:47 +00:00
|
|
|
|
2020-11-30 21:42:53 +00:00
|
|
|
# mouse movement injection
|
2020-12-01 23:02:41 +00:00
|
|
|
if map_ev_abs:
|
2020-12-02 14:18:23 +00:00
|
|
|
self.abs_state[0] = 0
|
|
|
|
self.abs_state[1] = 0
|
|
|
|
coroutine = ev_abs_mapper(
|
|
|
|
self.abs_state,
|
|
|
|
input_device,
|
|
|
|
uinput
|
|
|
|
)
|
2020-11-30 21:42:53 +00:00
|
|
|
coroutines.append(coroutine)
|
|
|
|
|
2020-11-28 14:43:24 +00:00
|
|
|
if len(coroutines) == 0:
|
2020-11-30 21:42:53 +00:00
|
|
|
logger.error('Did not grab any device')
|
|
|
|
return
|
2020-11-18 19:03:37 +00:00
|
|
|
|
2020-12-01 22:53:32 +00:00
|
|
|
coroutines.append(self._msg_listener(loop))
|
|
|
|
|
|
|
|
try:
|
|
|
|
loop.run_until_complete(asyncio.gather(*coroutines))
|
|
|
|
except RuntimeError:
|
|
|
|
# stopped event loop most likely
|
|
|
|
pass
|
2020-11-28 14:43:24 +00:00
|
|
|
|
2020-11-30 21:42:53 +00:00
|
|
|
if len(coroutines) > 0:
|
|
|
|
logger.debug('asyncio coroutines ended')
|
|
|
|
|
2020-12-02 14:18:23 +00:00
|
|
|
def _macro_write(self, character, value, uinput):
|
2020-11-28 23:13:13 +00:00
|
|
|
"""Handler for macros."""
|
2020-11-30 15:22:17 +00:00
|
|
|
keycode = system_mapping[character]
|
2020-11-28 23:28:46 +00:00
|
|
|
logger.spam(
|
|
|
|
'macro writes code:%s value:%d char:%s',
|
|
|
|
keycode, value, character
|
|
|
|
)
|
2020-12-02 14:18:23 +00:00
|
|
|
uinput.write(EV_KEY, keycode - KEYCODE_OFFSET, value)
|
|
|
|
uinput.syn()
|
2020-11-30 19:57:09 +00:00
|
|
|
|
2020-12-02 14:18:23 +00:00
|
|
|
async def _keycode_loop(self, device, uinput, map_ev_abs):
|
2020-11-28 14:43:24 +00:00
|
|
|
"""Inject keycodes for one of the virtual devices.
|
|
|
|
|
2020-12-02 15:17:52 +00:00
|
|
|
Can be stopped by stopping the asyncio loop.
|
|
|
|
|
2020-11-28 14:43:24 +00:00
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
device : evdev.InputDevice
|
|
|
|
where to read keycodes from
|
2020-12-02 14:18:23 +00:00
|
|
|
uinput : evdev.UInput
|
2020-11-28 14:43:24 +00:00
|
|
|
where to write keycodes to
|
2020-12-01 23:02:41 +00:00
|
|
|
map_ev_abs : bool
|
2020-12-02 14:18:23 +00:00
|
|
|
if joystick events should be mapped to mouse movements
|
2020-11-28 14:43:24 +00:00
|
|
|
"""
|
2020-12-02 15:17:52 +00:00
|
|
|
# efficiently figure out the target keycode without taking
|
|
|
|
# extra steps.
|
|
|
|
code_code_mapping = {}
|
|
|
|
|
2020-11-28 21:54:22 +00:00
|
|
|
# Parse all macros beforehand
|
|
|
|
logger.debug('Parsing macros')
|
|
|
|
macros = {}
|
2020-12-02 18:33:31 +00:00
|
|
|
for (ev_type, keycode), output in self.mapping:
|
2020-12-02 16:40:21 +00:00
|
|
|
keycode -= KEYCODE_OFFSET
|
|
|
|
|
2020-11-29 09:42:20 +00:00
|
|
|
if '(' in output and ')' in output and len(output) >= 4:
|
2020-11-28 21:54:22 +00:00
|
|
|
# probably a macro
|
|
|
|
macros[keycode] = parse(
|
|
|
|
output,
|
2020-12-02 14:18:23 +00:00
|
|
|
lambda *args: self._macro_write(*args, uinput)
|
2020-11-28 21:54:22 +00:00
|
|
|
)
|
2020-12-02 15:17:52 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
target_keycode = system_mapping.get(output)
|
|
|
|
if target_keycode is None:
|
|
|
|
logger.error('Don\'t know what %s is', output)
|
2020-12-02 16:40:21 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
code_code_mapping[keycode] = target_keycode - KEYCODE_OFFSET
|
2020-11-28 21:54:22 +00:00
|
|
|
|
2020-11-28 14:43:24 +00:00
|
|
|
logger.debug(
|
|
|
|
'Started injecting into %s, fd %s',
|
2020-12-02 14:18:23 +00:00
|
|
|
uinput.device.path, uinput.fd
|
2020-11-28 14:43:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
async for event in device.async_read_loop():
|
2020-12-01 23:02:41 +00:00
|
|
|
if map_ev_abs and event.type == EV_ABS:
|
2020-11-30 15:22:17 +00:00
|
|
|
if event.code not in [evdev.ecodes.ABS_X, evdev.ecodes.ABS_Y]:
|
|
|
|
continue
|
2020-11-30 18:40:17 +00:00
|
|
|
if event.code == evdev.ecodes.ABS_X:
|
2020-12-02 14:18:23 +00:00
|
|
|
self.abs_state[0] = event.value
|
2020-11-30 18:40:17 +00:00
|
|
|
if event.code == evdev.ecodes.ABS_Y:
|
2020-12-02 14:18:23 +00:00
|
|
|
self.abs_state[1] = event.value
|
2020-11-30 15:22:17 +00:00
|
|
|
continue
|
|
|
|
|
2020-11-30 21:42:53 +00:00
|
|
|
if event.type != EV_KEY:
|
2020-12-02 14:18:23 +00:00
|
|
|
uinput.write(event.type, event.code, event.value)
|
2020-11-28 14:43:24 +00:00
|
|
|
# this already includes SYN events, so need to syn here again
|
|
|
|
continue
|
|
|
|
|
|
|
|
if event.value == 2:
|
|
|
|
# linux does them itself, no need to trigger them
|
|
|
|
continue
|
|
|
|
|
2020-12-02 15:17:52 +00:00
|
|
|
handle_keycode(code_code_mapping, macros, event, uinput)
|
2020-11-28 14:43:24 +00:00
|
|
|
|
2020-11-28 16:49:32 +00:00
|
|
|
# this should only ever happen in tests to avoid blocking them
|
|
|
|
# forever, as soon as all events are consumed. In normal operation
|
|
|
|
# there is no end to the events.
|
|
|
|
logger.error(
|
|
|
|
'The injector for "%s" stopped early',
|
2020-12-02 14:18:23 +00:00
|
|
|
uinput.device.path
|
2020-11-28 16:49:32 +00:00
|
|
|
)
|
|
|
|
|
2020-11-19 10:12:28 +00:00
|
|
|
@ensure_numlock
|
2020-11-18 19:03:37 +00:00
|
|
|
def stop_injecting(self):
|
|
|
|
"""Stop injecting keycodes."""
|
2020-11-30 21:42:53 +00:00
|
|
|
logger.info('Stopping injecting keycodes for device "%s"', self.device)
|
2020-12-01 22:53:32 +00:00
|
|
|
self._msg_pipe[1].send(CLOSE)
|