2021-01-01 21:20:33 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper - GUI for device specific keyboard mappings
|
2023-02-27 16:07:42 +00:00
|
|
|
# Copyright (C) 2023 sezanzeb <proxima@sezanzeb.de>
|
2021-01-01 21:20:33 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# This file is part of input-remapper.
|
2021-01-01 21:20:33 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper is free software: you can redistribute it and/or modify
|
2021-01-01 21:20:33 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper is distributed in the hope that it will be useful,
|
2021-01-01 21:20:33 +00:00
|
|
|
# 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
|
2022-01-01 12:00:49 +00:00
|
|
|
# along with input-remapper. If not, see <https://www.gnu.org/licenses/>.
|
2021-01-01 21:20:33 +00:00
|
|
|
|
|
|
|
|
2021-02-13 19:34:33 +00:00
|
|
|
"""Utility functions."""
|
2021-01-01 21:20:33 +00:00
|
|
|
|
2021-11-21 20:45:02 +00:00
|
|
|
import sys
|
2022-12-15 13:43:03 +00:00
|
|
|
from hashlib import md5
|
2022-10-23 16:39:23 +00:00
|
|
|
from typing import Optional
|
2021-01-02 01:26:44 +00:00
|
|
|
|
2022-10-23 16:39:23 +00:00
|
|
|
import evdev
|
2021-11-21 20:45:02 +00:00
|
|
|
|
2022-10-23 16:39:23 +00:00
|
|
|
|
2022-12-15 13:43:03 +00:00
|
|
|
DeviceHash = str
|
|
|
|
|
|
|
|
|
2022-10-23 16:39:23 +00:00
|
|
|
def is_service() -> bool:
|
2022-01-01 12:00:49 +00:00
|
|
|
return sys.argv[0].endswith("input-remapper-service")
|
2022-10-23 16:39:23 +00:00
|
|
|
|
|
|
|
|
2022-12-15 13:43:03 +00:00
|
|
|
def get_device_hash(device: evdev.InputDevice) -> DeviceHash:
|
|
|
|
"""get a unique hash for the given device"""
|
|
|
|
# the builtin hash() function can not be used because it is randomly
|
|
|
|
# seeded at python startup.
|
|
|
|
# a non-cryptographic hash would be faster but there is none in the standard lib
|
|
|
|
s = str(device.capabilities(absinfo=False)) + device.name
|
|
|
|
return md5(s.encode()).hexdigest().lower()
|
|
|
|
|
|
|
|
|
2023-02-19 20:19:29 +00:00
|
|
|
def get_evdev_constant_name(type_: Optional[int], code: Optional[int], *_) -> str:
|
|
|
|
"""Handy function to get the evdev constant name for display purposes.
|
|
|
|
|
|
|
|
Returns "unknown" for unknown events.
|
|
|
|
"""
|
|
|
|
# using this function is more readable than
|
2022-10-23 16:39:23 +00:00
|
|
|
# type_, code = event.type_and_code
|
|
|
|
# name = evdev.ecodes.bytype[type_][code]
|
|
|
|
name = evdev.ecodes.bytype.get(type_, {}).get(code)
|
|
|
|
if isinstance(name, list):
|
2023-02-19 20:19:29 +00:00
|
|
|
name = name[0]
|
|
|
|
|
|
|
|
if name is None:
|
|
|
|
return "unknown"
|
2022-10-23 16:39:23 +00:00
|
|
|
|
|
|
|
return name
|