사용자 조작 중의 계산은 브라우저 안에서 끝나야 함(2026-09-03 사용자 확정). 계획고가 바뀔 때마다 전 측점 횡단 계산이 `POST …/cross-design/preview` 로 나가 왕복이 조작 속도를 지배했음. - `refreshCrossDesigns` 를 로컬 계산으로 교체. 계획고는 저장 선형(`base_pvi`)에 편집 델타를 얹어 TS `buildAlignment` 로 여기서 풂 — 호출부(B05·B06) 시그니처는 그대로라 단일 창구가 유지됨. 서버 프리뷰는 선형 저장분이 없는 옛 데이터 폴백으로만 남음. - 표준단면 config 기본값·암 경계 기본 오프셋을 `sections/context` 응답에서 세션에 기억 (`rememberStandardDefaults`·`rememberRockBoundaryDefault`). 프론트에 config 수치를 복제하지 않으면서 패널 없는 B05 도 같은 값으로 계산함. - 디바운스 250 → 60ms — 왕복이 사라져 손을 떼는 즉시 유토곡선이 따라옴. - 낡음 판정을 `hasStaleDesigns` 로 바꿔 첫 건에서 중단하고, 계획선 유효 샘플을 샘플 배열당 한 번만 걸러 이진탐색(그리기 프레임당 2.33ms → 0.07ms 실측). - 파이썬 엔진 2파일·프리뷰 라우터에 「TS 짝 파일과 한 벌」 경고 블록 추가. 검증: `tmp/tests/test_b06_cross_design_mirror.py` 10건 — 토사/암 2단계/L형 측구/포장/ 세월교 하강/사면 미닫힘 등에서 파이썬과 TS 결과가 면적·설계선까지 일치. 전체 183건 통과. `tsc --noEmit` 통과. 실측: route 127(측점 128) 전 측점 로컬 재계산 7.5ms. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
201 lines
9.3 KiB
TypeScript
201 lines
9.3 KiB
TypeScript
/* =============================================================================
|
|
* B06_Section_Cross_Refresh.ts
|
|
* 「현재 계획선에 맞춘 횡단 재계산」 **단일 창구** — B05·B06이 같은 입력으로 같은 결과를 본다.
|
|
*
|
|
* ── 계산은 브라우저 안에서 끝난다 (2026-09-03 사용자 확정) ───────────
|
|
* 사용자 조작 중의 계산은 서버로 나가지 않는다. 조작은 세션 캐시에 쌓이고 화면은 즉시
|
|
* 따라오며, 영구저장소는 [저장]·[확정]에서만 건드린다. 예전에는 계획고가 바뀔 때마다
|
|
* `POST …/cross-design/preview` 로 전 측점 횡단을 서버에 물어, 왕복이 조작 속도를
|
|
* 지배했다(2026-09-03 사용자 보고: 「종단을 바꾸면 업데이트가 느리다」).
|
|
*
|
|
* 그래서 설계 계산은 `common_util_cross_design.ts`(파이썬 `B06_Section_Engine_Design.py`
|
|
* 의 미러)로 옮겼고, 여기서는 **입력을 모아 전 측점을 돌리고 제자리 반영**만 한다.
|
|
* 서버 프리뷰는 선형 저장분이 없어 계획고를 못 푸는 **옛 데이터 폴백**으로만 남는다.
|
|
*
|
|
* ⚠ 두 벌 계산 주의 — TS 미러(`common_util_cross_design*.ts`)와 파이썬 엔진
|
|
* (`B06_Section_Engine_Design.py`·`B06_Section_Engine_Areas.py`)은 한 벌이다.
|
|
* 한쪽만 고치면 화면과 저장본이 갈린다. 회귀 테스트:
|
|
* `tmp/tests/test_b06_cross_design_mirror.py`
|
|
*
|
|
* ── 왜 창구가 하나여야 하는가 (2026-09-03 실측) ──────────────────────
|
|
* 재계산 호출이 두 벌이던 시절, 같은 프로젝트·같은 시점에 B06 `절토(자연) 3,704.6㎥`
|
|
* ↔ B05 `4,526.8㎥` 로 갈렸다. 원인은 인자였다 — 표준 단면값과 암 경계 오프셋이 빠지면
|
|
* 서버가 다른 설계를 그린다. 입력 수집·계산·제자리 반영을 여기 한 곳에 모아 둔다. 세션
|
|
* 편집값은 패널이 아니라 세션 저장소에서 직접 읽으므로, 패널이 없는 B05도 같은 값을 쓴다.
|
|
* ========================================================================== */
|
|
|
|
import { computeCrossDesign } from "@util/common_util_cross_design";
|
|
import type { StandardCrossSectionSpec } from "@util/common_util_cross_design";
|
|
import { previewCrossDesigns } from "./B06_Section_Api_Fetch";
|
|
import type { CrossSection, SectionDetailResponse } from "./B06_Section_Api_Fetch";
|
|
import { readRockBoundarySession } from "./B06_Section_UI_Page_Persist";
|
|
import {
|
|
effectiveStandardCross,
|
|
readRockBoundaryDefault,
|
|
readStandardCrossSession,
|
|
} from "./B06_Section_UI_Standard_Panel";
|
|
import {
|
|
buildAlignment,
|
|
planElevationAt,
|
|
toAlignmentBase,
|
|
} from "../B05_Profile/B05_Profile_UI_Profile_Alignment";
|
|
import { readAlignment } from "../B05_Profile/B05_Profile_UI_Profile_Data";
|
|
|
|
/** 계획선 편집 델타 — B05 `AlignmentEdits`와 저장분 `profile_alignment.edits`가 같은 모양이다. */
|
|
export interface CrossRefreshEdits {
|
|
station_offsets: Record<string, number>;
|
|
curve_radii: Record<string, number>;
|
|
}
|
|
|
|
export interface CrossRefreshInput {
|
|
projectId: string;
|
|
routeId: number;
|
|
/** 제자리 갱신 대상 — 공유 캐시가 들고 있는 그 객체여야 두 화면이 같이 따라온다. */
|
|
detail: SectionDetailResponse;
|
|
edits: CrossRefreshEdits;
|
|
/**
|
|
* 결과를 **아직 써도 되는지** 묻는다(false면 반영하지 않는다). 로컬 계산은 즉시 끝나
|
|
* 늦은 응답이 없지만, 옛 데이터 폴백(서버 프리뷰)에서는 여전히 문지기가 필요하다.
|
|
*/
|
|
shouldApply?: () => boolean;
|
|
}
|
|
|
|
/** 다시 계산해도 **살려 두는 값** — 화면 조작으로만 생기거나 상태를 나르는 필드다. */
|
|
const PRESERVED_KEYS = [
|
|
"status",
|
|
"pavement_suggested",
|
|
"display_half_width_m",
|
|
"inlet_structure",
|
|
"basin_adjust",
|
|
"revet_adjust",
|
|
"ford_adjust",
|
|
"box_adjust",
|
|
"extra_wall_counts",
|
|
"extra_spans",
|
|
"revet_link_detached",
|
|
"revet_follow_grade",
|
|
] as const;
|
|
|
|
function preserveUserFields(
|
|
next: NonNullable<CrossSection["design"]>,
|
|
previous: CrossSection["design"],
|
|
): NonNullable<CrossSection["design"]> {
|
|
if (!previous) return next;
|
|
const merged = { ...next } as Record<string, unknown>;
|
|
const source = previous as unknown as Record<string, unknown>;
|
|
for (const key of PRESERVED_KEYS) {
|
|
if (source[key] !== undefined) merged[key] = source[key];
|
|
}
|
|
return merged as unknown as NonNullable<CrossSection["design"]>;
|
|
}
|
|
|
|
/**
|
|
* 전 측점 횡단을 현재 계획선으로 다시 계산해 `detail.cross_sections[].design`을 제자리 교체한다.
|
|
* 돌려주는 값은 실제로 바뀐 측점의 누가거리 목록 — 호출한 쪽이 그 카드만 다시 그리면 된다.
|
|
*/
|
|
export async function refreshCrossDesigns(input: CrossRefreshInput): Promise<number[]> {
|
|
const local = refreshLocally(input);
|
|
if (local !== null) return local;
|
|
return refreshFromServer(input);
|
|
}
|
|
|
|
/**
|
|
* 브라우저 안에서 전 측점을 다시 계산한다(정상 경로).
|
|
*
|
|
* 계획고는 저장된 자동 선형(`profile_alignment.base_pvi`)에 편집 델타를 얹어 **여기서**
|
|
* 푼다 — B05 편집 중에는 `detail.longitudinal.design_profiles` 가 아직 옛 계획선이라
|
|
* 그걸 쓰면 한 박자 늦은 값이 된다. 계산 재료(선형 저장분·표준단면)를 갖추지 못하면
|
|
* `null` 을 돌려 서버 폴백으로 넘긴다.
|
|
*/
|
|
function refreshLocally(input: CrossRefreshInput): number[] | null {
|
|
const { projectId, detail, edits } = input;
|
|
const stored = readAlignment(detail.longitudinal);
|
|
if (!stored) return null; // 선형 저장분이 없는 옛 데이터 — 서버가 풀어 준다.
|
|
const standard = effectiveStandardCross(projectId) as StandardCrossSectionSpec | null;
|
|
if (!standard) return null; // 컨텍스트를 아직 못 받음 — 이번만 서버로.
|
|
|
|
const alignment = buildAlignment(toAlignmentBase(stored), {
|
|
station_offsets: edits.station_offsets ?? {},
|
|
curve_radii: edits.curve_radii ?? {},
|
|
});
|
|
const rockOffsets = readRockBoundarySession(projectId, input.routeId) ?? {};
|
|
const rockDefault = readRockBoundaryDefault(projectId);
|
|
|
|
const updated: number[] = [];
|
|
for (const section of detail.cross_sections) {
|
|
const previous = section.design;
|
|
if (!previous) continue; // 설계가 없는 측점은 서버 기본 설계가 붙을 때까지 둔다.
|
|
const design = previous as unknown as Record<string, unknown>;
|
|
// 암 경계는 세션 조정값 → 저장분 → config 기본값 순 — 서버
|
|
// `recompute_designs_for_alignment` 의 우선순위와 같다.
|
|
const sessionOffset = rockOffsets[section.chainage_m.toFixed(3)];
|
|
const storedOffset = design.rock_boundary_offset_m;
|
|
const rockBoundaryOffsetM =
|
|
typeof sessionOffset === "number"
|
|
? sessionOffset
|
|
: typeof storedOffset === "number"
|
|
? storedOffset
|
|
: rockDefault;
|
|
let next;
|
|
try {
|
|
next = computeCrossDesign(
|
|
section.samples ?? [],
|
|
planElevationAt(alignment, section.chainage_m),
|
|
{
|
|
groundType: typeof design.ground_type === "string" ? design.ground_type : "ripping_rock",
|
|
sectionMode: typeof design.section_mode === "string" ? design.section_mode : "left_cut",
|
|
ditchSide: typeof design.ditch_side === "string" ? design.ditch_side : null,
|
|
// 저장분은 측구가 없으면 `ditch_type: null` 이다 — 서버와 같이 기본형으로 되돌린다.
|
|
ditchType: typeof design.ditch_type === "string" ? design.ditch_type : "standard",
|
|
paved: Boolean(design.paved),
|
|
standard,
|
|
rockBoundaryOffsetM,
|
|
twoStageSlope:
|
|
design.two_stage_slope === undefined ? true : Boolean(design.two_stage_slope),
|
|
ditchEnabled: typeof design.ditch_enabled === "boolean" ? design.ditch_enabled : null,
|
|
// 세월교 월류 하강은 계획선 편집으로 바뀌지 않는다 — 저장분 값을 그대로 잇는다.
|
|
surfaceDropM: typeof design.surface_drop_m === "number" ? design.surface_drop_m : 0,
|
|
},
|
|
);
|
|
} catch {
|
|
continue; // 샘플 부족·값 손상 측점은 건너뛴다(서버 엔진과 같은 태도).
|
|
}
|
|
section.design = preserveUserFields(
|
|
next as unknown as NonNullable<CrossSection["design"]>,
|
|
previous,
|
|
);
|
|
updated.push(section.chainage_m);
|
|
}
|
|
return updated;
|
|
}
|
|
|
|
/** 옛 데이터 폴백 — 선형 저장분이 없어 브라우저가 계획고를 풀 수 없을 때만 쓴다. */
|
|
async function refreshFromServer(input: CrossRefreshInput): Promise<number[]> {
|
|
const { projectId, routeId, detail, edits, shouldApply } = input;
|
|
const response = await previewCrossDesigns(
|
|
projectId,
|
|
routeId,
|
|
edits,
|
|
readStandardCrossSession(projectId) ?? undefined,
|
|
{
|
|
fullDesigns: true,
|
|
rockBoundaryOffsets: readRockBoundarySession(projectId, routeId),
|
|
},
|
|
);
|
|
if (shouldApply && !shouldApply()) return [];
|
|
const designByChainage = new Map(
|
|
response.designs.map((entry) => [entry.chainage_m.toFixed(3), entry.design]),
|
|
);
|
|
const updated: number[] = [];
|
|
for (const section of detail.cross_sections) {
|
|
const next = designByChainage.get(section.chainage_m.toFixed(3));
|
|
if (!next) continue;
|
|
section.design = preserveUserFields(
|
|
next as NonNullable<CrossSection["design"]>,
|
|
section.design,
|
|
);
|
|
updated.push(section.chainage_m);
|
|
}
|
|
return updated;
|
|
}
|