2020-10-26 22:45:22 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
# -*- coding: utf-8 -*-
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper - GUI for device specific keyboard mappings
|
2022-01-01 12:52:33 +00:00
|
|
|
# Copyright (C) 2022 sezanzeb <proxima@sezanzeb.de>
|
2020-10-26 22:45:22 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# This file is part of input-remapper.
|
2020-10-26 22:45:22 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper is free software: you can redistribute it and/or modify
|
2020-10-26 22:45:22 +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,
|
2020-10-26 22:45:22 +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/>.
|
2020-10-26 22:45:22 +00:00
|
|
|
|
|
|
|
|
2022-01-01 12:00:49 +00:00
|
|
|
"""Logging setup for input-remapper."""
|
2020-10-26 22:45:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
import os
|
2022-04-17 10:19:23 +00:00
|
|
|
import re
|
2022-01-18 20:20:42 +00:00
|
|
|
import sys
|
2021-03-21 18:15:20 +00:00
|
|
|
import shutil
|
2020-12-03 19:37:36 +00:00
|
|
|
import time
|
2020-10-26 22:45:22 +00:00
|
|
|
import logging
|
2022-04-17 10:19:23 +00:00
|
|
|
from typing import cast
|
|
|
|
|
2020-10-26 22:45:22 +00:00
|
|
|
import pkg_resources
|
2021-11-14 13:32:22 +00:00
|
|
|
from datetime import datetime
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2022-01-01 12:00:49 +00:00
|
|
|
from inputremapper.user import HOME
|
2021-03-21 18:15:20 +00:00
|
|
|
|
2021-04-15 19:16:07 +00:00
|
|
|
try:
|
2022-01-01 12:00:49 +00:00
|
|
|
from inputremapper.commit_hash import COMMIT_HASH
|
2021-04-15 19:16:07 +00:00
|
|
|
except ImportError:
|
2021-09-26 10:44:56 +00:00
|
|
|
COMMIT_HASH = ""
|
2021-04-15 19:16:07 +00:00
|
|
|
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2021-01-05 18:33:47 +00:00
|
|
|
start = time.time()
|
|
|
|
|
2022-01-18 20:20:42 +00:00
|
|
|
previous_key_debug_log = None
|
2020-11-18 19:03:37 +00:00
|
|
|
|
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
def parse_mapping_handler(mapping_handler):
|
|
|
|
indent = 0
|
|
|
|
lines_and_indent = []
|
|
|
|
while True:
|
|
|
|
if isinstance(handler, str):
|
|
|
|
lines_and_indent.append([mapping_handler, indent])
|
|
|
|
break
|
2021-01-07 16:15:12 +00:00
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
if isinstance(mapping_handler, list):
|
|
|
|
for sub_handler in mapping_handler:
|
|
|
|
sub_list = parse_mapping_handler(sub_handler)
|
|
|
|
for line in sub_list:
|
|
|
|
line[1] += indent
|
|
|
|
lines_and_indent.extend(sub_list)
|
|
|
|
break
|
2021-01-25 23:15:30 +00:00
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
lines_and_indent.append([mapping_handler.__str__(), indent])
|
|
|
|
try:
|
|
|
|
mapping_handler = mapping_handler.child
|
|
|
|
except AttributeError:
|
|
|
|
break
|
|
|
|
|
|
|
|
indent += 1
|
|
|
|
return lines_and_indent
|
|
|
|
|
|
|
|
|
|
|
|
class Logger(logging.Logger):
|
|
|
|
def debug_mapping_handler(self, mapping_handler):
|
2022-04-18 11:52:59 +00:00
|
|
|
"""Parse the structure of a mapping_handler an log it"""
|
2022-04-17 10:19:23 +00:00
|
|
|
if not self.isEnabledFor(logging.DEBUG):
|
|
|
|
return
|
|
|
|
|
|
|
|
lines_and_indent = parse_mapping_handler(mapping_handler)
|
|
|
|
for line in lines_and_indent:
|
|
|
|
indent = " "
|
|
|
|
msg = indent * line[1] + line[0]
|
|
|
|
self._log(logging.DEBUG, msg, args=None)
|
|
|
|
|
|
|
|
def debug_key(self, key, msg, *args):
|
|
|
|
"""Log a spam message custom tailored to keycode_mapper.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
key : tuple of int
|
|
|
|
anything that can be string formatted, but usually a tuple of
|
|
|
|
(type, code, value) tuples
|
|
|
|
"""
|
|
|
|
# pylint: disable=protected-access
|
|
|
|
if not self.isEnabledFor(logging.DEBUG):
|
|
|
|
return
|
2021-01-25 23:15:30 +00:00
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
global previous_key_debug_log
|
2021-01-25 23:15:30 +00:00
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
msg = msg % args
|
|
|
|
str_key = str(key)
|
|
|
|
str_key = str_key.replace(",)", ")")
|
|
|
|
spacing = " " + "·" * max(0, 30 - len(msg))
|
|
|
|
if len(spacing) == 1:
|
|
|
|
spacing = ""
|
|
|
|
msg = f"{msg}{spacing} {str_key}"
|
2021-01-25 23:15:30 +00:00
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
if msg == previous_key_debug_log:
|
|
|
|
# avoid some super spam from EV_ABS events
|
|
|
|
return
|
2021-01-25 23:15:30 +00:00
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
previous_key_debug_log = msg
|
2021-01-05 18:33:47 +00:00
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
self._log(logging.DEBUG, msg, args=None)
|
2021-01-05 18:33:47 +00:00
|
|
|
|
2020-11-18 19:03:37 +00:00
|
|
|
|
2021-03-21 18:15:20 +00:00
|
|
|
LOG_PATH = (
|
2022-01-01 12:00:49 +00:00
|
|
|
"/var/log/input-remapper"
|
2021-09-26 10:44:56 +00:00
|
|
|
if os.access("/var/log", os.W_OK)
|
2022-01-01 12:00:49 +00:00
|
|
|
else f"{HOME}/.log/input-remapper"
|
2021-03-21 18:15:20 +00:00
|
|
|
)
|
2020-12-06 15:08:03 +00:00
|
|
|
|
2022-04-17 10:19:23 +00:00
|
|
|
# https://github.com/python/typeshed/issues/1801
|
|
|
|
logging.setLoggerClass(Logger)
|
|
|
|
logger = cast(Logger, logging.getLogger("input-remapper"))
|
2021-08-22 09:44:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def is_debug():
|
2022-01-18 20:20:42 +00:00
|
|
|
"""True, if the logger is currently in DEBUG or DEBUG mode."""
|
2021-08-22 09:44:16 +00:00
|
|
|
return logger.level <= logging.DEBUG
|
|
|
|
|
2020-11-18 19:03:37 +00:00
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
class ColorfulFormatter(logging.Formatter):
|
|
|
|
"""Overwritten Formatter to print nicer logs.
|
2022-01-18 20:20:42 +00:00
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
It colors all logs from the same filename in the same color to visually group them
|
|
|
|
together. It also adds process name, process id, file, line-number and time.
|
2022-01-18 20:20:42 +00:00
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
If debug mode is not active, it will not do any of this.
|
|
|
|
"""
|
2021-09-26 10:44:56 +00:00
|
|
|
|
2022-01-18 20:20:42 +00:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
self.file_color_mapping = {}
|
|
|
|
|
|
|
|
# see https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit
|
|
|
|
self.allowed_colors = []
|
|
|
|
for r in range(0, 6):
|
|
|
|
for g in range(0, 6):
|
|
|
|
for b in range(0, 6):
|
|
|
|
# https://stackoverflow.com/a/596243
|
|
|
|
brightness = 0.2126 * r + 0.7152 * g + 0.0722 * b
|
|
|
|
if brightness < 1:
|
2022-01-18 21:34:28 +00:00
|
|
|
# prefer light colors, because most people have a dark
|
|
|
|
# terminal background
|
2022-01-18 20:20:42 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
if g + b <= 1:
|
2022-01-18 21:34:28 +00:00
|
|
|
# red makes it look like it's an error
|
2022-01-18 20:20:42 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
if abs(g - b) < 2 and abs(b - r) < 2 and abs(r - g) < 2:
|
|
|
|
# no colors that are too grey
|
|
|
|
continue
|
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
self.allowed_colors.append(self._get_ansi_code(r, g, b))
|
2022-01-18 20:20:42 +00:00
|
|
|
|
|
|
|
self.level_based_colors = {
|
|
|
|
logging.WARNING: 11,
|
|
|
|
logging.ERROR: 9,
|
|
|
|
logging.FATAL: 9,
|
|
|
|
}
|
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
def _get_ansi_code(self, r, g, b):
|
|
|
|
return 16 + b + (6 * g) + (36 * r)
|
2022-01-18 20:20:42 +00:00
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
def _word_to_color(self, word):
|
2022-01-18 20:20:42 +00:00
|
|
|
"""Convert a word to a 8bit ansi color code."""
|
|
|
|
digit_sum = sum([ord(char) for char in word])
|
|
|
|
index = digit_sum % len(self.allowed_colors)
|
|
|
|
return self.allowed_colors[index]
|
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
def _allocate_debug_log_color(self, record):
|
|
|
|
"""Get the color that represents the source file of the log."""
|
|
|
|
if self.file_color_mapping.get(record.filename) is not None:
|
|
|
|
return self.file_color_mapping[record.filename]
|
2022-01-18 20:20:42 +00:00
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
color = self._word_to_color(record.filename)
|
2022-01-18 20:20:42 +00:00
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
if self.file_color_mapping.get(record.filename) is None:
|
2022-01-18 20:20:42 +00:00
|
|
|
# calculate the color for each file only once
|
2022-01-18 21:34:28 +00:00
|
|
|
self.file_color_mapping[record.filename] = color
|
2022-01-18 20:20:42 +00:00
|
|
|
|
|
|
|
return color
|
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
def _get_process_name(self):
|
|
|
|
"""Generate a beaitiful to read name for this process."""
|
|
|
|
name = sys.argv[0].split("/")[-1].split("-")[-1]
|
|
|
|
return {
|
|
|
|
"gtk": "GUI",
|
|
|
|
"helper": "GUI-Helper",
|
|
|
|
"service": "Service",
|
|
|
|
"control": "Control",
|
|
|
|
}.get(name, name)
|
|
|
|
|
2022-01-18 20:20:42 +00:00
|
|
|
def _get_format(self, record):
|
|
|
|
"""Generate a message format string."""
|
|
|
|
debug_mode = is_debug()
|
|
|
|
|
|
|
|
if record.levelno == logging.INFO and not debug_mode:
|
|
|
|
# if not launched with --debug, then don't print "INFO:"
|
|
|
|
return "%(message)s"
|
|
|
|
|
|
|
|
if not debug_mode:
|
|
|
|
color = self.level_based_colors[record.levelno]
|
|
|
|
return f"\033[38;5;{color}m%(levelname)s\033[0m: %(message)s"
|
|
|
|
|
2022-01-18 21:34:28 +00:00
|
|
|
color = self._allocate_debug_log_color(record)
|
2022-01-18 20:20:42 +00:00
|
|
|
if record.levelno in [logging.ERROR, logging.WARNING, logging.FATAL]:
|
2022-01-18 21:34:28 +00:00
|
|
|
# underline
|
|
|
|
style = f"\033[4;38;5;{color}m"
|
2022-01-18 20:20:42 +00:00
|
|
|
else:
|
2022-01-18 21:34:28 +00:00
|
|
|
style = f"\033[38;5;{color}m"
|
|
|
|
|
|
|
|
process_color = self._word_to_color(f"{os.getpid()}{sys.argv[0]}")
|
2022-01-18 20:20:42 +00:00
|
|
|
|
|
|
|
return ( # noqa
|
|
|
|
f'{datetime.now().strftime("%H:%M:%S.%f")} '
|
2022-01-18 21:34:28 +00:00
|
|
|
f"\033[38;5;{process_color}m" # color
|
2022-01-18 20:20:42 +00:00
|
|
|
f"{os.getpid()} "
|
2022-01-18 21:34:28 +00:00
|
|
|
f"{self._get_process_name()} "
|
2022-01-18 20:20:42 +00:00
|
|
|
"\033[0m" # end style
|
2022-01-18 21:34:28 +00:00
|
|
|
f"{style}"
|
2022-01-18 20:20:42 +00:00
|
|
|
f"%(levelname)s "
|
|
|
|
f"%(filename)s:%(lineno)d: "
|
|
|
|
"%(message)s"
|
|
|
|
"\033[0m" # end style
|
2022-01-18 21:34:28 +00:00
|
|
|
).replace(" ", " ")
|
2022-01-18 20:20:42 +00:00
|
|
|
|
2020-10-26 22:45:22 +00:00
|
|
|
def format(self, record):
|
2020-11-22 20:41:29 +00:00
|
|
|
"""Overwritten format function."""
|
2020-11-26 23:34:45 +00:00
|
|
|
# pylint: disable=protected-access
|
2022-01-18 20:20:42 +00:00
|
|
|
self._style._fmt = self._get_format(record)
|
2020-10-26 22:45:22 +00:00
|
|
|
return super().format(record)
|
|
|
|
|
|
|
|
|
|
|
|
handler = logging.StreamHandler()
|
2022-01-18 21:34:28 +00:00
|
|
|
handler.setFormatter(ColorfulFormatter())
|
2020-10-26 22:45:22 +00:00
|
|
|
logger.addHandler(handler)
|
|
|
|
logger.setLevel(logging.INFO)
|
2021-09-26 10:44:56 +00:00
|
|
|
logging.getLogger("asyncio").setLevel(logging.WARNING)
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2021-09-29 18:10:39 +00:00
|
|
|
|
2022-05-08 08:00:07 +00:00
|
|
|
VERSION = "1.5.0-beta"
|
2021-09-29 18:10:39 +00:00
|
|
|
EVDEV_VERSION = None
|
2021-03-21 13:17:34 +00:00
|
|
|
try:
|
2021-09-26 10:44:56 +00:00
|
|
|
EVDEV_VERSION = pkg_resources.require("evdev")[0].version
|
2021-03-21 13:17:34 +00:00
|
|
|
except pkg_resources.DistributionNotFound as error:
|
2022-04-18 11:52:59 +00:00
|
|
|
logger.info("Could not figure out the evdev version")
|
2021-03-21 13:17:34 +00:00
|
|
|
logger.debug(error)
|
|
|
|
|
2022-05-08 08:12:23 +00:00
|
|
|
# check if the version is something like 1.5.0-beta or 1.5.0-beta.5
|
|
|
|
IS_BETA = "beta" in VERSION
|
2022-04-17 10:19:23 +00:00
|
|
|
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2022-01-01 12:00:49 +00:00
|
|
|
def log_info(name="input-remapper"):
|
2021-03-28 11:19:44 +00:00
|
|
|
"""Log version and name to the console."""
|
2021-03-21 13:17:34 +00:00
|
|
|
logger.info(
|
2022-01-10 19:37:22 +00:00
|
|
|
"%s %s %s https://github.com/sezanzeb/input-remapper",
|
|
|
|
name,
|
|
|
|
VERSION,
|
|
|
|
COMMIT_HASH,
|
2021-03-21 13:17:34 +00:00
|
|
|
)
|
2020-12-26 15:46:01 +00:00
|
|
|
|
2021-03-28 11:19:44 +00:00
|
|
|
if EVDEV_VERSION:
|
2021-09-26 10:44:56 +00:00
|
|
|
logger.info("python-evdev %s", EVDEV_VERSION)
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2020-12-19 15:04:07 +00:00
|
|
|
if is_debug():
|
|
|
|
logger.warning(
|
2021-09-26 10:44:56 +00:00
|
|
|
"Debug level will log all your keystrokes! Do not post this "
|
|
|
|
"output in the internet if you typed in sensitive or private "
|
|
|
|
"information with your device!"
|
2020-12-19 15:04:07 +00:00
|
|
|
)
|
|
|
|
|
2020-10-26 22:45:22 +00:00
|
|
|
|
|
|
|
def update_verbosity(debug):
|
2020-12-05 10:33:35 +00:00
|
|
|
"""Set the logging verbosity according to the settings object.
|
|
|
|
|
|
|
|
Also enable rich tracebacks in debug mode.
|
|
|
|
"""
|
2021-02-14 11:34:56 +00:00
|
|
|
# pylint really doesn't like what I'm doing with rich.traceback here
|
|
|
|
# pylint: disable=broad-except,import-error,import-outside-toplevel
|
2020-10-26 22:45:22 +00:00
|
|
|
if debug:
|
2022-01-18 20:20:42 +00:00
|
|
|
logger.setLevel(logging.DEBUG)
|
2020-12-05 10:33:35 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
from rich.traceback import install
|
2021-09-26 10:44:56 +00:00
|
|
|
|
2020-12-05 10:33:35 +00:00
|
|
|
install(show_locals=True)
|
2021-09-26 10:44:56 +00:00
|
|
|
logger.debug("Using rich.traceback")
|
2020-12-05 10:33:35 +00:00
|
|
|
except Exception as error:
|
|
|
|
# since this is optional, just skip all exceptions
|
|
|
|
if not isinstance(error, ImportError):
|
2021-09-26 10:44:56 +00:00
|
|
|
logger.debug("Cannot use rich.traceback: %s", error)
|
2020-10-26 22:45:22 +00:00
|
|
|
else:
|
|
|
|
logger.setLevel(logging.INFO)
|
|
|
|
|
|
|
|
|
2022-04-15 11:32:54 +00:00
|
|
|
def trim_logfile(log_path):
|
|
|
|
"""Keep the logfile short."""
|
|
|
|
if not os.path.exists(log_path):
|
|
|
|
return
|
|
|
|
|
|
|
|
file_size_mb = os.path.getsize(log_path) / 1000 / 1000
|
|
|
|
if file_size_mb > 100:
|
|
|
|
# something went terribly wrong here. The service might timeout because
|
|
|
|
# it takes too long to trim this file. delete it instead. This probably
|
|
|
|
# only happens when doing funny things while in debug mode.
|
|
|
|
logger.warning(
|
|
|
|
"Removing enormous log file of %dMB",
|
|
|
|
file_size_mb,
|
|
|
|
)
|
|
|
|
os.remove(log_path)
|
|
|
|
return
|
|
|
|
|
|
|
|
# the logfile should not be too long to avoid overflowing the storage
|
|
|
|
try:
|
|
|
|
with open(log_path, "rb") as file:
|
|
|
|
binary = file.readlines()[-1000:]
|
|
|
|
content = [line.decode("utf-8", errors="ignore") for line in binary]
|
|
|
|
|
|
|
|
with open(log_path, "w") as file:
|
|
|
|
file.truncate(0)
|
|
|
|
file.writelines(content)
|
2022-04-17 10:19:23 +00:00
|
|
|
except PermissionError:
|
|
|
|
# let the outermost PermissionError handler handle it
|
|
|
|
raise
|
2022-04-15 11:32:54 +00:00
|
|
|
except Exception as e:
|
|
|
|
logger.error('Failed to trim logfile: "%s"', str(e))
|
|
|
|
|
|
|
|
|
2021-03-21 18:15:20 +00:00
|
|
|
def add_filehandler(log_path=LOG_PATH):
|
2020-10-26 22:45:22 +00:00
|
|
|
"""Clear the existing logfile and start logging to it."""
|
2021-11-14 13:32:22 +00:00
|
|
|
try:
|
|
|
|
log_path = os.path.expanduser(log_path)
|
|
|
|
os.makedirs(os.path.dirname(log_path), exist_ok=True)
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2021-03-21 18:15:20 +00:00
|
|
|
if os.path.isdir(log_path):
|
|
|
|
# used to be a folder < 0.8.0
|
|
|
|
shutil.rmtree(log_path)
|
2020-10-26 22:45:22 +00:00
|
|
|
|
2022-04-15 11:32:54 +00:00
|
|
|
trim_logfile(log_path)
|
2021-11-14 13:32:22 +00:00
|
|
|
|
|
|
|
file_handler = logging.FileHandler(log_path)
|
2022-01-18 21:34:28 +00:00
|
|
|
file_handler.setFormatter(ColorfulFormatter())
|
2021-11-14 13:32:22 +00:00
|
|
|
logger.addHandler(file_handler)
|
2021-11-22 22:19:51 +00:00
|
|
|
|
2021-11-23 18:59:28 +00:00
|
|
|
logger.info('Starting logging to "%s"', log_path)
|
2021-11-14 13:32:22 +00:00
|
|
|
except PermissionError:
|
|
|
|
logger.debug('No permission to log to "%s"', log_path)
|