37232ae1b9
cuda-grid-controller (Python 3.11+) — control plane между HA/MQTT/HTTP
и FFmpeg's vf_cuda_grid filter через ZMQ.
Modules (~700 LOC Python):
- config.py — Pydantic schema (broker, instances[], ha_discovery, http, log) + YAML loader
- layouts.py — registry известных layouts (sync с vf_cuda_grid.c Phase 2)
- ha_discovery.py — HA MQTT Discovery payloads (select.layout, sensor.current_layout,
binary_sensor.online per instance + global device entry)
- zmq_client.py — async ZMQ REQ socket к FFmpeg zmq filter
(target command args → reply parsing)
- state.py — in-memory ControllerState (active_layout per instance, asyncio.Lock)
- mqtt_loop.py — aiomqtt async loop: subscribe cuda_grid/cmd/<inst>/+/+,
publish cuda_grid/state/* (retained) + cuda_grid/event/*, LWT, HA status reconnect
- dispatch.py — CommandDispatcher: layout.set action → ZMQ send_command + state update + events
- http_api.py — FastAPI: /health, /layouts, /state, POST /layout/{inst}/set
- __main__.py — typer CLI, asyncio.gather(mqtt_loop, uvicorn.server)
Examples + Dockerfile:
- examples/controller.yaml — 2 instances (livingroom_tv, public_stream)
- Dockerfile — python:3.11-slim, ENTRYPOINT cuda-grid-controller
- README — overview, usage, FFmpeg side filter graph
End-to-end flow ready:
HA dashboard → MQTT → controller → ZMQ → FFmpeg process_command → layout switch
↓
state публикуется обратно в MQTT → HA UI обновляется
Phase 3 deliverable per gx/vf-cuda-grid#1. Phase 4 = overlays (rect/text/icon).
142 lines
5.3 KiB
Python
142 lines
5.3 KiB
Python
"""MQTT subscriber + publisher loop.
|
|
|
|
Topics:
|
|
Subscribed:
|
|
cuda_grid/cmd/<instance>/layout/set — payload = layout name
|
|
cuda_grid/cmd/<instance>/<future commands> — Phase 4+
|
|
homeassistant/status — HA online → republish discovery
|
|
|
|
Published (per instance):
|
|
cuda_grid/state/<instance>/layout — текущий layout (retained)
|
|
cuda_grid/event/<instance>/layout_switched — {from, to, reason}
|
|
|
|
Global:
|
|
cuda_grid/state/online — LWT (online/offline)
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import json
|
|
from typing import Awaitable, Callable
|
|
|
|
import aiomqtt
|
|
import structlog
|
|
|
|
from .config import Config
|
|
from .ha_discovery import availability_topic, discovery_payloads
|
|
from .state import ControllerState
|
|
|
|
log = structlog.get_logger()
|
|
|
|
CommandHandler = Callable[[str, str, str], Awaitable[None]]
|
|
# args: (instance_name, command_kind, payload_str)
|
|
|
|
|
|
class MqttLoop:
|
|
def __init__(
|
|
self,
|
|
cfg: Config,
|
|
state: ControllerState,
|
|
command_handler: CommandHandler,
|
|
) -> None:
|
|
self.cfg = cfg
|
|
self.state = state
|
|
self.command_handler = command_handler
|
|
self._client: aiomqtt.Client | None = None
|
|
self._stop = asyncio.Event()
|
|
|
|
async def run(self) -> None:
|
|
"""Main loop — connect + subscribe + dispatch. Re-connect при разрыве."""
|
|
avail = availability_topic()
|
|
while not self._stop.is_set():
|
|
try:
|
|
async with aiomqtt.Client(
|
|
hostname=self.cfg.broker.host,
|
|
port=self.cfg.broker.port,
|
|
username=self.cfg.broker.username,
|
|
password=self.cfg.broker.password,
|
|
identifier=self.cfg.broker.client_id,
|
|
keepalive=self.cfg.broker.keepalive_sec,
|
|
will=aiomqtt.Will(
|
|
topic=avail, payload=b"offline", qos=1, retain=True
|
|
),
|
|
) as client:
|
|
self._client = client
|
|
log.info("mqtt.connected", host=self.cfg.broker.host)
|
|
|
|
# online + HA Discovery
|
|
await client.publish(avail, b"online", qos=1, retain=True)
|
|
if self.cfg.ha_discovery.enabled:
|
|
await self._publish_ha_discovery()
|
|
|
|
# Subscribe commands per instance
|
|
for inst in self.cfg.instances:
|
|
await client.subscribe(
|
|
f"cuda_grid/cmd/{inst.name}/+/+", qos=1
|
|
)
|
|
# HA status — republish discovery если HA рестартанул
|
|
await client.subscribe("homeassistant/status", qos=0)
|
|
|
|
async for msg in client.messages:
|
|
await self._handle_message(msg)
|
|
except aiomqtt.MqttError as e:
|
|
log.warning("mqtt.disconnected", error=str(e))
|
|
self._client = None
|
|
await asyncio.sleep(5)
|
|
|
|
async def _publish_ha_discovery(self) -> None:
|
|
assert self._client is not None
|
|
payloads = discovery_payloads(self.cfg.ha_discovery, self.cfg.instances)
|
|
for topic, payload in payloads:
|
|
await self._client.publish(topic, payload.encode(), qos=1, retain=True)
|
|
log.info("mqtt.ha_discovery.published", count=len(payloads))
|
|
|
|
async def _handle_message(self, msg: aiomqtt.Message) -> None:
|
|
topic = str(msg.topic)
|
|
try:
|
|
payload = msg.payload.decode() if isinstance(msg.payload, (bytes, bytearray)) else str(msg.payload)
|
|
except Exception:
|
|
payload = repr(msg.payload)
|
|
|
|
if topic == "homeassistant/status" and payload == "online":
|
|
log.info("mqtt.ha.restarted — republish discovery")
|
|
if self.cfg.ha_discovery.enabled:
|
|
await self._publish_ha_discovery()
|
|
return
|
|
|
|
# cuda_grid/cmd/<instance>/<scope>/<action>
|
|
parts = topic.split("/")
|
|
if len(parts) >= 5 and parts[0] == "cuda_grid" and parts[1] == "cmd":
|
|
instance, scope, action = parts[2], parts[3], parts[4]
|
|
kind = f"{scope}.{action}" # e.g. "layout.set", "auto_mode.set"
|
|
await self.command_handler(instance, kind, payload)
|
|
return
|
|
|
|
log.warning("mqtt.unknown_topic", topic=topic, payload=payload)
|
|
|
|
async def publish_state(self, instance: str, scope: str, value: str, retain: bool = True) -> None:
|
|
"""Publish state — `cuda_grid/state/<instance>/<scope>`."""
|
|
if self._client is None:
|
|
return
|
|
await self._client.publish(
|
|
f"cuda_grid/state/{instance}/{scope}",
|
|
value.encode(),
|
|
qos=1,
|
|
retain=retain,
|
|
)
|
|
|
|
async def publish_event(self, instance: str, event_kind: str, data: dict) -> None:
|
|
"""Publish event (non-retained) — `cuda_grid/event/<instance>/<kind>`."""
|
|
if self._client is None:
|
|
return
|
|
await self._client.publish(
|
|
f"cuda_grid/event/{instance}/{event_kind}",
|
|
json.dumps(data).encode(),
|
|
qos=0,
|
|
retain=False,
|
|
)
|
|
|
|
async def stop(self) -> None:
|
|
self._stop.set()
|