0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00

OH MY FUCKING GOD

This commit is contained in:
2025-12-13 21:33:05 +01:00
parent cc7e4ace2c
commit 78c8465607
2 changed files with 6 additions and 33 deletions

View File

@@ -1,5 +1,4 @@
import multiprocessing, os
from multiprocessing.synchronize import Event
from queue import Empty
import json
import threading, uuid, time
@@ -7,12 +6,7 @@ import asyncio
import websockets
from websockets import ServerConnection, Request, Response, Headers
from . import Track, PlayerModule, Path, log95
from typing import TextIO
_log_out: TextIO
assert _log_out # pyright: ignore[reportUnboundVariable]
from . import Track, PlayerModule, Path
MAIN_PATH_DIR = Path("/home/user/mixes")
@@ -107,18 +101,13 @@ async def _safe_send(ws, payload: str, clients: set):
try: clients.discard(ws)
except Exception: pass
def websocket_server_process(shared_data: dict, imc_q: multiprocessing.Queue, ws_q: multiprocessing.Queue, shutdown_evt: Event):
def websocket_server_process(shared_data: dict, imc_q: multiprocessing.Queue, ws_q: multiprocessing.Queue):
"""
Entrypoint for the separate process that runs the asyncio-based websocket server.
"""
# create the asyncio loop and run server
async def runner():
clients = set()
stop_evt = asyncio.Event()
async def shutdown_watcher():
await loop.run_in_executor(None, shutdown_evt.wait)
stop_evt.set()
async def handler_wrapper(websocket: ServerConnection):
# register client
@@ -144,20 +133,10 @@ def websocket_server_process(shared_data: dict, imc_q: multiprocessing.Queue, ws
b"WebSocket upgrade required\n"
)
watcher = asyncio.create_task(shutdown_watcher())
server = await websockets.serve(handler_wrapper, "0.0.0.0", 3001, server_header="RadioPlayer ws plugin", process_request=process_request)
broadcaster = asyncio.create_task(broadcast_worker(ws_q, clients))
await stop_evt.wait()
close_tasks = [ws.close(1001, "Server shutting down") for ws in list(clients)]
await asyncio.gather(*close_tasks, return_exceptions=True)
clients.clear()
server.close()
await broadcaster
await server.wait_closed()
watcher.cancel()
broadcaster.cancel()
try: await asyncio.wait_for(asyncio.gather(watcher, broadcaster, return_exceptions=True), timeout=2.0)
except asyncio.TimeoutError: pass
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
@@ -167,8 +146,6 @@ def websocket_server_process(shared_data: dict, imc_q: multiprocessing.Queue, ws
class Module(PlayerModule):
def __init__(self):
self.logger = log95.log95("WEB", output=_log_out)
self.manager = multiprocessing.Manager()
self.data = self.manager.dict()
self.imc_q = multiprocessing.Queue()
@@ -182,8 +159,7 @@ class Module(PlayerModule):
self.ipc_thread = threading.Thread(target=self._ipc_worker, daemon=True)
self.ipc_thread.start()
self.shutdown_evt = multiprocessing.Event()
self.ws_process = multiprocessing.Process(target=websocket_server_process, args=(self.data, self.imc_q, self.ws_q, self.shutdown_evt), daemon=False)
self.ws_process = multiprocessing.Process(target=websocket_server_process, args=(self.data, self.imc_q, self.ws_q), daemon=False)
self.ws_process.start()
if os.name == "posix":
try: os.setpgid(self.ws_process.pid, self.ws_process.pid)
@@ -237,14 +213,11 @@ class Module(PlayerModule):
except Exception: pass
def shutdown(self):
self.logger.info("Shutting down...")
self.ipc_thread_running = False
try: self.imc_q.put(None, block=False)
except: pass
self.shutdown_evt.set()
try: self.ws_q.put(None, block=False)
except: pass
@@ -258,6 +231,5 @@ class Module(PlayerModule):
if self.ws_process.is_alive():
self.ws_process.kill()
self.ws_process.join(timeout=1)
self.logger.info(f"Stopped the ws process ({self.ws_process.is_alive()=} {self.ipc_thread.is_alive()=} {self.ipc_thread_running=})")
module = Module()