- 后端 SAM2 引擎新增 sam2.1_hiera_tiny、sam2.1_hiera_small、sam2.1_hiera_base_plus、sam2.1_hiera_large 四个变体定义,并按变体维护 checkpoint/config、image predictor、video predictor、加载状态、错误信息和真实状态回报。 - 后端 SAM registry 仅暴露当前产品启用的 SAM2.1 变体,保留 sam2 作为 tiny 兼容别名,拒绝 sam3 产品入口,并把 point、box、interactive、auto、propagate 都分发到所选 SAM2.1 变体。 - 后端默认配置和下载脚本切换到 SAM2.1 checkpoint 命名,支持 legacy SAM2 checkpoint fallback,并在状态消息中标出 fallback 使用情况。 - 前端全局 AI 模型状态新增 SAM2.1 tiny/small/base+/large 类型和默认 tiny,API 请求默认携带 sam2.1_hiera_tiny,AI 页面提供模型变体选择和所选模型状态展示。 - AI 智能分割页移除当前产品不使用的 SAM3/文本提示入口,保留正向点、反向点、框选和参数开关;AI 页只展示本页生成的候选 mask,并支持遮罩清晰度调节、候选 mask 上继续加正/反点、清空本页候选、推送到工作区编辑。 - 工作区和 Canvas 补强 SAM2 交互式细化链路:框选后正/反点继续细化同一个候选 mask,反向点请求启用背景过滤,空结果会移除被否定候选;AI 推送到工作区后保留选中态和未保存 draft mask。 - 工作区标注保存闭环补强:未保存 mask 可归档保存,dirty saved mask 可更新,保存后用后端 saved annotation 替换已提交 draft,清空/删除已保存 mask 时同步后端删除。 - Dashboard 任务进度区改为展示 queued、running、success、failed、cancelled 最近任务,处理中统计只计算 queued/running,并保留近期完成记录。 - 时间轴在顶部时间进度条和底部缩略图导航轴之间新增已编辑帧标记带,基于当前项目帧内 masks 标出已有编辑/标注的帧,并支持点击标记跳转。 - 前端测试覆盖 SAM2.1 变体选择、模型状态徽标、AI 页候选隔离、遮罩透明度、候选上追加正/反点、推送工作区保留选择、Canvas 交互式细化、VideoWorkspace 传播/保存、Dashboard 进度和时间轴已编辑帧标记。 - 后端测试覆盖 SAM2.1 变体状态、sam2 alias 兼容、sam3 禁用、semantic 禁用、传播标注保存、Dashboard 最近任务状态和 SAM3 历史测试跳过说明。 - README、AGENTS 和 doc 文档同步当前真实进度,更新 SAM2.1 变体、SAM3 禁用、接口契约、设计冻结、需求冻结、前端元素审计、实施计划、FastAPI docs 说明和测试矩阵。
141 lines
4.7 KiB
Python
141 lines
4.7 KiB
Python
"""Dashboard overview endpoints."""
|
|
|
|
import os
|
|
from datetime import datetime, timezone
|
|
from typing import Any
|
|
|
|
from fastapi import APIRouter, Depends
|
|
from sqlalchemy import func
|
|
from sqlalchemy.orm import Session
|
|
|
|
from database import get_db
|
|
from models import Annotation, Frame, ProcessingTask, Project, Template
|
|
|
|
router = APIRouter(prefix="/api/dashboard", tags=["Dashboard"])
|
|
|
|
ACTIVE_TASK_STATUSES = {"queued", "running"}
|
|
MONITORED_TASK_STATUSES = {"queued", "running", "success", "failed", "cancelled"}
|
|
|
|
|
|
def _system_load_percent() -> int:
|
|
"""Return a real host load estimate without adding a psutil dependency."""
|
|
try:
|
|
load_1m = os.getloadavg()[0]
|
|
cpu_count = os.cpu_count() or 1
|
|
return min(100, max(0, round((load_1m / cpu_count) * 100)))
|
|
except (AttributeError, OSError):
|
|
return 0
|
|
|
|
|
|
def _iso_or_none(value: datetime | None) -> str | None:
|
|
if value is None:
|
|
return None
|
|
if value.tzinfo is None:
|
|
value = value.replace(tzinfo=timezone.utc)
|
|
return value.isoformat()
|
|
|
|
|
|
def _task_payload(task: ProcessingTask) -> dict[str, Any]:
|
|
return {
|
|
"id": f"task-{task.id}",
|
|
"task_id": task.id,
|
|
"project_id": task.project_id or 0,
|
|
"name": task.project.name if task.project else f"任务 {task.id}",
|
|
"progress": task.progress,
|
|
"status": task.message or task.status,
|
|
"raw_status": task.status,
|
|
"frame_count": (task.result or {}).get("frames_extracted", 0),
|
|
"error": task.error,
|
|
"updated_at": _iso_or_none(task.updated_at),
|
|
}
|
|
|
|
|
|
@router.get("/overview", summary="Get dashboard overview")
|
|
def get_dashboard_overview(db: Session = Depends(get_db)) -> dict[str, Any]:
|
|
"""Return live dashboard data derived from persisted backend records."""
|
|
project_count = db.query(func.count(Project.id)).scalar() or 0
|
|
frame_count = db.query(func.count(Frame.id)).scalar() or 0
|
|
annotation_count = db.query(func.count(Annotation.id)).scalar() or 0
|
|
template_count = db.query(func.count(Template.id)).scalar() or 0
|
|
active_task_count = (
|
|
db.query(func.count(ProcessingTask.id))
|
|
.filter(ProcessingTask.status.in_(ACTIVE_TASK_STATUSES))
|
|
.scalar()
|
|
or 0
|
|
)
|
|
|
|
projects = db.query(Project).order_by(Project.updated_at.desc()).all()
|
|
recent_tasks = (
|
|
db.query(ProcessingTask)
|
|
.order_by(ProcessingTask.created_at.desc())
|
|
.limit(50)
|
|
.all()
|
|
)
|
|
tasks = [_task_payload(task) for task in recent_tasks if task.status in MONITORED_TASK_STATUSES]
|
|
|
|
activities: list[dict[str, Any]] = []
|
|
for task in recent_tasks[:10]:
|
|
project_name = task.project.name if task.project else f"项目 {task.project_id}"
|
|
activities.append({
|
|
"id": f"task-{task.id}",
|
|
"kind": "task",
|
|
"time": _iso_or_none(task.updated_at),
|
|
"message": task.message or f"任务状态: {task.status}",
|
|
"project": project_name,
|
|
})
|
|
|
|
for project in projects[:10]:
|
|
activities.append({
|
|
"id": f"project-{project.id}",
|
|
"kind": "project",
|
|
"time": _iso_or_none(project.updated_at),
|
|
"message": f"项目状态: {project.status}",
|
|
"project": project.name,
|
|
})
|
|
|
|
recent_annotations = (
|
|
db.query(Annotation)
|
|
.order_by(Annotation.updated_at.desc())
|
|
.limit(10)
|
|
.all()
|
|
)
|
|
for annotation in recent_annotations:
|
|
project_name = annotation.project.name if annotation.project else f"项目 {annotation.project_id}"
|
|
activities.append({
|
|
"id": f"annotation-{annotation.id}",
|
|
"kind": "annotation",
|
|
"time": _iso_or_none(annotation.updated_at),
|
|
"message": f"标注已更新 #{annotation.id}",
|
|
"project": project_name,
|
|
})
|
|
|
|
recent_templates = (
|
|
db.query(Template)
|
|
.order_by(Template.created_at.desc())
|
|
.limit(10)
|
|
.all()
|
|
)
|
|
for template in recent_templates:
|
|
activities.append({
|
|
"id": f"template-{template.id}",
|
|
"kind": "template",
|
|
"time": _iso_or_none(template.created_at),
|
|
"message": f"模板可用: {template.name}",
|
|
"project": "系统",
|
|
})
|
|
|
|
activities.sort(key=lambda item: item["time"] or "", reverse=True)
|
|
|
|
return {
|
|
"summary": {
|
|
"project_count": project_count,
|
|
"parsing_task_count": active_task_count,
|
|
"annotation_count": annotation_count,
|
|
"frame_count": frame_count,
|
|
"template_count": template_count,
|
|
"system_load_percent": _system_load_percent(),
|
|
},
|
|
"tasks": tasks,
|
|
"activity": activities[:10],
|
|
}
|