프로그램 기본 도각(resources/template_2dDrawing)은 읽기 전용으로 두고, 고친 도각은
회사 도각(storage/{회사}/templates)으로 저장한다. 이후 그리는 도면이 그것을 쓴다.
- Engine_Template: 회사 도각 우선 로더(ContextVar로 요청마다 회사 폴더 지정),
캐시 키에 mtime을 넣어 저장 즉시 반영(템플릿 수정에 백엔드 재시작이 필요 없어짐),
frame_template_document()/save_company_template() 신설.
- Router: GET/PUT /api/projects/{id}/frame-template. 도각은 실치수 1:1로 오가므로
좌표 역변환이 없다.
- UI_FrameEdit(신규): 「도각 편집」 버튼·배너·[완료]/[취소]. 완료 시 도면 캐시를 버리고
보던 도면을 다시 싣는다. 편집 중 변경 알림이 도면 확정을 풀지 않게 막았다.
확정한 도면은 저장본을 그대로 쓰므로 옛 도각을 유지하고, 확정을 풀면 새 도각으로
다시 그려진다(2026-09-01 사용자 확정).
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
270 lines
11 KiB
Python
270 lines
11 KiB
Python
"""B07 도각 템플릿 병합 — openwebcad JSON 템플릿을 도면 콘텐츠 둘레에 배치한다.
|
|
|
|
resources/template_2dDrawing/의 사전 변환 템플릿(A1 도각 등)을 로드해,
|
|
도면 콘텐츠 bbox에 맞춰 균등 스케일·이동시킨 뒤 잠금 프레임 레이어
|
|
(b08-frame) 엔티티로 병합한다. 콘텐츠 좌표(m)는 건드리지 않는다 —
|
|
템플릿 쪽을 확대해 콘텐츠를 감싼다.
|
|
|
|
A1 템플릿 기하(변환 시점 고정값): 전체 840x594, 하단 y17~47 표제란,
|
|
내부 작도 영역 (42, 47) ~ (812, 567).
|
|
"""
|
|
|
|
import json
|
|
import logging
|
|
import re
|
|
from contextvars import ContextVar
|
|
from functools import lru_cache
|
|
from pathlib import Path
|
|
from typing import Any
|
|
from uuid import uuid5
|
|
|
|
from B07_DesignDetail.B07_DesignDetail_Engine_Cad import (
|
|
_ENTITY_NS,
|
|
DRAWING_FORMAT,
|
|
FRAME_LAYER_ID,
|
|
)
|
|
|
|
_TEMPLATE_DIR = Path(__file__).resolve().parent.parent / "resources" / "template_2dDrawing"
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
A1_TEMPLATE = "00_template_A1"
|
|
COMPASS_TEMPLATE = "00_template_compass" # 유역도 등 평면 도면의 방위표
|
|
# A1 내부 작도 영역(템플릿 좌표) — 콘텐츠가 이 영역 중앙에 오도록 배치한다.
|
|
_A1_INNER = (42.0, 47.0, 812.0, 567.0)
|
|
# 내부 작도 영역 대비 콘텐츠 여백 비율(각 방향). 5%는 도각 안쪽에 70mm 가까이를
|
|
# 비워 횡단 장이 한 장 더 늘었다 — 2%로 줄여 작도 영역을 쓴다(2026-08-30 사용자).
|
|
_CONTENT_MARGIN = 0.02
|
|
|
|
# 회사가 자기 도각을 두는 자리 — `storage/{회사}/templates/`. 프로그램 기본 도각
|
|
# (`resources/template_2dDrawing/`)은 **읽기 전용**이고, 고객이 고친 도각은 여기 쌓인다
|
|
# (2026-09-01 사용자 확정: "정본은 그냥 두고 수정하는 기능").
|
|
COMPANY_TEMPLATE_SUBDIR = "templates"
|
|
|
|
# 이 요청이 읽을 회사 도각 폴더. 라우터가 요청마다 세운다 — 엔진 6개(종단·횡단장·
|
|
# 토적도·유역도·표지·공용)의 서명을 줄줄이 고치지 않으려고 문맥 변수를 쓴다.
|
|
# `asyncio.to_thread`가 문맥을 복사하므로 스레드로 넘어간 작도에도 그대로 따라간다.
|
|
_company_dir: ContextVar[Path | None] = ContextVar("b07_company_template_dir", default=None)
|
|
|
|
|
|
def use_company_templates(company_dir: Path | None) -> None:
|
|
"""이 요청이 읽을 회사 도각 폴더를 정한다. None이면 프로그램 기본 도각."""
|
|
_company_dir.set(company_dir)
|
|
|
|
|
|
def company_template_path(company_dir: Path, name: str = A1_TEMPLATE) -> Path:
|
|
"""회사 도각 파일 경로(없을 수도 있다)."""
|
|
return Path(company_dir) / COMPANY_TEMPLATE_SUBDIR / f"{name}.json"
|
|
|
|
|
|
@lru_cache(maxsize=16)
|
|
def _read_template(path_str: str, mtime_ns: int) -> dict[str, Any]:
|
|
"""파일 하나를 읽어 캐시한다. 수정 시각이 캐시 키라 저장 즉시 새 도각이 나간다."""
|
|
return json.loads(Path(path_str).read_text(encoding="utf-8"))
|
|
|
|
|
|
def _load_template(name: str) -> dict[str, Any] | None:
|
|
"""회사 도각이 있으면 그것, 없으면 프로그램 기본 도각."""
|
|
company_dir = _company_dir.get()
|
|
if company_dir is not None:
|
|
override = company_template_path(company_dir, name)
|
|
if override.is_file():
|
|
return _read_template(str(override), override.stat().st_mtime_ns)
|
|
path = _TEMPLATE_DIR / f"{name}.json"
|
|
if not path.is_file():
|
|
return None
|
|
return _read_template(str(path), path.stat().st_mtime_ns)
|
|
|
|
|
|
def template_entities(name: str = A1_TEMPLATE) -> list[dict[str, Any]]:
|
|
"""도각 원본 엔티티(실치수 1:1). 편집 화면이 그대로 싣고, 저장도 이 좌표계로 받는다."""
|
|
template = _load_template(name)
|
|
return list(template.get("entities", [])) if template else []
|
|
|
|
|
|
def frame_template_document(name: str = A1_TEMPLATE) -> dict[str, Any]:
|
|
"""도각 편집 화면이 그대로 싣는 도면 — 실치수 1:1, 잠금 없는 도각 층 하나.
|
|
|
|
1:1이라 편집 캔버스 좌표가 곧 템플릿 좌표다. 저장할 때 되돌릴 변환이 없다.
|
|
"""
|
|
return {
|
|
"format": DRAWING_FORMAT,
|
|
"entities": [{**entity, "layerId": FRAME_LAYER_ID} for entity in template_entities(name)],
|
|
"layers": [{"id": FRAME_LAYER_ID, "name": "도각", "isVisible": True, "isLocked": False}],
|
|
}
|
|
|
|
|
|
def save_company_template(
|
|
company_dir: Path, entities: list[dict[str, Any]], name: str = A1_TEMPLATE
|
|
) -> Path:
|
|
"""편집한 도각을 회사 도각 파일로 저장한다. 프로그램 기본 도각은 건드리지 않는다."""
|
|
path = company_template_path(company_dir, name)
|
|
path.parent.mkdir(parents=True, exist_ok=True)
|
|
document = {
|
|
"format": DRAWING_FORMAT,
|
|
"source": "B07 도각 편집 화면",
|
|
# 도각은 도면마다 잠금 층 하나로 붙으므로 편집 중 새로 만든 층은 도각으로 모은다.
|
|
"entities": [{**entity, "layerId": FRAME_LAYER_ID} for entity in entities],
|
|
"layers": [{"id": FRAME_LAYER_ID, "name": "도각", "isVisible": True, "isLocked": False}],
|
|
}
|
|
temporary = path.with_suffix(".tmp")
|
|
temporary.write_text(json.dumps(document, ensure_ascii=False, indent=2), encoding="utf-8")
|
|
temporary.replace(path)
|
|
return path
|
|
|
|
|
|
def entities_bbox(entities: list[dict[str, Any]]) -> tuple[float, float, float, float] | None:
|
|
"""엔티티 목록의 (min_x, min_y, max_x, max_y). 좌표가 없으면 None."""
|
|
xs: list[float] = []
|
|
ys: list[float] = []
|
|
|
|
def _collect(entity: dict[str, Any]) -> None:
|
|
shape = entity.get("shapeData") or {}
|
|
for key in ("startPoint", "endPoint", "basePoint", "point"):
|
|
p = shape.get(key)
|
|
if isinstance(p, dict):
|
|
xs.append(float(p["x"]))
|
|
ys.append(float(p["y"]))
|
|
center = shape.get("center")
|
|
if isinstance(center, dict):
|
|
r = float(shape.get("radius", 0.0))
|
|
xs.extend((float(center["x"]) - r, float(center["x"]) + r))
|
|
ys.extend((float(center["y"]) - r, float(center["y"]) + r))
|
|
for child in entity.get("children") or []:
|
|
_collect(child)
|
|
|
|
for entity in entities:
|
|
_collect(entity)
|
|
if not xs:
|
|
return None
|
|
return (min(xs), min(ys), max(xs), max(ys))
|
|
|
|
|
|
def _transform_entity(
|
|
entity: dict[str, Any], seed: str, scale: float, dx: float, dy: float
|
|
) -> dict[str, Any]:
|
|
"""템플릿 엔티티를 스케일+이동 복사한다. id는 도면별 결정적 재생성."""
|
|
out = dict(entity)
|
|
out["id"] = str(uuid5(_ENTITY_NS, seed))
|
|
out["layerId"] = FRAME_LAYER_ID
|
|
shape = entity.get("shapeData")
|
|
if isinstance(shape, dict):
|
|
new_shape = dict(shape)
|
|
for key in ("startPoint", "endPoint", "basePoint", "point", "center"):
|
|
p = shape.get(key)
|
|
if isinstance(p, dict):
|
|
new_shape[key] = {"x": p["x"] * scale + dx, "y": p["y"] * scale + dy}
|
|
if "radius" in shape:
|
|
new_shape["radius"] = shape["radius"] * scale
|
|
options = shape.get("options")
|
|
if isinstance(options, dict):
|
|
new_options = dict(options)
|
|
new_options["fontSize"] = options.get("fontSize", 4.0) * scale
|
|
new_shape["options"] = new_options
|
|
out["shapeData"] = new_shape
|
|
children = entity.get("children")
|
|
if isinstance(children, list):
|
|
out["children"] = [
|
|
_transform_entity(child, f"{seed}:{index}", scale, dx, dy)
|
|
for index, child in enumerate(children)
|
|
]
|
|
return out
|
|
|
|
|
|
def compass_entities(
|
|
drawing_id: str,
|
|
center: tuple[float, float],
|
|
size_mm: float,
|
|
template_name: str = COMPASS_TEMPLATE,
|
|
) -> list[dict[str, Any]]:
|
|
"""방위표 템플릿을 지정 위치에 지정 크기로 놓는다(잠금 프레임 레이어).
|
|
|
|
도각과 달리 콘텐츠를 감쌀 일이 없으므로 긴 변이 size_mm가 되도록 균등 축소한다.
|
|
"""
|
|
template = _load_template(template_name)
|
|
if not template:
|
|
return []
|
|
entities = template.get("entities", [])
|
|
bbox = entities_bbox(entities)
|
|
if not bbox:
|
|
return []
|
|
min_x, min_y, max_x, max_y = bbox
|
|
span = max(max_x - min_x, max_y - min_y, 1e-6)
|
|
scale = size_mm / span
|
|
dx = center[0] - (min_x + max_x) / 2.0 * scale
|
|
dy = center[1] - (min_y + max_y) / 2.0 * scale
|
|
return [
|
|
_transform_entity(entity, f"{drawing_id}:compass:{index}", scale, dx, dy)
|
|
for index, entity in enumerate(entities)
|
|
]
|
|
|
|
|
|
def usable_area() -> tuple[float, float]:
|
|
"""A1 내부 작도 영역에서 여백을 뺀 유효 크기(mm). 척도 고정 도면의 수용 한도."""
|
|
ix0, iy0, ix1, iy1 = _A1_INNER
|
|
return (
|
|
(ix1 - ix0) * (1.0 - 2.0 * _CONTENT_MARGIN),
|
|
(iy1 - iy0) * (1.0 - 2.0 * _CONTENT_MARGIN),
|
|
)
|
|
|
|
|
|
_PLACEHOLDER = re.compile(r"\{\{\s*([^}]+?)\s*\}\}")
|
|
|
|
|
|
def _fill_placeholders(entities: list[dict[str, Any]], fields: dict[str, str]) -> None:
|
|
"""도각 텍스트의 {{키}}를 값으로 바꾼다. 값이 없으면 빈칸 — 남의 값이 남지 않는다."""
|
|
for entity in entities:
|
|
if entity.get("type") != "Text":
|
|
continue
|
|
shape = entity.get("shapeData") or {}
|
|
label = shape.get("label")
|
|
if isinstance(label, str) and "{{" in label:
|
|
shape["label"] = _PLACEHOLDER.sub(
|
|
lambda match: str(fields.get(match.group(1), "")), label
|
|
)
|
|
|
|
|
|
def frame_entities(
|
|
drawing_id: str,
|
|
content_bbox: tuple[float, float, float, float],
|
|
template_name: str = A1_TEMPLATE,
|
|
fit: bool = True,
|
|
fields: dict[str, str] | None = None,
|
|
) -> list[dict[str, Any]]:
|
|
"""콘텐츠 bbox를 감싸는 도각 프레임 엔티티 목록(잠금 레이어). 템플릿 없으면 빈 목록.
|
|
|
|
fit=False면 도각을 **실치수(1:1)** 로 두고 위치만 맞춘다 — 콘텐츠가 이미 종이
|
|
밀리미터로 그려진 척도 고정 도면(종단·횡단)용. fit=True는 척도가 없는 도면을
|
|
도각에 맞춰 늘리던 기존 동작이다.
|
|
"""
|
|
template = _load_template(template_name)
|
|
if not template:
|
|
return []
|
|
min_x, min_y, max_x, max_y = content_bbox
|
|
content_w = max(max_x - min_x, 1e-6)
|
|
content_h = max(max_y - min_y, 1e-6)
|
|
|
|
ix0, iy0, ix1, iy1 = _A1_INNER
|
|
usable_w, usable_h = usable_area()
|
|
scale = max(content_w / usable_w, content_h / usable_h) if fit else 1.0
|
|
if not fit and (content_w > usable_w or content_h > usable_h):
|
|
logger.warning(
|
|
"도면 콘텐츠가 A1 작도 영역을 넘습니다: %s (%.0fx%.0f mm > %.0fx%.0f mm)",
|
|
drawing_id,
|
|
content_w,
|
|
content_h,
|
|
usable_w,
|
|
usable_h,
|
|
)
|
|
|
|
# 콘텐츠 중심 = 내부 작도 영역 중심이 되도록 이동량 산출.
|
|
dx = (min_x + max_x) / 2.0 - (ix0 + ix1) / 2.0 * scale
|
|
dy = (min_y + max_y) / 2.0 - (iy0 + iy1) / 2.0 * scale
|
|
|
|
placed = [
|
|
_transform_entity(entity, f"{drawing_id}:frame:{index}", scale, dx, dy)
|
|
for index, entity in enumerate(template.get("entities", []))
|
|
]
|
|
_fill_placeholders(placed, fields or {})
|
|
return placed
|