obico_detection.py 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  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 is GET-only (/p/?img=URL) and
  32. # fetches the URL itself with a hardcoded 5s read timeout. We capture locally first,
  33. # stash the JPEG under a random nonce, and hand Obico a URL that serves the cached
  34. # bytes instantly — so the 5s ceiling never races RTSP keyframe wait.
  35. _frame_cache: dict[str, tuple[bytes, float]] = {}
  36. _frame_cache_lock = asyncio.Lock()
  37. def auth_headers(token: str | None) -> dict[str, str]:
  38. """Bearer header for the ML API, or nothing when no token is configured.
  39. Obico's ML API gates ``/p/`` behind ``ML_API_TOKEN`` (``ml_api/auth.py``):
  40. with the variable set it answers a bare 401 to any request whose
  41. ``Authorization`` header isn't ``Bearer <token>``, and with it unset it
  42. ignores the header entirely. Sending nothing when unconfigured keeps the
  43. request byte-identical to what shipped before the setting existed.
  44. """
  45. token = (token or "").strip()
  46. return {"Authorization": f"Bearer {token}"} if token else {}
  47. def _prune_frame_cache() -> None:
  48. """Drop entries older than FRAME_CACHE_TTL. Called under the cache lock."""
  49. now = time.monotonic()
  50. expired = [k for k, (_b, ts) in _frame_cache.items() if now - ts > FRAME_CACHE_TTL]
  51. for k in expired:
  52. _frame_cache.pop(k, None)
  53. async def stash_frame(data: bytes) -> str:
  54. """Store JPEG bytes and return a URL-safe nonce that serves them once."""
  55. nonce = secrets.token_urlsafe(32)
  56. async with _frame_cache_lock:
  57. _prune_frame_cache()
  58. _frame_cache[nonce] = (data, time.monotonic())
  59. return nonce
  60. async def pop_frame(nonce: str) -> bytes | None:
  61. """Return and remove a cached frame by nonce; None if missing or expired."""
  62. async with _frame_cache_lock:
  63. _prune_frame_cache()
  64. entry = _frame_cache.pop(nonce, None)
  65. if entry is None:
  66. return None
  67. data, ts = entry
  68. if time.monotonic() - ts > FRAME_CACHE_TTL:
  69. return None
  70. return data
  71. class ObicoDetectionService:
  72. """Singleton service that polls the ML API and acts on sustained failures."""
  73. def __init__(self):
  74. self._task: asyncio.Task | None = None
  75. # printer_id -> PrintState (reset when a new print starts)
  76. self._states: dict[int, PrintState] = {}
  77. # printer_id -> task_name active when state was created (used to detect new prints)
  78. self._state_keys: dict[int, str] = {}
  79. # printer_id -> last classification ("safe"/"warning"/"failure").
  80. # Only written after an inference actually came back, so a missing entry
  81. # means "we have no verdict", which is not the same as "safe" (#2952).
  82. self._last_class: dict[int, str] = {}
  83. # printer_id -> why the most recent poll produced no verdict, or absent
  84. # when the last poll succeeded. Per-printer rather than global so a card
  85. # can say what went wrong for *that* printer.
  86. self._errors: dict[int, str] = {}
  87. # printer_id -> whether an action has already been fired for the current print
  88. self._action_fired: dict[int, bool] = {}
  89. # Global detection event log (most-recent-first)
  90. self._history: deque = deque(maxlen=HISTORY_MAX)
  91. self._last_error: str | None = None
  92. # ---- lifecycle ----
  93. async def start(self):
  94. if self._task is not None:
  95. return
  96. logger.info("Starting Obico detection service")
  97. self._task = asyncio.create_task(self._loop())
  98. def stop(self):
  99. if self._task:
  100. self._task.cancel()
  101. self._task = None
  102. logger.info("Stopped Obico detection service")
  103. # ---- settings ----
  104. async def _load_settings(self) -> dict:
  105. keys = [
  106. "obico_enabled",
  107. "obico_ml_url",
  108. "obico_ml_token",
  109. "obico_sensitivity",
  110. "obico_action",
  111. "obico_poll_interval",
  112. "obico_enabled_printers",
  113. "external_url",
  114. ]
  115. async with async_session() as db:
  116. result = await db.execute(select(Settings).where(Settings.key.in_(keys)))
  117. rows = {r.key: r.value for r in result.scalars().all()}
  118. enabled_printers_raw = rows.get("obico_enabled_printers", "")
  119. if enabled_printers_raw:
  120. try:
  121. enabled_printers = set(json.loads(enabled_printers_raw))
  122. except json.JSONDecodeError:
  123. enabled_printers = set()
  124. else:
  125. enabled_printers = None # None = all printers
  126. return {
  127. "enabled": rows.get("obico_enabled", "false").lower() == "true",
  128. "ml_url": (rows.get("obico_ml_url") or "").rstrip("/"),
  129. "ml_token": (rows.get("obico_ml_token") or "").strip(),
  130. "sensitivity": rows.get("obico_sensitivity", "medium"),
  131. "action": rows.get("obico_action", "notify"),
  132. "poll_interval": int(rows.get("obico_poll_interval", "10")),
  133. "enabled_printers": enabled_printers,
  134. "external_url": (rows.get("external_url") or "").rstrip("/"),
  135. }
  136. # ---- main loop ----
  137. async def _loop(self):
  138. """Poll active printers while enabled. Adjusts interval from settings each cycle."""
  139. while True:
  140. try:
  141. settings = await self._load_settings()
  142. interval = max(5, settings.get("poll_interval", 10))
  143. if not settings["enabled"] or not settings["ml_url"]:
  144. await asyncio.sleep(interval)
  145. continue
  146. await self._poll_once(settings)
  147. await asyncio.sleep(interval)
  148. except asyncio.CancelledError:
  149. break
  150. except Exception as e:
  151. logger.error("Obico detection loop error: %s", e)
  152. self._last_error = str(e) or type(e).__name__
  153. await asyncio.sleep(30)
  154. async def _poll_once(self, settings: dict):
  155. # Late import to avoid cycles at module load time
  156. from backend.app.services.printer_manager import printer_manager
  157. statuses = printer_manager.get_all_statuses()
  158. for printer_id, status in list(statuses.items()):
  159. if settings["enabled_printers"] is not None and printer_id not in settings["enabled_printers"]:
  160. continue
  161. if not printer_manager.is_connected(printer_id):
  162. continue
  163. if not status or getattr(status, "state", None) != "RUNNING":
  164. # Reset state when not printing so the next print starts fresh
  165. self._states.pop(printer_id, None)
  166. self._state_keys.pop(printer_id, None)
  167. self._action_fired.pop(printer_id, None)
  168. self._last_class.pop(printer_id, None)
  169. self._errors.pop(printer_id, None)
  170. continue
  171. await self._check_printer(printer_id, status, settings)
  172. async def _capture_frame(self, printer_id: int) -> bytes | None:
  173. """Capture one JPEG frame from the printer camera. Returns None on failure."""
  174. # Late import to avoid cycles at module load time
  175. from backend.app.services.camera import capture_camera_frame_bytes
  176. from backend.app.services.external_camera import capture_frame as capture_external_frame
  177. async with async_session() as db:
  178. printer = await db.get(Printer, printer_id)
  179. if printer is None:
  180. self._last_error = f"Printer {printer_id} not found"
  181. return None
  182. if printer.external_camera_enabled and printer.external_camera_url:
  183. # Same rule as the built-in branch below, which this used to skip:
  184. # an external camera is single-reader too, so polling while a viewer
  185. # is attached just fails (#2707).
  186. from backend.app.api.routes.camera import live_frame_for_capture
  187. defer, buffered = live_frame_for_capture(printer_id)
  188. if defer:
  189. if buffered:
  190. return buffered
  191. logger.info(
  192. "Obico: viewer attached for printer %s but buffer empty; "
  193. "skipping this poll to avoid competing camera handle (#2707)",
  194. printer_id,
  195. )
  196. return None
  197. return await capture_external_frame(
  198. printer.external_camera_url,
  199. printer.external_camera_type,
  200. timeout=SNAPSHOT_CAPTURE_TIMEOUT,
  201. snapshot_url=printer.external_camera_snapshot_url,
  202. )
  203. # Reuse the fan-out broadcaster's buffered frame when a viewer is
  204. # already watching — avoids opening a second concurrent RTSP socket
  205. # on printers that allow only one camera connection (e.g. X2D
  206. # firmware 01.01.00.00; see #1271). Buffered frame is <1s old while
  207. # a viewer is connected.
  208. #
  209. # When a viewer is attached but no frame is buffered yet (startup
  210. # race, mid-reconnect), we DELIBERATELY skip this poll cycle instead
  211. # of falling through to capture_camera_frame_bytes. Opening a fresh
  212. # RTSP/chamber socket would compete with the live viewer and kick
  213. # the fan-out connection on most firmwares — exactly the freeze
  214. # reported in #1348. The poll loop retries in ~10s.
  215. from backend.app.api.routes.camera import is_stream_active, try_get_active_buffered_frame
  216. if is_stream_active(printer_id):
  217. buffered = try_get_active_buffered_frame(printer_id)
  218. if buffered:
  219. return buffered
  220. logger.info(
  221. "Obico: viewer attached for printer %s but buffer empty; skipping this poll to avoid competing camera socket (#1348)",
  222. printer_id,
  223. )
  224. return None
  225. return await capture_camera_frame_bytes(
  226. ip_address=printer.ip_address,
  227. access_code=printer.access_code,
  228. model=printer.model,
  229. timeout=SNAPSHOT_CAPTURE_TIMEOUT,
  230. )
  231. def _no_verdict(self, printer_id: int, reason: str) -> None:
  232. """Record that this poll produced no verdict for ``printer_id``.
  233. Kept separate from the classification so the status surface can say
  234. "not checking" instead of inheriting the previous verdict — or, worse,
  235. the default "safe" a printer used to get before its first inference.
  236. """
  237. self._errors[printer_id] = reason
  238. self._last_error = reason
  239. logger.warning(reason)
  240. async def _check_printer(self, printer_id: int, status, settings: dict):
  241. task_name = getattr(status, "task_name", None) or getattr(status, "subtask_name", "") or ""
  242. key = f"{task_name}"
  243. if self._state_keys.get(printer_id) != key:
  244. self._states[printer_id] = PrintState()
  245. self._state_keys[printer_id] = key
  246. self._action_fired[printer_id] = False
  247. # Capture locally first, then hand Obico a nonce URL that returns the
  248. # cached bytes instantly. Obico's ML API is GET-only (/p/?img=URL) with a
  249. # hardcoded 5s read timeout which would otherwise race our /camera/snapshot
  250. # keyframe wait.
  251. frame = await self._capture_frame(printer_id)
  252. if not frame:
  253. self._no_verdict(printer_id, f"Failed to capture snapshot for printer {printer_id}")
  254. return
  255. external_url = settings.get("external_url") or ""
  256. if not external_url:
  257. self._no_verdict(
  258. printer_id,
  259. "external_url setting is empty — Obico's ML API needs a reachable URL to fetch the snapshot from. "
  260. "Set Settings → General → External URL.",
  261. )
  262. return
  263. nonce = await stash_frame(frame)
  264. snapshot_url = f"{external_url}/api/v1/obico/cached-frame/{nonce}"
  265. ml_url = f"{settings['ml_url']}/p/"
  266. try:
  267. async with httpx.AsyncClient(timeout=DETECTION_TIMEOUT) as client:
  268. resp = await client.get(
  269. ml_url,
  270. params={"img": snapshot_url},
  271. headers=auth_headers(settings.get("ml_token")),
  272. )
  273. if resp.status_code == 401:
  274. # The server runs with ML_API_TOKEN set and rejected ours.
  275. # Say so plainly: the health endpoint is ungated, so "Test
  276. # Connection" passes against exactly this configuration and
  277. # a raw 401 gives the user nothing to act on (#2733).
  278. #
  279. # Obico's auth decorator runs before the handler, so a call
  280. # rejected here leaves no trace in the ML API's own log —
  281. # which is how #2952 came to be reported as "the loop never
  282. # calls the ML API" while it was calling it every 10s.
  283. self._no_verdict(
  284. printer_id,
  285. "Obico ML API rejected the token (401). Set Settings → Failure Detection → "
  286. "ML API Token to the ML_API_TOKEN the server runs with, or clear ML_API_TOKEN "
  287. "on the server.",
  288. )
  289. return
  290. resp.raise_for_status()
  291. payload = resp.json()
  292. except Exception as e:
  293. detail = str(e) or type(e).__name__
  294. self._no_verdict(printer_id, f"ML API call failed for printer {printer_id}: {detail}")
  295. return
  296. detections = payload.get("detections", []) if isinstance(payload, dict) else []
  297. current_p = score_from_detections(detections)
  298. state = self._states[printer_id]
  299. score = state.update(current_p)
  300. verdict = classify(score, settings["sensitivity"])
  301. self._last_class[printer_id] = verdict
  302. # A successful capture + ML call clears any transient error from previous
  303. # polls (typical case: cold-start RTSP timeout on first frame after startup,
  304. # followed by healthy polls that otherwise leave the banner stuck in the UI).
  305. self._errors.pop(printer_id, None)
  306. self._last_error = None
  307. # Log every non-safe sample — safe samples would flood history
  308. if verdict != "safe" or detections:
  309. self._history.appendleft(
  310. {
  311. "printer_id": printer_id,
  312. "task_name": task_name,
  313. "timestamp": datetime.now(timezone.utc).isoformat(),
  314. "current_p": round(current_p, 4),
  315. "score": round(score, 4),
  316. "class": verdict,
  317. "detections": len(detections),
  318. }
  319. )
  320. if verdict == "failure" and not self._action_fired.get(printer_id):
  321. self._action_fired[printer_id] = True
  322. await self._dispatch_action(printer_id, settings["action"], task_name, score)
  323. async def _dispatch_action(self, printer_id: int, action: str, task_name: str, score: float):
  324. from backend.app.services.obico_actions import execute_action
  325. logger.warning(
  326. "Obico: failure detected on printer %s (task=%r score=%.3f) — action=%s",
  327. printer_id,
  328. task_name,
  329. score,
  330. action,
  331. )
  332. try:
  333. await execute_action(printer_id, action, task_name, score)
  334. except Exception as e:
  335. self._last_error = f"Action dispatch failed: {e or type(e).__name__}"
  336. logger.error(self._last_error)
  337. # ---- queries ----
  338. def get_per_printer(self) -> dict:
  339. """Live classification per actively monitored printer.
  340. Only printers with a running, monitored print have a state entry, so
  341. consumers get "show nothing" for idle printers for free.
  342. Four classes, and the two non-verdict ones matter as much as the rest:
  343. ``error`` the most recent poll produced no verdict. ``error`` carries
  344. the reason — a rejected token, an unreachable ML API, a
  345. camera that would not yield a frame, an unset External URL.
  346. ``unknown`` monitored, but no inference has come back yet. The state
  347. entry is created when the print is first seen, which is
  348. before the first capture, so this is the honest answer for
  349. that window.
  350. ``safe`` / ``warning`` / ``failure``
  351. an actual verdict from an actual inference.
  352. This used to default to ``safe`` whenever no verdict had been recorded,
  353. so a printer whose detection had never once succeeded rendered exactly
  354. like a healthy one: a green badge reading "Safe" at score 0.000. That is
  355. the worst possible failure mode for a safety feature — it asserts the
  356. print is being watched precisely when it is not (#2952).
  357. """
  358. result = {}
  359. for pid, state in self._states.items():
  360. error = self._errors.get(pid)
  361. if error:
  362. verdict = "error"
  363. else:
  364. verdict = self._last_class.get(pid) or "unknown"
  365. result[pid] = {
  366. "class": verdict,
  367. "frame_count": state.frame_count,
  368. "score": round(state.ewm_mean, 4),
  369. "error": error,
  370. }
  371. return result
  372. def get_status(self, sensitivity: str = "medium") -> dict:
  373. # Report the thresholds for the configured sensitivity, not a hardcoded
  374. # "medium" — otherwise the Status panel always shows the medium row
  375. # regardless of the user's selection (#1469). thresholds() falls back
  376. # to the medium multiplier for any unrecognized value.
  377. low, high = thresholds(sensitivity)
  378. return {
  379. "is_running": self._task is not None and not self._task.done(),
  380. "last_error": self._last_error,
  381. "per_printer": self.get_per_printer(),
  382. "thresholds": {"low": low, "high": high},
  383. "history": list(self._history),
  384. }
  385. async def test_connection(self, url: str, token: str = "") -> dict:
  386. """Ping the ML API and check the token. Returns {ok, status_code, body, error, auth_ok}.
  387. The stored ``obico_ml_url`` setting is validated at the schema layer,
  388. but this route takes its URL from the request body, so the same
  389. LAN-service policy has to be applied here or the guard is trivially
  390. sidestepped by testing a URL instead of saving it. The response body
  391. is returned to the caller (it is the health signal — the endpoint
  392. answers "ok"), which is exactly why the destination must be inside
  393. policy before the request is made.
  394. ``token`` is used verbatim — resolving "not supplied" to the saved
  395. setting is the route's job, so this stays a pure outbound call.
  396. Health alone cannot answer whether the token works, because Obico
  397. gates ``/p/`` but leaves ``/hc/`` open — which is how a token-protected
  398. server passed this test while every detection call came back 401
  399. (#2733). So a second, side-effect-free probe follows: ``/p/`` with no
  400. ``img`` parameter. The auth decorator runs before the handler, so 401
  401. means the token was rejected and 422 ("Invalid request params") means
  402. it was accepted. No inference work is done either way.
  403. """
  404. from backend.app.api.routes._url_safety import assert_safe_lan_service_url
  405. try:
  406. assert_safe_lan_service_url(url, label="Obico ML URL")
  407. except ValueError as exc:
  408. return {"ok": False, "status_code": None, "body": None, "error": str(exc), "auth_ok": None}
  409. headers = auth_headers(token)
  410. base = url.rstrip("/")
  411. try:
  412. async with httpx.AsyncClient(timeout=HEALTH_TIMEOUT) as client:
  413. resp = await client.get(f"{base}/hc/", headers=headers)
  414. body = resp.text.strip()
  415. healthy = resp.status_code == 200 and body.lower() == "ok"
  416. if not healthy:
  417. return {
  418. "ok": False,
  419. "status_code": resp.status_code,
  420. "body": body,
  421. "error": None,
  422. "auth_ok": None,
  423. }
  424. auth_ok: bool | None
  425. try:
  426. probe = await client.get(f"{base}/p/", headers=headers)
  427. auth_ok = probe.status_code != 401
  428. except Exception:
  429. # The health check already succeeded, so don't fail the
  430. # whole test on the probe — report the token as unknown.
  431. auth_ok = None
  432. except Exception as e:
  433. return {
  434. "ok": False,
  435. "status_code": None,
  436. "body": None,
  437. "error": str(e) or type(e).__name__,
  438. "auth_ok": None,
  439. }
  440. if auth_ok is False:
  441. return {
  442. "ok": False,
  443. "status_code": 401,
  444. "body": body,
  445. "error": (
  446. "The ML API is reachable but rejected the token. It runs with ML_API_TOKEN set — "
  447. "enter that value as the ML API Token, or clear ML_API_TOKEN on the server."
  448. ),
  449. "auth_ok": False,
  450. }
  451. return {"ok": True, "status_code": resp.status_code, "body": body, "error": None, "auth_ok": auth_ok}
  452. obico_detection_service = ObicoDetectionService()