It holds the subscriptions in a tree fashion, sending the message down the branches while broadcasting on each node.
87 lines
2.9 KiB
Python
87 lines
2.9 KiB
Python
"""Websocket functionality."""
|
|
|
|
import logging
|
|
|
|
from fastapi import WebSocket
|
|
|
|
from spoolman.api.v1.models import Event
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class SubscriptionTree:
|
|
"""Subscription tree.
|
|
|
|
This is a tree structure that allows us to efficiently send messages to
|
|
all websockets that are subscribed to a certain pool of events.
|
|
|
|
You can subscribe to different levels of the tree, for example:
|
|
- ("vendor", "1") will subscribe to events for vendor 1
|
|
- ("vendor") will subscribe to events for all vendors
|
|
- () will subscribe to events for all vendors, filaments and spools
|
|
"""
|
|
|
|
def __init__(self) -> None:
|
|
"""Initialize."""
|
|
self.children: dict[str, SubscriptionTree] = {}
|
|
self.subscribers: set[WebSocket] = set()
|
|
|
|
def add(self, path: tuple[str, ...], websocket: WebSocket) -> None:
|
|
"""Add a websocket to the subscription tree."""
|
|
if len(path) == 0:
|
|
self.subscribers.add(websocket)
|
|
else:
|
|
if path[0] not in self.children:
|
|
self.children[path[0]] = SubscriptionTree()
|
|
self.children[path[0]].add(path[1:], websocket)
|
|
|
|
def remove(self, path: tuple[str, ...], websocket: WebSocket) -> None:
|
|
"""Remove a websocket from the subscription tree."""
|
|
if len(path) == 0:
|
|
self.subscribers.remove(websocket)
|
|
elif path[0] in self.children:
|
|
self.children[path[0]].remove(path[1:], websocket)
|
|
|
|
async def send(self, path: tuple[str, ...], evt: Event) -> None:
|
|
"""Send a message to all websockets in this branch of the tree."""
|
|
# Broadcast to all subscribers on this level
|
|
for websocket in self.subscribers:
|
|
await websocket.send_text(evt.json())
|
|
|
|
# Send the message further down the tree
|
|
if len(path) > 0 and path[0] in self.children:
|
|
await self.children[path[0]].send(path[1:], evt)
|
|
|
|
|
|
class WebsocketManager:
|
|
"""Websocket manager."""
|
|
|
|
def __init__(self) -> None:
|
|
"""Initialize."""
|
|
self.tree = SubscriptionTree()
|
|
|
|
def connect(self, pool: tuple[str, ...], websocket: WebSocket) -> None:
|
|
"""Connect a websocket."""
|
|
self.tree.add(pool, websocket)
|
|
logger.info(
|
|
"Client %s is now listening on pool %s",
|
|
websocket.client.host if websocket.client else "?",
|
|
",".join(pool),
|
|
)
|
|
|
|
def disconnect(self, pool: tuple[str, ...], websocket: WebSocket) -> None:
|
|
"""Disconnect a websocket."""
|
|
self.tree.remove(pool, websocket)
|
|
logger.info(
|
|
"Client %s has stopped listening on pool %s",
|
|
websocket.client.host if websocket.client else "?",
|
|
",".join(pool),
|
|
)
|
|
|
|
async def send(self, pool: tuple[str, ...], evt: Event) -> None:
|
|
"""Send a message to all websockets in a pool."""
|
|
await self.tree.send(pool, evt)
|
|
|
|
|
|
websocket_manager = WebsocketManager()
|