功能增加:新增后端传播任务执行器,支持异步自动传播、传播进度、结果统计、取消/重试状态同步。 功能增加:传播请求支持指定 SAM2.1 tiny/small/base+/large 权重,并记录 seed mask、source annotation 和传播范围。 功能增加:传播逻辑增加 seed 签名,未变化的 mask 二次传播会跳过,已变化的 mask 会先清理旧自动传播结果再重新生成,避免重复重叠。 功能增加:工作区增加传播范围二次选择、传播进度提示、人工/AI 标注帧红色标识、自动传播帧蓝色标识和当前帧双层边框。 功能增加:新增临时提示组件,让工具操作提示自动消失且不阻塞后续操作。 功能增加:补充项目删除、模板删除、任务失败详情、任务取消/重试等前后端联动状态。 功能增加:新增安装部署文档,补充当前需求冻结、设计冻结、接口契约、测试计划和 AGENTS/README 项目说明。 Bugfix:修复自动传播接口 404、传播后看不到任务进度、传播结果重复堆叠和已编辑帧提示不清晰的问题。 Bugfix:修复 AI 分割框选/点选交互、单候选 mask、删除选点、工作区保存与候选 mask 推送相关问题。 Bugfix:修复 Canvas 多边形顶点拖动告警、工具栏提示缺失、项目库 FPS 展示和若干 UI 文案/可用性问题。 测试:补充 AI 分割、Canvas、Dashboard、FrameTimeline、ProjectLibrary、TemplateRegistry、ToolsPalette、VideoWorkspace、API 和后端任务/AI/dashboard 测试。 验证:npm run lint;npm run test:run;python -m pytest backend/tests -q。
142 lines
4.7 KiB
Python
142 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]:
|
|
result = task.result or {}
|
|
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": result.get("frames_extracted", result.get("processed_frame_count", 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],
|
|
}
|