Files
settled-reach/tooling/domains/godot/router.py
T
jpmschweitzerandClaude Opus 5 a384ec0c7c feat(config): T-1283 — the godot and visual domains
reach godot parse-sweep / cold-parse, reach visual diff / blank-check /
thumbnail. Five scripts retired, and the callers rewired — tests/run-visual
invoked three of them by path at four sites, which is a wider blast radius than
the make targets were.

The godot pair were grep pipelines encoding five hard-won lessons as comments
nobody could test. They are Python filters now, with the reasons attached, and
the engine invocation is a guarded exec. Verified on the real client: 229
scripts, clean.

Their three not-ok states stay distinct, because only one is a verdict about
the code. An engine that crashed or is missing is not a parse failure —
reporting it as one blames the tree for a broken toolchain. A sweep that
emitted no completion marker checked nothing, and zero errors from a check that
never ran reads as clean, which is the false-green the sweep exists to close.
The deliberate asymmetry between the two checks is preserved and documented:
cold-parse filters "Cannot infer the type", the sweep does not, because that
suppression is why cold-parse stayed silent about a helper that genuinely does
not parse.

All three visual scripts carried the same root bug as validate-checklist:
Path(__file__).parent.parent, correct at tooling/ and two levels too deep at
tooling/domains/visual. Fixed during the move rather than after, having learned
that it fails silently — paths resolve to nothing, the work appears to have
nothing to do, and the tool reports success. Three domains now where that would
have shipped a false pass.

Two bugs my own transformation introduced, both found by running rather than
reading. Multi-line print(..., file=sys.stderr) became console.event(...,
file=sys.stderr), and console puts unknown kwargs into the payload — a file
object would have reached json.dumps at the exact moment something was already
being reported as an error. And the replacement script wrote escaped quotes
into three files. Mechanical transformations need mechanical verification.

sys.exit removed from four sites: a service must not end the process.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-09-02 13:59:29 +02:00

74 lines
2.5 KiB
Python

"""Transport for the `godot` domain — args in, delegate, format out."""
from __future__ import annotations
import typer
from tooling.core import cli, console
from tooling.core.command import command
from tooling.core.errors import ReachError
from tooling.domains.godot import service
from tooling.domains.godot.schemas import ParseResult
app = cli.domain("godot", "Does the client parse, and does it parse cold.")
@app.callback()
def _domain() -> None:
"""Keeps `godot` a group (Typer collapses a single-command app)."""
def _verdict(result: ParseResult, name: str, clean: str) -> None:
"""Shared rendering — three failure shapes, three different remedies."""
if result.engine_failed:
raise ReachError(
f"{name}: godot itself exited {result.engine_exit} — not a parse verdict\n"
+ "\n".join(f" {line}" for line in result.lines),
fix="the engine failed rather than the code; check the Godot install "
"with `godot --version`, or make setup-godot",
exit_code=result.engine_exit,
)
if result.did_not_run:
raise ReachError(
f"{name}: the sweep did not report completion — no verdict possible\n"
+ "\n".join(f" {line}" for line in result.lines),
fix="client/tools/parse_sweep.gd did not run to completion; a check "
"that examined nothing must not report clean",
)
if result.lines:
shown = result.lines[:40]
raise ReachError(
f"{name}: at least one script does not parse\n"
+ "\n".join(f" {line}" for line in shown)
+ (f"\n {result.summary}" if result.summary else ""),
fix="an unparseable file cannot run — if it is a test suite it did "
"not execute, and any pass count reported elsewhere excludes it",
)
console.verdict(clean)
@app.command("parse-sweep")
@command
def parse_sweep() -> None:
"""Open every project .gd and fail on any that will not parse."""
result = service.parse_sweep()
_verdict(
result,
"godot-parse-sweep",
f"godot-parse-sweep: clean — {result.summary.removeprefix('parse-sweep: ')}",
)
@app.command("cold-parse")
@command
def cold_parse(
run_menu: bool = typer.Option(
False, "--run-menu", help="Also launch main_menu.tscn briefly, for UI branches."
),
) -> None:
"""Cold-cache startup parse — the class_name/autoload registration race."""
_verdict(service.cold_parse(run_menu), "godot-cold-parse", "godot-cold-parse: clean")