input-remapper/keymapper/gui/reader.py

255 lines
8.6 KiB
Python
Raw Normal View History

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# key-mapper - GUI for device specific keyboard mappings
2021-02-22 18:48:20 +00:00
# Copyright (C) 2021 sezanzeb <proxima@sezanzeb.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/>.
2021-03-21 18:15:20 +00:00
"""Talking to the GUI helper that has root permissions.
2021-03-21 18:15:20 +00:00
see gui.helper.helper
"""
2020-12-01 23:02:41 +00:00
import evdev
2021-03-21 18:15:20 +00:00
from evdev.ecodes import EV_REL
2020-12-01 23:02:41 +00:00
from keymapper.logger import logger
2020-12-31 20:47:56 +00:00
from keymapper.key import Key
from keymapper.groups import groups, GAMEPAD
2021-03-21 18:15:20 +00:00
from keymapper.ipc.pipe import Pipe
from keymapper.gui.helper import TERMINATE, REFRESH_GROUPS
2021-03-21 18:56:15 +00:00
from keymapper import utils
from keymapper.state import custom_mapping
from keymapper.user import USER
2020-11-22 17:02:55 +00:00
2021-01-07 16:15:12 +00:00
DEBOUNCE_TICKS = 3
2021-01-07 16:15:12 +00:00
def will_report_up(ev_type):
"""Check if this event will ever report a key up (wheels)."""
return ev_type != EV_REL
2021-03-21 18:15:20 +00:00
class Reader:
"""Processes events from the helper for the GUI to use.
Does not serve any purpose for the injection service.
When a button was pressed, the newest keycode can be obtained from this
2021-03-21 18:15:20 +00:00
object. GTK has get_key for keyboard keys, but Reader also
has knowledge of buttons like the middle-mouse button.
"""
2021-09-26 10:44:56 +00:00
def __init__(self):
2021-01-07 16:15:12 +00:00
self.previous_event = None
self.previous_result = None
2020-12-31 20:46:57 +00:00
self._unreleased = {}
2021-01-07 16:15:12 +00:00
self._debounce_remove = {}
2021-03-21 18:15:20 +00:00
self._devices_updated = False
self._cleared_at = 0
self.group = None
2020-11-30 13:34:27 +00:00
2021-03-21 18:15:20 +00:00
self._results = None
self._commands = None
self.connect()
2020-11-30 13:34:27 +00:00
2021-03-21 18:15:20 +00:00
def connect(self):
"""Connect to the helper."""
2021-09-26 10:44:56 +00:00
self._results = Pipe(f"/tmp/key-mapper-{USER}/results")
self._commands = Pipe(f"/tmp/key-mapper-{USER}/commands")
2021-03-21 18:15:20 +00:00
def are_new_devices_available(self):
"""Check if groups contains new devices.
2021-03-21 18:15:20 +00:00
The ui should then update its list.
"""
2021-03-21 18:15:20 +00:00
outdated = self._devices_updated
self._devices_updated = False # assume the ui will react accordingly
return outdated
def _get_event(self, message):
"""Return an InputEvent if the message contains one. None otherwise."""
2021-09-26 10:44:56 +00:00
message_type = message["type"]
message_body = message["message"]
2021-03-28 11:19:44 +00:00
2021-09-26 10:44:56 +00:00
if message_type == "groups":
if message_body != groups.dumps():
groups.loads(message_body)
2021-09-26 10:44:56 +00:00
logger.debug("Received %d devices", len(groups))
2021-04-02 13:08:36 +00:00
self._devices_updated = True
2021-01-07 16:15:12 +00:00
return None
2021-03-28 11:19:44 +00:00
2021-09-26 10:44:56 +00:00
if message_type == "event":
2021-03-21 18:15:20 +00:00
return evdev.InputEvent(*message_body)
2021-01-07 16:15:12 +00:00
2021-03-21 18:15:20 +00:00
logger.error('Received unknown message "%s"', message)
return None
2020-12-31 20:46:57 +00:00
2020-11-30 13:34:27 +00:00
def read(self):
2021-01-07 16:15:12 +00:00
"""Get the newest key/combination as Key object.
Only reports keys from down-events.
On key-down events the pipe returns changed combinations. Release
events won't cause that and the reader will return None as in
"nothing new to report". So In order to change a combination, one
of its keys has to be released and then a different one pressed.
Otherwise making combinations wouldn't be possible. Because at
some point the keys have to be released, and that shouldn't cause
the combination to get trimmed.
2020-12-12 13:12:45 +00:00
"""
2021-01-07 16:15:12 +00:00
# this is in some ways similar to the keycode_mapper and
# event_producer, but its much simpler because it doesn't
# have to trigger anything, manage any macros and only
# reports key-down events. This function is called periodically
# by the window.
2020-11-30 13:34:27 +00:00
2021-03-21 18:15:20 +00:00
# remember the previous down-event from the pipe in order to
2021-03-22 09:18:11 +00:00
# be able to tell if the reader should return the updated combination
2021-01-07 16:15:12 +00:00
previous_event = self.previous_event
key_down_received = False
self._debounce_tick()
2021-03-21 18:15:20 +00:00
while self._results.poll():
message = self._results.recv()
event = self._get_event(message)
if event is None:
continue
2021-03-21 18:56:15 +00:00
gamepad = GAMEPAD in self.group.types
2021-03-21 18:56:15 +00:00
if not utils.should_map_as_btn(event, custom_mapping, gamepad):
continue
2021-03-21 18:15:20 +00:00
2021-01-05 18:33:47 +00:00
event_tuple = (event.type, event.code, event.value)
2021-03-21 18:15:20 +00:00
2021-01-07 16:15:12 +00:00
type_code = (event.type, event.code)
if event.value == 0:
2021-09-26 10:44:56 +00:00
logger.key_spam(event_tuple, "release")
2021-01-07 16:15:12 +00:00
self._release(type_code)
2020-12-31 22:16:46 +00:00
continue
2020-12-31 20:46:57 +00:00
2021-01-07 16:15:12 +00:00
if self._unreleased.get(type_code) == event_tuple:
2021-09-26 10:44:56 +00:00
logger.key_spam(event_tuple, "duplicate key down")
2021-01-07 16:15:12 +00:00
self._debounce_start(event_tuple)
continue
2021-01-07 16:15:12 +00:00
# to keep track of combinations.
# "I have got this release event, what was this for?" A release
# event for a D-Pad axis might be any direction, hence this maps
# from release to input in order to remember it. Since all release
# events have value 0, the value is not used in the key.
key_down_received = True
2021-09-26 10:44:56 +00:00
logger.key_spam(event_tuple, "down")
2021-01-07 16:15:12 +00:00
self._unreleased[type_code] = event_tuple
self._debounce_start(event_tuple)
previous_event = event
if not key_down_received:
# This prevents writing a subset of the combination into
# result after keys were released. In order to control the gui,
# they have to be released.
return None
2021-01-07 16:15:12 +00:00
self.previous_event = previous_event
2020-11-22 14:14:43 +00:00
2020-12-31 20:47:56 +00:00
if len(self._unreleased) > 0:
2021-01-07 16:15:12 +00:00
result = Key(*self._unreleased.values())
if result == self.previous_result:
# don't return the same stuff twice
return None
self.previous_result = result
2021-09-26 10:44:56 +00:00
logger.key_spam(result.keys, "read result")
2021-01-07 16:15:12 +00:00
return result
2020-12-31 20:55:38 +00:00
return None
def start_reading(self, group):
2021-03-21 18:15:20 +00:00
"""Start reading keycodes for a device."""
logger.debug('Sending start msg to helper for "%s"', group.key)
self._commands.send(group.key)
self.group = group
2021-03-21 18:15:20 +00:00
self.clear()
def terminate(self):
"""Stop reading keycodes for good."""
2021-09-26 10:44:56 +00:00
logger.debug("Sending close msg to helper")
2021-03-21 18:15:20 +00:00
self._commands.send(TERMINATE)
def refresh_groups(self):
"""Ask the helper for new device groups."""
self._commands.send(REFRESH_GROUPS)
2021-04-02 13:08:36 +00:00
2021-03-21 18:15:20 +00:00
def clear(self):
"""Next time when reading don't return the previous keycode."""
2021-09-26 10:44:56 +00:00
logger.debug("Clearing reader")
2021-03-21 18:15:20 +00:00
while self._results.poll():
# clear the results pipe and handle any non-event messages,
# otherwise a 'groups' message might get lost
2021-03-21 18:15:20 +00:00
message = self._results.recv()
self._get_event(message)
self._unreleased = {}
self.previous_event = None
self.previous_result = None
def get_unreleased_keys(self):
"""Get a Key object of the current keyboard state."""
unreleased = list(self._unreleased.values())
if len(unreleased) == 0:
return None
return Key(*unreleased)
def _release(self, type_code):
"""Modify the state to recognize the releasing of the key."""
if type_code in self._unreleased:
del self._unreleased[type_code]
if type_code in self._debounce_remove:
del self._debounce_remove[type_code]
def _debounce_start(self, event_tuple):
"""Act like the key was released if no new event arrives in time."""
if not will_report_up(event_tuple[0]):
self._debounce_remove[event_tuple[:2]] = DEBOUNCE_TICKS
def _debounce_tick(self):
"""If the counter reaches 0, the key is not considered held down."""
for type_code in list(self._debounce_remove.keys()):
if type_code not in self._unreleased:
continue
# clear wheel events from unreleased after some time
if self._debounce_remove[type_code] == 0:
2021-09-26 10:44:56 +00:00
logger.key_spam(self._unreleased[type_code], "Considered as released")
2021-03-21 18:15:20 +00:00
self._release(type_code)
else:
self._debounce_remove[type_code] -= 1
def __del__(self):
self.terminate()
2021-03-21 18:15:20 +00:00
reader = Reader()