2021-09-29 21:00:50 +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>
|
2021-09-29 21:00:50 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# This file is part of input-remapper.
|
2021-09-29 21:00:50 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper is free software: you can redistribute it and/or modify
|
2021-09-29 21:00:50 +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-09-29 21:00:50 +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-09-29 21:00:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
"""Share a dictionary across processes."""
|
|
|
|
|
|
|
|
|
|
|
|
import atexit
|
2022-07-23 08:53:41 +00:00
|
|
|
import multiprocessing
|
2021-09-29 21:00:50 +00:00
|
|
|
import select
|
|
|
|
|
2022-01-01 12:00:49 +00:00
|
|
|
from inputremapper.logger import logger
|
2021-09-29 21:00:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SharedDict:
|
|
|
|
"""Share a dictionary across processes."""
|
|
|
|
|
|
|
|
# because unittests terminate all child processes in cleanup I can't use
|
|
|
|
# multiprocessing.Manager
|
|
|
|
def __init__(self):
|
|
|
|
"""Create a shared dictionary."""
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
# To avoid blocking forever if something goes wrong. The maximum
|
|
|
|
# observed time communication takes was 0.001 for me on a slow pc
|
|
|
|
self._timeout = 0.02
|
|
|
|
|
2021-10-20 21:05:50 +00:00
|
|
|
self.pipe = multiprocessing.Pipe()
|
|
|
|
self.process = None
|
|
|
|
atexit.register(self._stop)
|
|
|
|
|
2021-11-20 12:41:34 +00:00
|
|
|
def start(self):
|
2021-09-29 21:00:50 +00:00
|
|
|
"""Ensure the process to manage the dictionary is running."""
|
|
|
|
if self.process is not None and self.process.is_alive():
|
2022-01-18 20:20:42 +00:00
|
|
|
logger.debug("SharedDict process already running")
|
2021-09-29 21:00:50 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
# if the manager has already been running in the past but stopped
|
2021-10-20 21:05:50 +00:00
|
|
|
# for some reason, the dictionary contents are lost.
|
2022-01-18 20:20:42 +00:00
|
|
|
logger.debug("Starting SharedDict process")
|
2021-09-29 21:00:50 +00:00
|
|
|
self.process = multiprocessing.Process(target=self.manage)
|
|
|
|
self.process.start()
|
|
|
|
|
|
|
|
def manage(self):
|
|
|
|
"""Manage the dictionary, handle read and write requests."""
|
2022-01-18 20:20:42 +00:00
|
|
|
logger.debug("SharedDict process started")
|
2021-11-23 18:59:28 +00:00
|
|
|
shared_dict = {}
|
2021-09-29 21:00:50 +00:00
|
|
|
while True:
|
|
|
|
message = self.pipe[0].recv()
|
2022-01-18 20:20:42 +00:00
|
|
|
logger.debug("SharedDict got %s", message)
|
2021-09-29 21:00:50 +00:00
|
|
|
|
|
|
|
if message[0] == "stop":
|
|
|
|
return
|
|
|
|
|
|
|
|
if message[0] == "set":
|
|
|
|
shared_dict[message[1]] = message[2]
|
|
|
|
|
2021-10-01 22:55:10 +00:00
|
|
|
if message[0] == "clear":
|
|
|
|
shared_dict.clear()
|
|
|
|
|
2021-09-29 21:00:50 +00:00
|
|
|
if message[0] == "get":
|
|
|
|
self.pipe[0].send(shared_dict.get(message[1]))
|
|
|
|
|
|
|
|
if message[0] == "ping":
|
|
|
|
self.pipe[0].send("pong")
|
|
|
|
|
|
|
|
def _stop(self):
|
|
|
|
"""Stop the managing process."""
|
|
|
|
self.pipe[1].send(("stop",))
|
|
|
|
|
2021-10-01 22:55:10 +00:00
|
|
|
def _clear(self):
|
|
|
|
"""Clears the memory."""
|
|
|
|
self.pipe[1].send(("clear",))
|
|
|
|
|
2021-09-29 21:00:50 +00:00
|
|
|
def get(self, key):
|
2021-10-01 22:55:10 +00:00
|
|
|
"""Get a value from the dictionary.
|
|
|
|
|
|
|
|
If it doesn't exist, returns None.
|
|
|
|
"""
|
2021-09-29 21:00:50 +00:00
|
|
|
return self.__getitem__(key)
|
|
|
|
|
|
|
|
def is_alive(self, timeout=None):
|
|
|
|
"""Check if the manager process is running."""
|
|
|
|
self.pipe[1].send(("ping",))
|
|
|
|
select.select([self.pipe[1]], [], [], timeout or self._timeout)
|
|
|
|
if self.pipe[1].poll():
|
|
|
|
return self.pipe[1].recv() == "pong"
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
self.pipe[1].send(("set", key, value))
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
self.pipe[1].send(("get", key))
|
|
|
|
|
|
|
|
select.select([self.pipe[1]], [], [], self._timeout)
|
|
|
|
if self.pipe[1].poll():
|
|
|
|
return self.pipe[1].recv()
|
|
|
|
|
|
|
|
logger.error("select.select timed out")
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __del__(self):
|
|
|
|
self._stop()
|