Spaces:
Running on Zero
Running on Zero
File size: 7,419 Bytes
e994c16 2fb233c e994c16 2fb233c e994c16 2fb233c e994c16 2fb233c e994c16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | """SQLite database. Stores diagnostic history and user sessions.
Schema:
sessions(id, started_at, film_type, film_age_years, storage, scan_dpi)
diagnoses(id, session_id, created_at, defect_count, label_counts_json,
diagnosis_text, vision_seconds, reasoning_seconds, total_seconds,
vision_model, reasoning_model, raw_json)
"""
from __future__ import annotations
import json
import logging
import sqlite3
import time
import uuid
from contextlib import contextmanager
from pathlib import Path
from typing import Any, Iterator
from config import get_app_config
logger = logging.getLogger(__name__)
REPO_ROOT = Path(__file__).resolve().parents[1]
DEFAULT_DB_PATH = REPO_ROOT / "storage" / "halide.db"
_INITIALIZED_DB_PATHS: set[Path] = set()
def get_db_path() -> Path:
db_path = get_app_config().db_path
db_path.parent.mkdir(parents=True, exist_ok=True)
return db_path
SCHEMA = """
CREATE TABLE IF NOT EXISTS sessions (
id TEXT PRIMARY KEY,
started_at REAL NOT NULL,
film_type TEXT NOT NULL,
film_age_years INTEGER NOT NULL,
storage TEXT NOT NULL,
scan_dpi INTEGER NOT NULL
);
CREATE TABLE IF NOT EXISTS diagnoses (
id TEXT PRIMARY KEY,
session_id TEXT NOT NULL,
created_at REAL NOT NULL,
defect_count INTEGER NOT NULL,
label_counts_json TEXT NOT NULL,
diagnosis_text TEXT NOT NULL,
vision_seconds REAL NOT NULL,
reasoning_seconds REAL NOT NULL,
total_seconds REAL NOT NULL,
vision_model TEXT NOT NULL,
reasoning_model TEXT NOT NULL,
raw_json TEXT NOT NULL,
FOREIGN KEY (session_id) REFERENCES sessions(id)
);
CREATE INDEX IF NOT EXISTS idx_diagnoses_session ON diagnoses(session_id);
CREATE INDEX IF NOT EXISTS idx_diagnoses_created ON diagnoses(created_at);
"""
@contextmanager
def connect() -> Iterator[sqlite3.Connection]:
db_path = get_db_path()
conn = sqlite3.connect(str(db_path))
conn.row_factory = sqlite3.Row
conn.execute("PRAGMA foreign_keys = ON")
conn.execute("PRAGMA journal_mode = WAL")
try:
yield conn
conn.commit()
finally:
conn.close()
def init_db() -> None:
with connect() as conn:
conn.executescript(SCHEMA)
db_path = get_db_path()
_INITIALIZED_DB_PATHS.add(db_path)
logger.info("DB initialized at %s", db_path)
def _ensure_db_initialized() -> None:
db_path = get_db_path()
if db_path in _INITIALIZED_DB_PATHS and db_path.exists():
return
init_db()
def record_diagnosis(result: dict) -> str:
"""Persist a full pipeline result. Returns the diagnosis id."""
_ensure_db_initialized()
diagnosis_id = str(uuid.uuid4())
session_id = str(uuid.uuid4())
now = time.time()
meta = result.get("film_metadata", {}) or {}
defects = result.get("defects", {}) or {}
diagnosis = result.get("diagnosis", {}) or {}
with connect() as conn:
conn.execute(
"""
INSERT INTO sessions (id, started_at, film_type, film_age_years,
storage, scan_dpi)
VALUES (?, ?, ?, ?, ?, ?)
""",
(
session_id,
now,
meta.get("film_type", "Unknown"),
int(meta.get("film_age_years", 0) or 0),
meta.get("storage", "unknown"),
int(meta.get("scan_resolution_dpi", 0) or 0),
),
)
conn.execute(
"""
INSERT INTO diagnoses (id, session_id, created_at, defect_count,
label_counts_json, diagnosis_text,
vision_seconds, reasoning_seconds,
total_seconds, vision_model, reasoning_model,
raw_json)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
""",
(
diagnosis_id,
session_id,
now,
int(defects.get("defect_count", 0) or 0),
json.dumps(defects.get("label_counts", {}) or {}),
diagnosis.get("diagnosis_text", ""),
float(defects.get("inference_seconds", 0.0) or 0.0),
float(diagnosis.get("reasoning_seconds", 0.0) or 0.0),
float(result.get("total_seconds", 0.0) or 0.0),
defects.get("model_path", ""),
diagnosis.get("model_path", ""),
json.dumps(result),
),
)
logger.info("Recorded diagnosis %s (session %s)", diagnosis_id, session_id)
return diagnosis_id
def _decode_raw_json(text: str) -> dict[str, Any]:
try:
parsed = json.loads(text)
except json.JSONDecodeError:
return {}
return parsed if isinstance(parsed, dict) else {}
def _row_to_diagnosis(row: sqlite3.Row) -> dict[str, Any]:
raw = _decode_raw_json(row["raw_json"])
meta = raw.get("film_metadata", {}) or {}
return {
"id": row["id"],
"created_at": row["created_at"],
"film_type": row["film_type"],
"film_age_years": row["film_age_years"],
"storage": row["storage"],
"scan_dpi": row["scan_dpi"],
"metadata_confidence": meta.get("metadata_confidence", "low"),
"defect_count": row["defect_count"],
"label_counts": json.loads(row["label_counts_json"]),
"diagnosis_text": row["diagnosis_text"],
"vision_seconds": row["vision_seconds"],
"reasoning_seconds": row["reasoning_seconds"],
"total_seconds": row["total_seconds"],
"vision_model": row["vision_model"],
"reasoning_model": row["reasoning_model"],
"raw_json": raw,
}
def list_recent(limit: int = 20) -> list[dict]:
_ensure_db_initialized()
with connect() as conn:
rows = conn.execute(
"""
SELECT d.id, d.created_at, s.film_type, s.film_age_years,
s.storage, s.scan_dpi, d.defect_count, d.label_counts_json,
d.diagnosis_text, d.vision_seconds, d.reasoning_seconds,
d.total_seconds, d.vision_model, d.reasoning_model,
d.raw_json
FROM diagnoses d
JOIN sessions s ON s.id = d.session_id
ORDER BY d.created_at DESC
LIMIT ?
""",
(limit,),
).fetchall()
return [_row_to_diagnosis(r) for r in rows]
def get_diagnosis(diagnosis_id: str) -> dict[str, Any] | None:
"""Return one persisted diagnosis, including its full pipeline JSON."""
if not diagnosis_id:
return None
_ensure_db_initialized()
with connect() as conn:
row = conn.execute(
"""
SELECT d.id, d.created_at, s.film_type, s.film_age_years,
s.storage, s.scan_dpi, d.defect_count, d.label_counts_json,
d.diagnosis_text, d.vision_seconds, d.reasoning_seconds,
d.total_seconds, d.vision_model, d.reasoning_model,
d.raw_json
FROM diagnoses d
JOIN sessions s ON s.id = d.session_id
WHERE d.id = ?
""",
(diagnosis_id,),
).fetchone()
if row is None:
return None
return _row_to_diagnosis(row)
__all__ = [
"init_db",
"record_diagnosis",
"list_recent",
"get_diagnosis",
"get_db_path",
]
|