obico_detection.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. """Obico AI print-failure detection service.
  2. Polls a self-hosted Obico ML API with snapshots from each monitored printer
  3. while a print is running, smooths scores over time, and dispatches a configured
  4. action (notify / pause / pause_and_off) when a sustained failure is detected.
  5. See `obico_smoothing.py` for the per-print EWM + rolling-mean math.
  6. """
  7. import asyncio
  8. import json
  9. import logging
  10. import secrets
  11. import time
  12. from collections import deque
  13. from datetime import datetime, timezone
  14. import httpx
  15. from sqlalchemy import select
  16. from backend.app.core.database import async_session
  17. from backend.app.models.printer import Printer
  18. from backend.app.models.settings import Settings
  19. from backend.app.services.obico_smoothing import (
  20. PrintState,
  21. classify,
  22. score_from_detections,
  23. thresholds,
  24. )
  25. logger = logging.getLogger(__name__)
  26. HISTORY_MAX = 50
  27. HEALTH_TIMEOUT = 5.0
  28. DETECTION_TIMEOUT = 30.0
  29. SNAPSHOT_CAPTURE_TIMEOUT = 20 # seconds — we control this, not Obico
  30. FRAME_CACHE_TTL = 30.0 # seconds — Obico usually fetches within 1s of receiving the URL
  31. # Module-level one-shot frame cache. Obico's ML API has a hardcoded 5s read timeout
  32. # on the URL it fetches, which our /camera/snapshot endpoint can exceed (RTSP keyframe
  33. # wait + ffmpeg startup on cold calls). We capture locally first, stash the JPEG under
  34. # a random nonce, and hand Obico a URL that serves the cached bytes instantly.
  35. _frame_cache: dict[str, tuple[bytes, float]] = {}
  36. _frame_cache_lock = asyncio.Lock()
  37. def _prune_frame_cache() -> None:
  38. """Drop entries older than FRAME_CACHE_TTL. Called under the cache lock."""
  39. now = time.monotonic()
  40. expired = [k for k, (_b, ts) in _frame_cache.items() if now - ts > FRAME_CACHE_TTL]
  41. for k in expired:
  42. _frame_cache.pop(k, None)
  43. async def stash_frame(data: bytes) -> str:
  44. """Store JPEG bytes and return a URL-safe nonce that serves them once."""
  45. nonce = secrets.token_urlsafe(32)
  46. async with _frame_cache_lock:
  47. _prune_frame_cache()
  48. _frame_cache[nonce] = (data, time.monotonic())
  49. return nonce
  50. async def pop_frame(nonce: str) -> bytes | None:
  51. """Return and remove a cached frame by nonce; None if missing or expired."""
  52. async with _frame_cache_lock:
  53. _prune_frame_cache()
  54. entry = _frame_cache.pop(nonce, None)
  55. if entry is None:
  56. return None
  57. data, ts = entry
  58. if time.monotonic() - ts > FRAME_CACHE_TTL:
  59. return None
  60. return data
  61. class ObicoDetectionService:
  62. """Singleton service that polls the ML API and acts on sustained failures."""
  63. def __init__(self):
  64. self._task: asyncio.Task | None = None
  65. # printer_id -> PrintState (reset when a new print starts)
  66. self._states: dict[int, PrintState] = {}
  67. # printer_id -> task_name active when state was created (used to detect new prints)
  68. self._state_keys: dict[int, str] = {}
  69. # printer_id -> last classification ("safe"/"warning"/"failure")
  70. self._last_class: dict[int, str] = {}
  71. # printer_id -> whether an action has already been fired for the current print
  72. self._action_fired: dict[int, bool] = {}
  73. # Global detection event log (most-recent-first)
  74. self._history: deque = deque(maxlen=HISTORY_MAX)
  75. self._last_error: str | None = None
  76. # ---- lifecycle ----
  77. async def start(self):
  78. if self._task is not None:
  79. return
  80. logger.info("Starting Obico detection service")
  81. self._task = asyncio.create_task(self._loop())
  82. def stop(self):
  83. if self._task:
  84. self._task.cancel()
  85. self._task = None
  86. logger.info("Stopped Obico detection service")
  87. # ---- settings ----
  88. async def _load_settings(self) -> dict:
  89. keys = [
  90. "obico_enabled",
  91. "obico_ml_url",
  92. "obico_sensitivity",
  93. "obico_action",
  94. "obico_poll_interval",
  95. "obico_enabled_printers",
  96. "external_url",
  97. ]
  98. async with async_session() as db:
  99. result = await db.execute(select(Settings).where(Settings.key.in_(keys)))
  100. rows = {r.key: r.value for r in result.scalars().all()}
  101. enabled_printers_raw = rows.get("obico_enabled_printers", "")
  102. if enabled_printers_raw:
  103. try:
  104. enabled_printers = set(json.loads(enabled_printers_raw))
  105. except json.JSONDecodeError:
  106. enabled_printers = set()
  107. else:
  108. enabled_printers = None # None = all printers
  109. return {
  110. "enabled": rows.get("obico_enabled", "false").lower() == "true",
  111. "ml_url": (rows.get("obico_ml_url") or "").rstrip("/"),
  112. "sensitivity": rows.get("obico_sensitivity", "medium"),
  113. "action": rows.get("obico_action", "notify"),
  114. "poll_interval": int(rows.get("obico_poll_interval", "10")),
  115. "enabled_printers": enabled_printers,
  116. "external_url": (rows.get("external_url") or "").rstrip("/"),
  117. }
  118. # ---- main loop ----
  119. async def _loop(self):
  120. """Poll active printers while enabled. Adjusts interval from settings each cycle."""
  121. while True:
  122. try:
  123. settings = await self._load_settings()
  124. interval = max(5, settings.get("poll_interval", 10))
  125. if not settings["enabled"] or not settings["ml_url"]:
  126. await asyncio.sleep(interval)
  127. continue
  128. if not settings["external_url"]:
  129. # Without a reachable base URL, the ML API can't fetch snapshots.
  130. self._last_error = "external_url not set — ML API cannot reach snapshot endpoint"
  131. await asyncio.sleep(interval)
  132. continue
  133. await self._poll_once(settings)
  134. await asyncio.sleep(interval)
  135. except asyncio.CancelledError:
  136. break
  137. except Exception as e:
  138. logger.error("Obico detection loop error: %s", e)
  139. self._last_error = str(e)
  140. await asyncio.sleep(30)
  141. async def _poll_once(self, settings: dict):
  142. # Late import to avoid cycles at module load time
  143. from backend.app.services.printer_manager import printer_manager
  144. statuses = printer_manager.get_all_statuses()
  145. for printer_id, status in list(statuses.items()):
  146. if settings["enabled_printers"] is not None and printer_id not in settings["enabled_printers"]:
  147. continue
  148. if not printer_manager.is_connected(printer_id):
  149. continue
  150. if not status or getattr(status, "state", None) != "RUNNING":
  151. # Reset state when not printing so the next print starts fresh
  152. self._states.pop(printer_id, None)
  153. self._state_keys.pop(printer_id, None)
  154. self._action_fired.pop(printer_id, None)
  155. continue
  156. await self._check_printer(printer_id, status, settings)
  157. async def _capture_frame(self, printer_id: int) -> bytes | None:
  158. """Capture one JPEG frame from the printer camera. Returns None on failure.
  159. Uses a long local timeout because we control it — Obico's ML API never
  160. waits on the slow path (it fetches from the nonce-cached URL).
  161. """
  162. # Late import to avoid cycles at module load time
  163. from backend.app.services.camera import capture_camera_frame_bytes
  164. from backend.app.services.external_camera import capture_frame as capture_external_frame
  165. async with async_session() as db:
  166. printer = await db.get(Printer, printer_id)
  167. if printer is None:
  168. self._last_error = f"Printer {printer_id} not found"
  169. return None
  170. if printer.external_camera_enabled and printer.external_camera_url:
  171. return await capture_external_frame(
  172. printer.external_camera_url,
  173. printer.external_camera_type,
  174. timeout=SNAPSHOT_CAPTURE_TIMEOUT,
  175. )
  176. return await capture_camera_frame_bytes(
  177. ip_address=printer.ip_address,
  178. access_code=printer.access_code,
  179. model=printer.model,
  180. timeout=SNAPSHOT_CAPTURE_TIMEOUT,
  181. )
  182. async def _check_printer(self, printer_id: int, status, settings: dict):
  183. task_name = getattr(status, "task_name", None) or getattr(status, "subtask_name", "") or ""
  184. key = f"{task_name}"
  185. if self._state_keys.get(printer_id) != key:
  186. self._states[printer_id] = PrintState()
  187. self._state_keys[printer_id] = key
  188. self._action_fired[printer_id] = False
  189. # Capture locally first, then hand Obico a nonce URL that returns the
  190. # cached bytes instantly. Obico's ML API has a hardcoded 5s read timeout
  191. # which would otherwise race our /camera/snapshot endpoint's keyframe wait.
  192. frame = await self._capture_frame(printer_id)
  193. if not frame:
  194. self._last_error = f"Failed to capture snapshot for printer {printer_id}"
  195. logger.warning(self._last_error)
  196. return
  197. # secrets.token_urlsafe() already produces a URL-safe path segment.
  198. nonce = await stash_frame(frame)
  199. snapshot_url = f"{settings['external_url']}/api/v1/obico/cached-frame/{nonce}"
  200. ml_url = f"{settings['ml_url']}/p/"
  201. try:
  202. async with httpx.AsyncClient(timeout=DETECTION_TIMEOUT) as client:
  203. resp = await client.get(ml_url, params={"img": snapshot_url})
  204. resp.raise_for_status()
  205. payload = resp.json()
  206. except Exception as e:
  207. self._last_error = f"ML API call failed for printer {printer_id}: {e}"
  208. logger.warning(self._last_error)
  209. return
  210. detections = payload.get("detections", []) if isinstance(payload, dict) else []
  211. current_p = score_from_detections(detections)
  212. state = self._states[printer_id]
  213. score = state.update(current_p)
  214. verdict = classify(score, settings["sensitivity"])
  215. self._last_class[printer_id] = verdict
  216. # Log every non-safe sample — safe samples would flood history
  217. if verdict != "safe" or detections:
  218. self._history.appendleft(
  219. {
  220. "printer_id": printer_id,
  221. "task_name": task_name,
  222. "timestamp": datetime.now(timezone.utc).isoformat(),
  223. "current_p": round(current_p, 4),
  224. "score": round(score, 4),
  225. "class": verdict,
  226. "detections": len(detections),
  227. }
  228. )
  229. if verdict == "failure" and not self._action_fired.get(printer_id):
  230. self._action_fired[printer_id] = True
  231. await self._dispatch_action(printer_id, settings["action"], task_name, score)
  232. async def _dispatch_action(self, printer_id: int, action: str, task_name: str, score: float):
  233. from backend.app.services.obico_actions import execute_action
  234. logger.warning(
  235. "Obico: failure detected on printer %s (task=%r score=%.3f) — action=%s",
  236. printer_id,
  237. task_name,
  238. score,
  239. action,
  240. )
  241. try:
  242. await execute_action(printer_id, action, task_name, score)
  243. except Exception as e:
  244. self._last_error = f"Action dispatch failed: {e}"
  245. logger.error(self._last_error)
  246. # ---- queries ----
  247. def get_status(self) -> dict:
  248. low, high = thresholds("medium")
  249. return {
  250. "is_running": self._task is not None and not self._task.done(),
  251. "last_error": self._last_error,
  252. "per_printer": {
  253. pid: {
  254. "class": self._last_class.get(pid, "safe"),
  255. "frame_count": state.frame_count,
  256. "score": round(state.ewm_mean, 4),
  257. }
  258. for pid, state in self._states.items()
  259. },
  260. "thresholds": {"low": low, "high": high},
  261. "history": list(self._history),
  262. }
  263. async def test_connection(self, url: str) -> dict:
  264. """Ping the ML API health endpoint. Returns {ok, status_code, body, error}."""
  265. target = f"{url.rstrip('/')}/hc/"
  266. try:
  267. async with httpx.AsyncClient(timeout=HEALTH_TIMEOUT) as client:
  268. resp = await client.get(target)
  269. body = resp.text.strip()
  270. return {
  271. "ok": resp.status_code == 200 and body.lower() == "ok",
  272. "status_code": resp.status_code,
  273. "body": body,
  274. "error": None,
  275. }
  276. except Exception as e:
  277. return {"ok": False, "status_code": None, "body": None, "error": str(e)}
  278. obico_detection_service = ObicoDetectionService()