You've already forked RadioPlayer
mirror of
https://github.com/radio95-rnt/RadioPlayer.git
synced 2026-02-26 21:53:54 +01:00
minor changes
This commit is contained in:
@@ -16,7 +16,7 @@ class Track:
|
|||||||
@dataclass
|
@dataclass
|
||||||
class Process:
|
class Process:
|
||||||
process: Popen
|
process: Popen
|
||||||
track: str
|
track: Track
|
||||||
started_at: float
|
started_at: float
|
||||||
duration: float
|
duration: float
|
||||||
|
|
||||||
@@ -43,21 +43,19 @@ class BaseIMCModule:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
class ProcmanCommunicator(BaseIMCModule):
|
class ProcmanCommunicator(BaseIMCModule):
|
||||||
def __init__(self, procman: Skeleton_ProcessManager) -> None:
|
def __init__(self, procman: Skeleton_ProcessManager) -> None: self.procman = procman
|
||||||
self.procman = procman
|
|
||||||
def imc(self, imc: 'InterModuleCommunication') -> None:
|
def imc(self, imc: 'InterModuleCommunication') -> None:
|
||||||
super().imc(imc)
|
super().imc(imc)
|
||||||
self._imc.register(self, "procman")
|
self._imc.register(self, "procman")
|
||||||
def imc_data(self, source: BaseIMCModule, source_name: str | None, data: object, broadcast: bool) -> object:
|
def imc_data(self, source: BaseIMCModule, source_name: str | None, data: object, broadcast: bool) -> object:
|
||||||
if broadcast: return
|
if broadcast: return
|
||||||
if isinstance(data, str) and data.lower().strip() == "raw": return self.procman
|
# if isinstance(data, str) and data.lower().strip() == "raw": return self.procman
|
||||||
elif isinstance(data, dict):
|
if isinstance(data, dict):
|
||||||
op = data.get("op")
|
if (op := data.get("op")) is None: return
|
||||||
if not op: return
|
|
||||||
if int(op) == 0: return {"op": 0, "arg": "pong"}
|
if int(op) == 0: return {"op": 0, "arg": "pong"}
|
||||||
elif int(op) == 1:
|
elif int(op) == 1:
|
||||||
if arg := data.get("arg"):
|
if arg := data.get("arg"): return {"op": 1, "arg": self.procman._get_audio_duration(arg)}
|
||||||
return {"op": 1, "arg": self.procman._get_audio_duration(arg)}
|
|
||||||
else: return
|
else: return
|
||||||
elif int(op) == 2:
|
elif int(op) == 2:
|
||||||
self.procman.stop_all(data.get("timeout", None))
|
self.procman.stop_all(data.get("timeout", None))
|
||||||
@@ -66,6 +64,9 @@ class ProcmanCommunicator(BaseIMCModule):
|
|||||||
return {"op": 3, "arg": self.procman.processes}
|
return {"op": 3, "arg": self.procman.processes}
|
||||||
elif int(op) == 4:
|
elif int(op) == 4:
|
||||||
return {"op": 4, "arg": self.procman.anything_playing()}
|
return {"op": 4, "arg": self.procman.anything_playing()}
|
||||||
|
elif int(op) == 5:
|
||||||
|
if arg := data.get("arg"): return {"op": 5, "arg": self.procman.play(arg, data.get("fade_time", 5))}
|
||||||
|
else: return
|
||||||
|
|
||||||
class PlayerModule(BaseIMCModule):
|
class PlayerModule(BaseIMCModule):
|
||||||
"""
|
"""
|
||||||
@@ -81,7 +82,7 @@ class PlayerModule(BaseIMCModule):
|
|||||||
pass
|
pass
|
||||||
def progress(self, index: int, track: Track, elapsed: float, total: float, real_total: float) -> None:
|
def progress(self, index: int, track: Track, elapsed: float, total: float, real_total: float) -> None:
|
||||||
"""
|
"""
|
||||||
Real total and total differ in that, total is how much the track lasts, but real_total will be for how long we will play it for
|
Real total and total differ in that, total is how much the track lasts, but real_total will be for how long we will focus on it (crossfade)
|
||||||
Runs at a frequency around 1 Hz
|
Runs at a frequency around 1 Hz
|
||||||
Please don't put any blocking or code that takes time
|
Please don't put any blocking or code that takes time
|
||||||
"""
|
"""
|
||||||
@@ -140,15 +141,13 @@ class InterModuleCommunication:
|
|||||||
def __init__(self, modules: Sequence[BaseIMCModule | None]) -> None:
|
def __init__(self, modules: Sequence[BaseIMCModule | None]) -> None:
|
||||||
self.modules = modules
|
self.modules = modules
|
||||||
self.names_modules: dict[str, BaseIMCModule] = {}
|
self.names_modules: dict[str, BaseIMCModule] = {}
|
||||||
for module in modules:
|
[module.imc(self) for module in modules if module]
|
||||||
if module: module.imc(self)
|
|
||||||
def broadcast(self, source: BaseIMCModule, data: object) -> None:
|
def broadcast(self, source: BaseIMCModule, data: object) -> None:
|
||||||
"""
|
"""
|
||||||
Send data to all modules, other than ourself
|
Send data to all modules, other than ourself
|
||||||
"""
|
"""
|
||||||
source_name = next((k for k, v in self.names_modules.items() if v is source), None)
|
source_name = next((k for k, v in self.names_modules.items() if v is source), None)
|
||||||
for module in [f for f in self.modules if f is not source]:
|
for module in [f for f in self.modules if (f is not source) and f]: module.imc_data(source, source_name, data, True)
|
||||||
if module: module.imc_data(source, source_name, data, True)
|
|
||||||
def register(self, module: BaseIMCModule, name: str) -> bool:
|
def register(self, module: BaseIMCModule, name: str) -> bool:
|
||||||
"""
|
"""
|
||||||
Register our module with a name, so we can be sent data via the send function
|
Register our module with a name, so we can be sent data via the send function
|
||||||
@@ -160,5 +159,5 @@ class InterModuleCommunication:
|
|||||||
"""
|
"""
|
||||||
Sends the data to a named module, and return its response
|
Sends the data to a named module, and return its response
|
||||||
"""
|
"""
|
||||||
if not name in self.names_modules.keys(): raise Exception
|
if not name in self.names_modules.keys(): raise Exception("No such module")
|
||||||
return self.names_modules[name].imc_data(source, next((k for k, v in self.names_modules.items() if v is source), None), data, False)
|
return self.names_modules[name].imc_data(source, next((k for k, v in self.names_modules.items() if v is source), None), data, False)
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
import time, types
|
import os, subprocess, importlib.util, importlib.machinery, types
|
||||||
import os, subprocess, importlib.util, importlib.machinery
|
import sys, signal, glob, time, traceback, atexit
|
||||||
import sys, signal, glob
|
import libcache
|
||||||
import libcache, traceback, atexit
|
|
||||||
from modules import *
|
from modules import *
|
||||||
from threading import Lock
|
from threading import Lock
|
||||||
|
|
||||||
@@ -44,7 +43,7 @@ class ProcessManager(Skeleton_ProcessManager):
|
|||||||
if filters: cmd.extend(['-af', ",".join(filters)])
|
if filters: cmd.extend(['-af', ",".join(filters)])
|
||||||
cmd.append(str(track.path.absolute()))
|
cmd.append(str(track.path.absolute()))
|
||||||
|
|
||||||
pr = Process(Popen(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, start_new_session=True), track.path.name, time.monotonic(), duration - track.offset)
|
pr = Process(Popen(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, start_new_session=True), track, time.monotonic(), duration - track.offset)
|
||||||
with self.lock: self.processes.append(pr)
|
with self.lock: self.processes.append(pr)
|
||||||
return pr
|
return pr
|
||||||
def anything_playing(self) -> bool:
|
def anything_playing(self) -> bool:
|
||||||
@@ -271,9 +270,9 @@ class RadioPlayer:
|
|||||||
self.logger.info(f"Now playing: {track.path.name}")
|
self.logger.info(f"Now playing: {track.path.name}")
|
||||||
prefetch(track.path)
|
prefetch(track.path)
|
||||||
|
|
||||||
[module.on_new_track(song_i, track, next_track) for module in self.simple_modules if module]
|
|
||||||
|
|
||||||
pr = self.procman.play(track, cross_fade)
|
pr = self.procman.play(track, cross_fade)
|
||||||
|
[module.on_new_track(song_i, pr.track, next_track) for module in self.simple_modules if module]
|
||||||
|
|
||||||
end_time = pr.started_at + pr.duration
|
end_time = pr.started_at + pr.duration
|
||||||
if track.fade_out: end_time -= cross_fade
|
if track.fade_out: end_time -= cross_fade
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user