#!/usr/bin/python3 # -*- coding: utf-8 -*- # key-mapper - GUI for device specific keyboard mappings # Copyright (C) 2020 sezanzeb # # 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 . """Starts injecting keycodes based on the configuration. https://github.com/LEW21/pydbus/tree/cc407c8b1d25b7e28a6d661a29f9e661b1c9b964/examples/clientserver # noqa pylint: disable=line-too-long """ import subprocess import json from pydbus import SystemBus from gi.repository import GLib from keymapper.logger import logger from keymapper.dev.injector import KeycodeInjector from keymapper.mapping import Mapping from keymapper.config import config from keymapper.state import system_mapping from keymapper.getdevices import get_devices, refresh_devices BUS_NAME = 'keymapper.Control' def is_service_running(): """Check if the daemon is running.""" try: subprocess.check_output(['pgrep', '-f', 'key-mapper-service']) except subprocess.CalledProcessError: return False return True def get_dbus_interface(fallback=True): """Get an interface to start and stop injecting keystrokes. Parameters ---------- fallback : bool If true, returns an instance of the daemon instead if it cannot connect """ msg = ( 'The daemon "key-mapper-service" is not running, mapping keys ' 'only works as long as the window is open. ' 'Try `sudo systemctl start key-mapper`' ) if not is_service_running(): if not fallback: logger.error('Service not running') return None logger.warning(msg) return Daemon() bus = SystemBus() try: interface = bus.get(BUS_NAME) except GLib.GError as error: logger.debug(error) if not fallback: logger.error('Failed to connect to the running service') return None logger.warning(msg) return Daemon() return interface class Daemon: """Starts injecting keycodes based on the configuration. Can be talked to either over dbus or by instantiating it. The Daemon may not have any knowledge about the logged in user, so it can't read any config files. It has to be told what to do and will continue to do so afterwards, but it can't decide to start injecting on its own. """ dbus = f""" """ def __init__(self): """Constructs the daemon.""" logger.debug('Creating daemon') self.injectors = {} def stop_injecting(self, device): """Stop injecting the mapping for a single device.""" if self.injectors.get(device) is None: logger.error( 'Tried to stop injector, but none is running for device "%s"', device ) return self.injectors[device].stop_injecting() del self.injectors[device] def is_injecting(self, device): """Is this device being mapped?""" return device in self.injectors def start_injecting(self, device, path, xmodmap_path=None): """Start injecting the preset for the device. Returns True on success. Parameters ---------- device : string The name of the device path : string Path to the preset. The daemon, if started via systemctl, has no knowledge of the user and their home path, so the complete absolute path needs to be provided here. xmodmap_path : string, None Path to a dump of the xkb mappings, to provide more human readable keys in the correct keyboard layout to the service. The service cannot use `xmodmap -pke` because it's running via systemd. """ if device not in get_devices(): logger.debug('Devices possibly outdated, refreshing') refresh_devices() # reload the config, since it may have been changed config.load_config() if self.injectors.get(device) is not None: self.injectors[device].stop_injecting() mapping = Mapping() try: mapping.load(path) except FileNotFoundError as error: logger.error(str(error)) return False if xmodmap_path is not None: try: with open(xmodmap_path, 'r') as file: xmodmap = json.load(file) logger.debug('Using keycodes from "%s"', xmodmap_path) system_mapping.update(xmodmap) # the service now has process wide knowledge of xmodmap # keys of the users session except FileNotFoundError: logger.error('Could not find "%s"', xmodmap_path) try: injector = KeycodeInjector(device, mapping) injector.start_injecting() self.injectors[device] = injector except OSError: return False return True def stop(self): """Stop all injections and end the service. Raises dbus.exceptions.DBusException in your main process. """ logger.info('Stopping all injections') for injector in self.injectors.values(): injector.stop_injecting() def hello(self, out): """Used for tests.""" logger.info('Received "%s" from client', out) return out