2024-03-04 17:56:32 -08:00
|
|
|
import logging
|
2024-03-05 22:15:51 -08:00
|
|
|
import os
|
2024-03-04 17:56:32 -08:00
|
|
|
import queue
|
|
|
|
import socketserver
|
2024-03-06 17:04:08 -08:00
|
|
|
import threading
|
2024-03-01 01:00:17 -08:00
|
|
|
from pathlib import Path
|
2024-03-06 17:04:08 -08:00
|
|
|
from time import sleep
|
2024-03-01 01:00:17 -08:00
|
|
|
|
|
|
|
import daemon
|
|
|
|
|
2024-03-04 17:56:32 -08:00
|
|
|
from croaker import path
|
2024-03-05 22:15:51 -08:00
|
|
|
from croaker.pidfile import pidfile
|
2024-03-06 17:04:08 -08:00
|
|
|
from croaker.playlist import load_playlist
|
|
|
|
from croaker.streamer import AudioStreamer
|
2024-03-04 17:56:32 -08:00
|
|
|
|
2024-03-05 22:21:56 -08:00
|
|
|
logger = logging.getLogger('server')
|
|
|
|
|
2024-03-04 17:56:32 -08:00
|
|
|
|
|
|
|
class RequestHandler(socketserver.StreamRequestHandler):
|
2024-03-05 23:25:21 -08:00
|
|
|
"""
|
|
|
|
Instantiated by the TCPServer when a request is received. Implements the
|
2024-03-06 17:04:08 -08:00
|
|
|
command and control protocol and sends commands to the shoutcast source
|
|
|
|
client on behalf of the user.
|
2024-03-05 23:25:21 -08:00
|
|
|
"""
|
2024-03-04 17:56:32 -08:00
|
|
|
supported_commands = {
|
2024-03-06 17:04:08 -08:00
|
|
|
# command # help text
|
|
|
|
"PLAY": "PLAYLIST - Switch to the specified playlist.",
|
|
|
|
"LIST": "[PLAYLIST] - List playlists or contents of the specified list.",
|
|
|
|
"FFWD": " - Skip to the next track in the playlist.",
|
|
|
|
"HELP": " - Display command help.",
|
|
|
|
"KTHX": " - Close the current connection.",
|
|
|
|
"STOP": " - Stop Croaker.",
|
2024-03-04 17:56:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
def handle(self):
|
2024-03-05 23:25:21 -08:00
|
|
|
"""
|
|
|
|
Start a command and control session. Commands are read one line at a
|
|
|
|
time; the format is:
|
|
|
|
|
|
|
|
Byte Definition
|
|
|
|
-------------------
|
|
|
|
0-3 Command
|
|
|
|
4 Ignored
|
|
|
|
5+ Arguments
|
|
|
|
"""
|
2024-03-04 17:56:32 -08:00
|
|
|
while True:
|
|
|
|
self.data = self.rfile.readline().strip().decode()
|
|
|
|
try:
|
|
|
|
cmd = self.data[0:4].strip().upper()
|
|
|
|
args = self.data[5:]
|
|
|
|
except IndexError:
|
|
|
|
self.send(f"ERR Command not understood '{cmd}'")
|
2024-03-08 14:40:44 -08:00
|
|
|
sleep(0.001)
|
2024-03-06 17:04:08 -08:00
|
|
|
continue
|
2024-03-04 17:56:32 -08:00
|
|
|
|
2024-03-06 17:04:08 -08:00
|
|
|
if not cmd:
|
2024-03-08 14:40:44 -08:00
|
|
|
sleep(0.001)
|
2024-03-06 17:04:08 -08:00
|
|
|
continue
|
|
|
|
elif cmd not in self.supported_commands:
|
2024-03-04 17:56:32 -08:00
|
|
|
self.send(f"ERR Unknown Command '{cmd}'")
|
2024-03-08 14:40:44 -08:00
|
|
|
sleep(0.001)
|
2024-03-06 17:04:08 -08:00
|
|
|
continue
|
|
|
|
elif cmd == "KTHX":
|
2024-03-05 22:15:51 -08:00
|
|
|
return self.send("KBAI")
|
2024-03-04 17:56:32 -08:00
|
|
|
|
|
|
|
handler = getattr(self, f"handle_{cmd}", None)
|
2024-03-06 17:04:08 -08:00
|
|
|
if not handler:
|
|
|
|
self.send(f"ERR No handler for {cmd}.")
|
|
|
|
handler(args)
|
2024-03-04 17:56:32 -08:00
|
|
|
|
|
|
|
def send(self, msg):
|
2024-03-05 22:15:51 -08:00
|
|
|
return self.wfile.write(msg.encode() + b"\n")
|
2024-03-04 17:56:32 -08:00
|
|
|
|
2024-03-06 17:04:08 -08:00
|
|
|
def handle_PLAY(self, args):
|
|
|
|
self.server.load(args)
|
|
|
|
return self.send("OK")
|
|
|
|
|
|
|
|
def handle_FFWD(self, args):
|
|
|
|
self.server.ffwd()
|
2024-03-05 22:15:51 -08:00
|
|
|
return self.send("OK")
|
2024-03-04 17:56:32 -08:00
|
|
|
|
2024-03-06 17:04:08 -08:00
|
|
|
def handle_LIST(self, args):
|
|
|
|
return self.send(self.server.list(args))
|
|
|
|
|
2024-03-04 17:56:32 -08:00
|
|
|
def handle_HELP(self, args):
|
2024-03-05 22:15:51 -08:00
|
|
|
return self.send("\n".join(f"{cmd} {txt}" for cmd, txt in self.supported_commands.items()))
|
2024-03-04 17:56:32 -08:00
|
|
|
|
|
|
|
def handle_STOP(self, args):
|
|
|
|
self.send("Shutting down.")
|
|
|
|
self.server.stop()
|
|
|
|
|
2024-03-01 01:00:17 -08:00
|
|
|
|
2024-03-04 17:56:32 -08:00
|
|
|
class CroakerServer(socketserver.TCPServer):
|
2024-03-05 23:25:21 -08:00
|
|
|
"""
|
|
|
|
A Daemonized TCP Server that also starts a Shoutcast source client.
|
|
|
|
"""
|
2024-03-04 17:56:32 -08:00
|
|
|
allow_reuse_address = True
|
2024-03-01 01:00:17 -08:00
|
|
|
|
2024-03-04 17:56:32 -08:00
|
|
|
def __init__(self):
|
|
|
|
self._context = daemon.DaemonContext()
|
|
|
|
self._queue = queue.Queue()
|
2024-03-06 17:04:08 -08:00
|
|
|
self.skip_event = threading.Event()
|
|
|
|
self.stop_event = threading.Event()
|
|
|
|
self.load_event = threading.Event()
|
|
|
|
self._streamer = None
|
|
|
|
self.playlist = None
|
2024-03-01 01:00:17 -08:00
|
|
|
|
2024-03-05 23:25:21 -08:00
|
|
|
def _pidfile(self):
|
|
|
|
return pidfile(path.root() / "croaker.pid")
|
2024-03-01 01:00:17 -08:00
|
|
|
|
2024-03-06 17:04:08 -08:00
|
|
|
@property
|
|
|
|
def streamer(self):
|
|
|
|
if not self._streamer:
|
|
|
|
self._streamer = AudioStreamer(self._queue, self.skip_event, self.stop_event, self.load_event)
|
|
|
|
return self._streamer
|
2024-03-01 01:00:17 -08:00
|
|
|
|
2024-03-05 22:51:04 -08:00
|
|
|
def bind_address(self):
|
|
|
|
return (os.environ["HOST"], int(os.environ["PORT"]))
|
|
|
|
|
2024-03-06 17:04:08 -08:00
|
|
|
def _daemonize(self) -> None:
|
2024-03-05 23:25:21 -08:00
|
|
|
"""
|
2024-03-06 17:04:08 -08:00
|
|
|
Daemonize the current process.
|
2024-03-05 23:25:21 -08:00
|
|
|
"""
|
2024-03-06 17:04:08 -08:00
|
|
|
logger.info(f"Daemonizing controller; pidfile and output in {path.root()}")
|
2024-03-04 17:56:32 -08:00
|
|
|
self._context.pidfile = self._pidfile()
|
2024-03-05 23:25:21 -08:00
|
|
|
self._context.stdout = open(path.root() / Path("croaker.out"), "wb", buffering=0)
|
2024-03-04 17:56:32 -08:00
|
|
|
self._context.stderr = open(path.root() / Path("croaker.err"), "wb", buffering=0)
|
2024-03-05 23:25:21 -08:00
|
|
|
|
|
|
|
# when open() is called, all open file descriptors will be closed, as
|
|
|
|
# befits a good daemon. However this will also close the socket on
|
|
|
|
# which the TCPServer is listening! So let's keep that one open.
|
2024-03-04 17:56:32 -08:00
|
|
|
self._context.files_preserve = [self.fileno()]
|
|
|
|
self._context.open()
|
2024-03-06 17:04:08 -08:00
|
|
|
|
|
|
|
def start(self, daemonize: bool = True) -> None:
|
|
|
|
"""
|
|
|
|
Start the shoutcast controller background thread, then begin listening for connections.
|
|
|
|
"""
|
|
|
|
logger.info(f"Starting controller on {self.bind_address()}.")
|
|
|
|
super().__init__(self.bind_address(), RequestHandler)
|
|
|
|
if daemonize:
|
|
|
|
self._daemonize()
|
2024-03-04 17:56:32 -08:00
|
|
|
try:
|
2024-03-06 17:04:08 -08:00
|
|
|
logger.debug("Starting AudioStreamer...")
|
|
|
|
self.streamer.start()
|
|
|
|
self.load("session_start")
|
2024-03-04 17:56:32 -08:00
|
|
|
self.serve_forever()
|
|
|
|
except KeyboardInterrupt:
|
2024-03-05 22:21:56 -08:00
|
|
|
logger.info("Shutting down.")
|
2024-03-04 17:56:32 -08:00
|
|
|
self.stop()
|
2024-03-01 01:00:17 -08:00
|
|
|
|
2024-03-06 17:04:08 -08:00
|
|
|
def stop(self):
|
2024-03-04 17:56:32 -08:00
|
|
|
self._pidfile()
|
2024-03-01 01:00:17 -08:00
|
|
|
|
2024-03-06 17:04:08 -08:00
|
|
|
def ffwd(self):
|
|
|
|
logger.debug("Sending SKIP signal to streamer...")
|
|
|
|
self.skip_event.set()
|
|
|
|
|
|
|
|
def clear_queue(self):
|
|
|
|
logger.debug("Requesting a reload...")
|
|
|
|
self.streamer.load_requested.set()
|
|
|
|
sleep(0.5)
|
|
|
|
|
|
|
|
def list(self, playlist_name: str = None):
|
|
|
|
if playlist_name:
|
|
|
|
return str(load_playlist(playlist_name))
|
|
|
|
return '\n'.join([str(p.name) for p in path.playlist_root().iterdir()])
|
|
|
|
|
|
|
|
def load(self, playlist_name: str):
|
|
|
|
logger.debug(f"Switching to {playlist_name = }")
|
|
|
|
if self.playlist:
|
|
|
|
self.clear_queue()
|
|
|
|
self.playlist = load_playlist(playlist_name)
|
|
|
|
logger.debug(f"Loaded new playlist {self.playlist = }")
|
|
|
|
for track in self.playlist.tracks:
|
|
|
|
self._queue.put(str(track).encode())
|
|
|
|
|
2024-03-01 01:00:17 -08:00
|
|
|
|
2024-03-04 17:56:32 -08:00
|
|
|
server = CroakerServer()
|