BAPSicle/player_handler.py

53 lines
1.9 KiB
Python
Raw Normal View History

from setproctitle import setproctitle
2021-04-08 21:05:25 +00:00
from multiprocessing import current_process
from time import sleep
from os import _exit
2021-04-08 21:05:25 +00:00
from helpers.logging_manager import LoggingManager
from helpers.the_terminator import Terminator
2021-04-08 19:53:51 +00:00
2021-04-08 21:32:16 +00:00
2021-04-08 19:53:51 +00:00
class PlayerHandler:
logger: LoggingManager
def __init__(self, channel_from_q, websocket_to_q, ui_to_q, controller_to_q, file_to_q):
self.logger = LoggingManager("PlayerHandler")
process_title = "Player Handler"
setproctitle(process_title)
2021-04-08 21:05:25 +00:00
current_process().name = process_title
terminator = Terminator()
try:
while not terminator.terminate:
for channel in range(len(channel_from_q)):
try:
message = channel_from_q[channel].get_nowait()
source = message.split(":")[0]
command = message.split(":")[1]
2021-04-25 23:18:50 +00:00
# Let the file manager manage the files based on status and loading new show plan triggers.
if command == "GET_PLAN" or command == "STATUS":
file_to_q[channel].put(message)
# TODO ENUM
2021-04-08 19:53:51 +00:00
if source in ["ALL", "WEBSOCKET"]:
websocket_to_q[channel].put(message)
2021-04-08 19:53:51 +00:00
if source in ["ALL", "UI"]:
if not message.split(":")[1] == "POS":
# We don't care about position update spam
ui_to_q[channel].put(message)
2021-04-08 19:53:51 +00:00
if source in ["ALL", "CONTROLLER"]:
controller_to_q[channel].put(message)
2021-04-08 21:32:16 +00:00
except Exception:
pass
2021-04-04 22:14:08 +00:00
sleep(0.02)
except Exception as e:
2021-04-08 20:15:15 +00:00
self.logger.log.exception(
"Received unexpected exception: {}".format(e))
del self.logger
_exit(0)