사용자 확정(2026-09-06): 조작 중과 [저장]·[확정]의 계산은 브라우저 몫이고, 서버는 초기값을 만들 때만 같은 코드를 Node 로 돌린다. - 면적 산출을 B06_Section_Structure_Layouts 로 빼 Node 진입점과 브라우저가 같은 한 벌을 쓰게 함(structureAreaRows / applyStructureAreaRows). - [저장]·[확정]이 카드를 그리지 않은 측점까지 면적을 계산해 cross_patch 로 보냄. 유토곡선도 그 위에서 쌓음. - 서버는 저장 때 Node 를 돌리지 않음 — 포장 구간·세월교 노면 하강 보정만 남기고, 그 보정은 편집분을 얹기 전에 돌게 순서를 바꿈. 검증: tsc --noEmit 통과, pytest 387 passed, Node 진입점 스모크 통과. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
64 lines
3.2 KiB
TypeScript
64 lines
3.2 KiB
TypeScript
/* =============================================================================
|
|
* B06_Section_Server_Calc_Node.ts
|
|
* 브라우저에서만 돌던 횡단 계산을 **서버가 한 번 돌리는** 진입점 — 구조물 폐회로
|
|
* 절·성토 면적 + 그것을 쌓아 만든 유토곡선.
|
|
*
|
|
* 왜 있나(2026-09-06, CLAUDE.md 5장 「계산 자리」) — 이 두 값은 지금까지 브라우저에서만
|
|
* 나왔다. 사용자가 B06 을 한 번도 안 열면 값이 없고, 저장·확정 뒤 서버가 다시 계산하면
|
|
* 구조물을 모르는 표준값으로 되돌아갔다. 코리도(`B05_Profile_Corridor_Node.ts`)와 같은
|
|
* 방식으로 **브라우저가 쓰는 코드를 서버가 그대로 실행**한다 — 계산을 두 벌로 짜지 않는다.
|
|
*
|
|
* 순서가 중요하다: 면적 보정을 **먼저** 얹고 그 위에서 유토곡선을 쌓는다. 화면도 같은
|
|
* 순서다(카드를 그리며 면적을 고친 뒤 유토곡선을 낸다).
|
|
*
|
|
* 실행: node <번들> <입력.json> <출력.json>
|
|
* 입력 { detail: 종횡단 상세(API와 같은 꼴), context: { earthwork_conversion,
|
|
* natural_spoil_min_ground_slope, haul_equipment_limits } }
|
|
* 출력 { areas: [{ chainage_m, cut_area_m2, … }], mass_haul: {…} | null }
|
|
* — areas 는 **구조물 트림이 있는 측점만**. 나머지는 표준 계산값이 이미 맞다.
|
|
* 끝 코드: 0 성공 / 2 인자 오류
|
|
* ========================================================================== */
|
|
|
|
import { readFileSync, writeFileSync } from "node:fs";
|
|
import { computeMassHaul, massHaulPayload } from "@util/common_util_mass_haul";
|
|
import { computeHaulPlan } from "@util/common_util_mass_haul_balance";
|
|
import type { CrossSection, SectionDetailResponse } from "./B06_Section_Api_Fetch";
|
|
import { applyStructureAreaRows, structureAreaRows } from "./B06_Section_Structure_Layouts";
|
|
|
|
interface ServerCalcInput {
|
|
detail: SectionDetailResponse;
|
|
context?: {
|
|
earthwork_conversion?: Parameters<typeof computeMassHaul>[1];
|
|
natural_spoil_min_ground_slope?: number | null;
|
|
haul_equipment_limits?: Parameters<typeof computeHaulPlan>[1];
|
|
};
|
|
}
|
|
|
|
const [inputPath, outputPath] = process.argv.slice(2);
|
|
if (!inputPath || !outputPath) {
|
|
console.error("사용법: node <번들> <입력.json> <출력.json>");
|
|
process.exit(2);
|
|
}
|
|
|
|
const input = JSON.parse(readFileSync(inputPath, "utf8")) as ServerCalcInput;
|
|
const sections: CrossSection[] = input.detail?.cross_sections ?? [];
|
|
|
|
const areas = structureAreaRows(sections);
|
|
// 보정값을 **자리에서** 얹는다 — 유토곡선이 고쳐진 면적 위에서 쌓이게 한다.
|
|
applyStructureAreaRows(sections, areas);
|
|
|
|
// 유토곡선 — balloon 위치는 사용자 화면값이라 서버가 만들지 않는다(파이썬이 보존).
|
|
const conversion = input.context?.earthwork_conversion;
|
|
const result = conversion
|
|
? computeMassHaul(
|
|
sections,
|
|
conversion,
|
|
input.context?.natural_spoil_min_ground_slope ?? undefined,
|
|
)
|
|
: null;
|
|
const massHaul = result
|
|
? massHaulPayload(result, computeHaulPlan(result, input.context?.haul_equipment_limits))
|
|
: null;
|
|
|
|
writeFileSync(outputPath, JSON.stringify({ areas, mass_haul: massHaul }));
|