ee3e799de1
주요 변경: - tools/build_rebalance_engine_v1.py: REBALANCE_ENGINE_V1 신규 * account_snapshot 직접 합산(_build_snap_position_map) → 소수주 분리 행 병합 * 레짐 소스 macro.REGIME_PRELIM 최우선 (GAS 와 동일) - src/gas_adapter_parts/gdf_06_rebalance.gs: runRebalanceSheet_() 신규 * Logger.log / getSpreadsheet_() 로 run_all 연동 수정 - src/gas_adapter_parts/gdc_01_fetch_fundamentals.gs * _mergePositionRecord_(): 소수주 중복 행 합산 신규 * parseInt → parseFloat (qty, availQty) - src/gas_adapter_parts/gdf_01_price_metrics.gs * 미보유 종목 SELL_READY → WATCH_EXIT_SIGNAL - spec/41_release_dag.yaml: build_rebalance_sheet 노드 추가 (step_count 63) - spec/51_formula_lifecycle_registry.yaml: REBALANCE_ENGINE_V1 등록 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
85 lines
2.3 KiB
Python
85 lines
2.3 KiB
Python
#!/usr/bin/env python3
|
|
import argparse
|
|
import sys
|
|
from pathlib import Path
|
|
import yaml
|
|
|
|
ROOT = Path(__file__).resolve().parents[1]
|
|
|
|
|
|
def find_cycle(node, adj, visited, stack):
|
|
visited.add(node)
|
|
stack.add(node)
|
|
for neighbor in adj.get(node, []):
|
|
if neighbor not in visited:
|
|
if find_cycle(neighbor, adj, visited, stack):
|
|
return True
|
|
elif neighbor in stack:
|
|
return True
|
|
stack.remove(node)
|
|
return False
|
|
|
|
|
|
def main() -> int:
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--dag", default="spec/41_release_dag.yaml")
|
|
parser.add_argument("--strict", action="store_true")
|
|
args = parser.parse_args()
|
|
|
|
dag_path = ROOT / args.dag
|
|
if not dag_path.exists():
|
|
print(f"DAG file not found: {dag_path}")
|
|
return 1
|
|
|
|
try:
|
|
data = yaml.safe_load(dag_path.read_text(encoding="utf-8"))
|
|
except Exception as e:
|
|
print(f"Error parsing YAML: {e}")
|
|
return 1
|
|
|
|
if not isinstance(data, dict) or "dag" not in data or "nodes" not in data["dag"]:
|
|
print("Invalid DAG format: missing 'dag.nodes'")
|
|
return 1
|
|
|
|
nodes = data["dag"]["nodes"]
|
|
|
|
# 1. Field validation
|
|
required_fields = ["id", "command", "inputs", "outputs", "depends_on", "timeout_sec"]
|
|
for nid, node in nodes.items():
|
|
if not isinstance(node, dict):
|
|
print(f"Node {nid} is not a dictionary")
|
|
return 1
|
|
for field in required_fields:
|
|
if field not in node:
|
|
print(f"Node {nid} is missing required field: {field}")
|
|
return 1
|
|
|
|
# 2. Cycle detection
|
|
adj = {}
|
|
for nid, node in nodes.items():
|
|
adj[nid] = node["depends_on"]
|
|
|
|
visited = set()
|
|
stack = set()
|
|
for nid in nodes:
|
|
if nid not in visited:
|
|
if find_cycle(nid, adj, visited, stack):
|
|
print("Cycle detected in DAG dependencies!")
|
|
return 1
|
|
|
|
# 3. Duplicate output owner detection
|
|
outputs_map = {}
|
|
for nid, node in nodes.items():
|
|
for out in node.get("outputs") or []:
|
|
if out in outputs_map:
|
|
print(f"Duplicate output owner detected! Both {nid} and {outputs_map[out]} output {out}")
|
|
return 1
|
|
outputs_map[out] = nid
|
|
|
|
print("PASS")
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|