#!/usr/bin/python3 # -*- coding: utf-8 -*- # input-remapper - GUI for device specific keyboard mappings # Copyright (C) 2022 sezanzeb # # 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 . """Stores injection-process wide information.""" from collections import defaultdict from typing import List, Dict, Tuple, Set from inputremapper.configs.preset import Preset from inputremapper.injection.mapping_handlers.mapping_handler import ( InputEventHandler, EventListener, NotifyCallback, ) from inputremapper.injection.mapping_handlers.mapping_parser import parse_mappings from inputremapper.input_event import InputEvent class Context: """Stores injection-process wide information. In some ways this is a wrapper for the preset that derives some information that is specifically important to the injection. The information in the context does not change during the injection. One Context exists for each injection process, which is shared with all coroutines and used objects. Benefits of the context: - less redundant passing around of parameters - easier to add new process wide information without having to adjust all function calls in unittests - makes the injection class shorter and more specific to a certain task, which is actually spinning up the injection. Members ------- preset : Preset The preset holds all Mappings for the injection process listeners : Set[EventListener] a set of callbacks which receive all events callbacks : Dict[Tuple[int, int], List[NotifyCallback]] all entry points to the event pipeline sorted by InputEvent.type_and_code """ listeners: Set[EventListener] notify_callbacks: Dict[Tuple[int, int], List[NotifyCallback]] _handlers: Dict[InputEvent, Set[InputEventHandler]] def __init__(self, preset: Preset): self.listeners = set() self.notify_callbacks = defaultdict(list) self._handlers = parse_mappings(preset, self) self._create_callbacks() def reset(self) -> None: """Call the reset method for each handler in the context.""" for handlers in self._handlers.values(): for handler in handlers: handler.reset() def _create_callbacks(self) -> None: """Add the notify method from all _handlers to self.callbacks.""" for event, handler_list in self._handlers.items(): self.notify_callbacks[event.type_and_code].extend( handler.notify for handler in handler_list )