You've already forked RadioPlayer
mirror of
https://github.com/radio95-rnt/RadioPlayer.git
synced 2026-02-26 21:53:54 +01:00
304 lines
14 KiB
Python
304 lines
14 KiB
Python
#!/usr/bin/env python3
|
|
import os, importlib.util, importlib.machinery, types
|
|
import sys, signal, time, traceback, io
|
|
import concurrent.futures
|
|
from modules import *
|
|
from threading import Lock
|
|
|
|
def prefetch(path):
|
|
if os.name == "posix":
|
|
with open(path, "rb") as f:
|
|
fd = f.fileno()
|
|
os.posix_fadvise(fd, 0, 0, os.POSIX_FADV_SEQUENTIAL)
|
|
os.posix_fadvise(fd, 0, 0, os.POSIX_FADV_NOREUSE)
|
|
os.posix_fadvise(fd, 0, 0, os.POSIX_FADV_WILLNEED)
|
|
|
|
MODULES_PACKAGE = "modules"
|
|
MODULES_DIR = Path(__file__, "..", MODULES_PACKAGE).resolve()
|
|
|
|
class ModuleManager:
|
|
def __init__(self, output: log95.TextIO) -> None:
|
|
self.simple_modules: list[PlayerModule] = []
|
|
self.playlist_modifier_modules: list[PlaylistModifierModule] = []
|
|
self.playlist_advisor: PlaylistAdvisor | None = None
|
|
self.active_modifier: ActiveModifier | None = None
|
|
self.modules: list[tuple[importlib.machinery.ModuleSpec, types.ModuleType, str]] = []
|
|
self.logger = log95.log95("MODULES", output=output)
|
|
def shutdown_modules(self) -> None:
|
|
for module in self.simple_modules:
|
|
if module:
|
|
try: module.shutdown()
|
|
except BaseException: traceback.print_exc(file=self.logger.output)
|
|
def load_modules(self):
|
|
"""Loads the modules into memory"""
|
|
for file in MODULES_DIR.glob("*"):
|
|
if file.name.endswith(".py") and file.name != "__init__.py":
|
|
module_name = file.name[:-3]
|
|
full_module_name = f"{MODULES_PACKAGE}.{module_name}"
|
|
|
|
spec = importlib.util.spec_from_file_location(full_module_name, Path(MODULES_DIR, file))
|
|
module = importlib.util.module_from_spec(spec) if spec else None
|
|
assert spec and module
|
|
|
|
sys.modules[full_module_name] = module
|
|
if MODULES_PACKAGE not in sys.modules:
|
|
parent = types.ModuleType(MODULES_PACKAGE)
|
|
parent.__path__ = [str(MODULES_DIR)]
|
|
parent.__package__ = MODULES_PACKAGE
|
|
sys.modules[MODULES_PACKAGE] = parent
|
|
module.__package__ = MODULES_PACKAGE
|
|
|
|
module._log_out = self.logger.output # type: ignore
|
|
module.__dict__['_log_out'] = self.logger.output
|
|
self.modules.append((spec, module, module_name))
|
|
def start_modules(self, arg):
|
|
procman = None
|
|
parser = None
|
|
"""Executes the module by the python interpreter"""
|
|
def timed_loader(spec: importlib.machinery.ModuleSpec, module: types.ModuleType):
|
|
assert spec.loader
|
|
start = time.perf_counter()
|
|
spec.loader.exec_module(module)
|
|
duration = time.perf_counter() - start
|
|
return duration
|
|
with concurrent.futures.ThreadPoolExecutor() as executor:
|
|
for (spec, module, module_name) in self.modules:
|
|
try:
|
|
future = executor.submit(timed_loader, spec, module)
|
|
try:
|
|
time_took = future.result(5)
|
|
if time_took > 0.15: self.logger.warning(f"{module_name} took {time_took:.1f}s to start")
|
|
except concurrent.futures.TimeoutError:
|
|
self.logger.error(f"Module {module_name} timed out.")
|
|
continue
|
|
except Exception as e:
|
|
traceback.print_exc(file=self.logger.output)
|
|
self.logger.error(f"Failed loading {module_name} due to {e}, continuing")
|
|
continue
|
|
|
|
if md := getattr(module, "module", None):
|
|
if isinstance(md, list): self.simple_modules.extend(md)
|
|
else: self.simple_modules.append(md)
|
|
if md := getattr(module, "playlistmod", None):
|
|
if isinstance(md, tuple):
|
|
md, index = md
|
|
if isinstance(md, list): self.playlist_modifier_modules[index:index] = md
|
|
else: self.playlist_modifier_modules.insert(index, md)
|
|
elif isinstance(md, list): self.playlist_modifier_modules.extend(md)
|
|
else: self.playlist_modifier_modules.append(md)
|
|
if md := getattr(module, "advisor", None):
|
|
if self.playlist_advisor: raise Exception("Multiple playlist advisors")
|
|
if not isinstance(md, PlaylistAdvisor):
|
|
self.logger.error("Advisor does not inhirit from PlaylistAdvisor.")
|
|
continue
|
|
self.playlist_advisor = md
|
|
if md := getattr(module, "activemod", None):
|
|
if self.active_modifier: raise Exception("Multiple active modifiers")
|
|
if not isinstance(md, ActiveModifier):
|
|
self.logger.error("Active modifier does not inhirit from ActiveModifier.")
|
|
continue
|
|
self.active_modifier = md
|
|
if md := getattr(module, "procman", None):
|
|
if procman: raise Exception("Multiple procmans")
|
|
if not isinstance(md, ABC_ProcessManager):
|
|
self.logger.error("Process manager does not inherit from ABC_ProcessManager.")
|
|
continue
|
|
procman = md
|
|
if md := getattr(module, "parser", None):
|
|
if parser: raise Exception("Multiple parsers")
|
|
if not isinstance(md, PlaylistParser):
|
|
self.logger.error("Parser does not inhirit from PlaylistParser.")
|
|
continue
|
|
parser = md
|
|
if self.active_modifier: self.active_modifier.arguments(arg)
|
|
if not self.playlist_advisor: self.logger.warning("Playlist advisor was not found. Beta mode of advisor-less is running (playlist modifiers will not work)")
|
|
if not procman:
|
|
self.logger.critical_error("Missing process mananger.")
|
|
raise SystemExit("Missing process mananger.")
|
|
if not parser: self.logger.warning("Missing parser, advisor-less will be forced.")
|
|
InterModuleCommunication(self.simple_modules + [self.playlist_advisor, ProcmanCommunicator(procman), self.active_modifier])
|
|
return procman, parser
|
|
def advisor_advise(self, arguments: str | None):
|
|
if not self.playlist_advisor: return None
|
|
return self.playlist_advisor.advise(arguments)
|
|
|
|
class RadioPlayer:
|
|
def __init__(self, arg: str | None, output: log95.TextIO):
|
|
self.exit_pending = False
|
|
self.exit_status_code = self.intr_time = 0
|
|
self.exit_lock = Lock()
|
|
self.parser: PlaylistParser | None = None
|
|
self.procman: ABC_ProcessManager | None = None
|
|
self.arg = arg
|
|
self.logger = log95.log95("CORE", output=output)
|
|
self.modman = ModuleManager(output)
|
|
|
|
def shutdown(self):
|
|
if self.procman: self.procman.stop_all()
|
|
self.modman.shutdown_modules()
|
|
self.logger.output.close()
|
|
|
|
def handle_sigint(self, signum: int, frame: types.FrameType | None):
|
|
with self.exit_lock:
|
|
self.logger.info("Received CTRL+C (SIGINT)")
|
|
if (now := time.monotonic()) and ((now - self.intr_time) > 5):
|
|
self.intr_time = now
|
|
self.logger.info("Will quit on song end.")
|
|
self.exit_pending, self.exit_status_code = True, 130
|
|
else:
|
|
self.logger.warning("Force-Quit pending")
|
|
raise SystemExit(130)
|
|
|
|
def start(self):
|
|
"""Single functon for starting the core, returns but might exit raising an SystemExit"""
|
|
self.logger.info("Core starting, loading modules")
|
|
self.modman.load_modules()
|
|
self.procman, self.parser = self.modman.start_modules(self.arg)
|
|
|
|
def play_once(self):
|
|
"""Plays a single playlist"""
|
|
if not (playlist_path := self.modman.advisor_advise(self.arg)) or not self.parser:
|
|
max_iterator = 1
|
|
playlist = None
|
|
else:
|
|
try: global_args, parsed = self.parser.parse(playlist_path)
|
|
except Exception as e:
|
|
self.logger.info(f"Exception ({e}) while parsing playlist, retrying in 15 seconds...");traceback.print_exc(file=self.logger.output)
|
|
time.sleep(15)
|
|
return
|
|
|
|
playlist: list[Track] | None = []
|
|
for lines, args in parsed:
|
|
for line in lines:
|
|
playlist.append(Track(Path(line).absolute(), 0, 0, True, args))
|
|
|
|
for module in filter(None, self.modman.playlist_modifier_modules): playlist = module.modify(global_args, playlist) or playlist
|
|
assert len(playlist)
|
|
|
|
prefetch(playlist[0].path)
|
|
for module in filter(None, self.modman.simple_modules + [self.modman.active_modifier]): module.on_new_playlist(playlist, global_args)
|
|
|
|
max_iterator = len(playlist)
|
|
return self._play(playlist, max_iterator)
|
|
|
|
def _play(self, playlist: list[Track] | None, max_iterator: int):
|
|
assert self.procman
|
|
return_pending = track = False
|
|
song_i = i = 0
|
|
def get_track():
|
|
nonlocal song_i, playlist, max_iterator
|
|
track = None
|
|
while track is None:
|
|
if playlist:
|
|
playlist_track = playlist[song_i % len(playlist)]
|
|
playlist_next_track = playlist[song_i + 1] if song_i + 1 < len(playlist) else None
|
|
else: playlist_track = playlist_next_track = None
|
|
if self.modman.active_modifier:
|
|
(track, next_track), extend = self.modman.active_modifier.play(song_i, playlist_track, playlist_next_track)
|
|
if track is None: song_i += 1
|
|
if extend and track: max_iterator += 1
|
|
else:
|
|
track = playlist_track
|
|
next_track = playlist_next_track
|
|
extend = False
|
|
return track, next_track, extend
|
|
|
|
def check_conditions():
|
|
nonlocal return_pending
|
|
assert self.procman
|
|
if self.exit_pending:
|
|
self.logger.info("Quit received, waiting for song end.")
|
|
self.procman.wait_all()
|
|
raise SystemExit(self.exit_status_code)
|
|
elif return_pending:
|
|
self.logger.info("Return reached, next song will reload the playlist.")
|
|
self.procman.wait_all()
|
|
return True
|
|
if self.modman.playlist_advisor and self.modman.playlist_advisor.new_playlist():
|
|
self.logger.info("Reloading now...")
|
|
return True
|
|
return False
|
|
|
|
track, next_track, extend = get_track()
|
|
while i < max_iterator:
|
|
if check_conditions(): return
|
|
|
|
self.logger.info(f"Now playing: {track.path.name}")
|
|
prefetch(track.path)
|
|
|
|
pr = self.procman.play(track)
|
|
[module.on_new_track(song_i, pr.track, next_track) for module in self.modman.simple_modules if module]
|
|
end_time = pr.started_at + pr.duration + pr.track.focus_time_offset
|
|
self.procman.anything_playing()
|
|
|
|
while end_time >= time.monotonic() and pr.process.poll() is None:
|
|
start = time.monotonic()
|
|
[module.progress(song_i, track, time.monotonic() - pr.started_at, pr.duration, end_time - pr.started_at) for module in self.modman.simple_modules if module]
|
|
if (elapsed := time.monotonic() - start) < 1 and (remaining_until_end := end_time - time.monotonic()) > 0: time.sleep(min(1 - elapsed, remaining_until_end))
|
|
|
|
self.procman.anything_playing()
|
|
if next_track: prefetch(next_track.path)
|
|
i += 1
|
|
if not extend: song_i += 1
|
|
|
|
if check_conditions(): return
|
|
track, next_track, extend = get_track()
|
|
prefetch(track.path)
|
|
|
|
def loop(self):
|
|
"""Main loop of the player. This does not return and may or not raise an SystemExit"""
|
|
try:
|
|
while True:
|
|
self.play_once()
|
|
if self.exit_pending: raise SystemExit(self.exit_status_code)
|
|
except Exception:
|
|
traceback.print_exc(file=self.logger.output)
|
|
raise
|
|
|
|
class RotatingLog(io.TextIOWrapper):
|
|
def write(self, s: str) -> int:
|
|
if self.tell() > 2_500_000:
|
|
self.truncate(0)
|
|
self.seek(0)
|
|
return super().write(s)
|
|
|
|
def main():
|
|
log_file_path = Path("/tmp/radioPlayer_log")
|
|
log_file_path.touch()
|
|
|
|
with RotatingLog(open(log_file_path, "wb", buffering=0), "utf-8") as f:
|
|
core = RadioPlayer((" ".join(sys.argv[1:]) if len(sys.argv) > 1 else None), f)
|
|
try:
|
|
core.start()
|
|
signal.signal(signal.SIGINT, core.handle_sigint)
|
|
core.loop()
|
|
except SystemExit:
|
|
try: core.shutdown()
|
|
except BaseException: traceback.print_exc(file=f)
|
|
raise
|
|
|
|
# This is free and unencumbered software released into the public domain.
|
|
|
|
# Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
# distribute this software, either in source code form or as a compiled
|
|
# binary, for any purpose, commercial or non-commercial, and by any
|
|
# means.
|
|
|
|
# In jurisdictions that recognize copyright laws, the author or authors
|
|
# of this software dedicate any and all copyright interest in the
|
|
# software to the public domain. We make this dedication for the benefit
|
|
# of the public at large and to the detriment of our heirs and
|
|
# successors. We intend this dedication to be an overt act of
|
|
# relinquishment in perpetuity of all present and future rights to this
|
|
# software under copyright law.
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
# OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
# For more information, please refer to <https://unlicense.org>
|