ADR-0008, tier M (survey and ADR merged).
D1 — SH-3 retired as a gate, kept as a diagnostic. Investigating it
found a third defect, deeper than the two this pass was declared on.
Re-deriving batching from the raw transcripts, independently of cb-cost:
CB-WP-0011 pass 54 with tools 0 batched 0.0%
gap -> next decl 16 with tools 6 batched 37.5%
CB-WP-0012 pass 86 with tools 0 batched 0.0%
gap -> next decl 10 with tools 1 batched 10.0%
CB-WP-0013 so far 10 with tools 0 batched 0.0%
Zero batched turns in 150 in-pass responses; 37.5% in one gap, above the
20% floor. Batching needs two calls whose inputs are known at once —
orientation work. Implementation consumes each step's result before the
next. SH-3's window is since the last commit, which during a pass is
always implementation. The metric could not read above ~0% in the window
it was gated on. A floor the window structurally excludes is not a
target.
This pass's own declaration was also wrong: it claimed batching "has got
worse" (7.8-8.6% vs 1.1-6.3%). Differently-placed windows, not different
behaviour. Withdrawn — the same class of error, in the pass written to
correct it.
Not retargeting to match the measurement: the floor was not moved to 6%,
the gate was removed on an argument about what the quantity is worth.
The number is still reported; only the verdict is gone.
D2/D3 — AM-4a counts --edges normal,no-proc-macro: 157,202, not 246,250.
The target moves down with it, 250,000 -> 161,000, so the correction
hands back essentially nothing (headroom 3,750 -> 3,798). Three controls:
the exclusion drops exactly the five expected crates, only removes and
never adds, and is not a no-op.
The DFD gate then caught the follow-on it exists for — three historical
documents carrying live fact tags for a number that had changed. Not
rewritten; untagged, with a supersession banner.
AM-4b is deliberately not corrected: its proc-macro share is unmeasured.
gate-review now reads 0 due, 0 silent, 0 drifted — GATE-REVIEW earns its
first caught entry by forcing SH-3's re-justification, and the registry
has no silent gates left.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
255 lines
10 KiB
Python
Executable file
255 lines
10 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
"""AM-4: third-party dependency weight, measured as source under audit.
|
|
|
|
Crate count is a poor cross-ecosystem proxy — Rust splits crates far more
|
|
finely than npm, so "33 crates vs 120 npm packages" flatters us in one
|
|
direction and a low crate-count target punishes us in the other. What the
|
|
count stands in for is how much third-party source a reviewer would have
|
|
to audit. This measures that directly, in two configurations:
|
|
|
|
shipped-runtime cargo build --no-default-features (what a game ships)
|
|
dev-toolchain cargo build (adds scenario YAML)
|
|
|
|
Positive control (InnerLoop v1.0 §Step 5): every crate in the dependency
|
|
graph must be located on disk and produce a non-zero line count. A crate
|
|
that cannot be found is reported and the run exits non-zero rather than
|
|
silently under-reporting the total — under-reporting is the exact
|
|
direction this metric could be gamed.
|
|
|
|
Usage: python3 tools/dep-weight.py [--json] [--self-test]
|
|
"""
|
|
|
|
import glob
|
|
import json
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
from repo import cargo_bin, enter_root
|
|
|
|
PACKAGE = "games-ground"
|
|
# ADR-0008 D2. `--edges normal` includes proc-macro crates, which run in
|
|
# the compiler and never reach a shipped binary — 89,048 lines, 36.2% of
|
|
# what this tool used to call "what a game ships", `syn` alone 66,916. The
|
|
# shipped-runtime configuration now excludes them.
|
|
#
|
|
# AM-4b is deliberately NOT corrected here: its proc-macro share has not
|
|
# been measured, and correcting a second instrument on the strength of the
|
|
# first one's ratio is the error this change exists to fix.
|
|
PROC_MACRO_EXCLUDED = ["--edges", "normal,no-proc-macro"]
|
|
CONFIGS = {
|
|
"shipped-runtime": ["--no-default-features"] + PROC_MACRO_EXCLUDED,
|
|
"dev-toolchain": [],
|
|
}
|
|
|
|
# AM-4a / AM-4b targets from specs/GameKernel.md §4. Breaching one fails
|
|
# the build: a gate that only reports is a suggestion.
|
|
# ADR-0008 D3: the target moves down with the instrument. Leaving it at
|
|
# 250,000 against a corrected 157,202 would hand this project 89,048 lines
|
|
# of headroom it did not earn, in the same change that revealed the error.
|
|
# 161,000 keeps ~2.4% of room where 250,000 kept ~1.5% — the small
|
|
# rounding up is the only thing this decision gives back, because a target
|
|
# with 1.5% of room fails on a dependency's patch release.
|
|
TARGETS = {
|
|
"shipped-runtime": 161_000,
|
|
"dev-toolchain": 350_000,
|
|
}
|
|
|
|
|
|
def crates(extra_args):
|
|
"""Third-party crates in the normal (non-dev) dependency graph."""
|
|
# T01: locate cargo rather than demanding the caller export PATH. The
|
|
# error below is kept as a positive control — it should now be
|
|
# unreachable on a machine with rustup installed, and a control that
|
|
# never fires is still cheaper than a regression.
|
|
cargo = cargo_bin()
|
|
if not cargo:
|
|
print(
|
|
"ERROR: cargo not found on PATH or in ~/.cargo/bin — is rustup installed?",
|
|
file=sys.stderr,
|
|
)
|
|
sys.exit(1)
|
|
out = subprocess.run(
|
|
[cargo, "tree", "-p", PACKAGE, "--prefix", "none"]
|
|
+ (extra_args if "--edges" in extra_args else ["--edges", "normal"] + extra_args),
|
|
capture_output=True,
|
|
text=True,
|
|
check=True,
|
|
).stdout
|
|
found = {}
|
|
for line in out.splitlines():
|
|
parts = line.split()
|
|
if len(parts) < 2 or not parts[1].startswith("v"):
|
|
continue
|
|
name, version = parts[0], parts[1].lstrip("v")
|
|
# Path dependencies are our own code, not third-party.
|
|
if "(/" in line:
|
|
continue
|
|
found[name] = version
|
|
return found
|
|
|
|
|
|
def source_lines(name, version):
|
|
"""Lines of Rust in the vendored source for one crate."""
|
|
roots = glob.glob(os.path.expanduser("~/.cargo/registry/src/*/"))
|
|
for root in roots:
|
|
# Version may carry a build suffix (e.g. 0.9.34+deprecated).
|
|
for d in glob.glob(f"{root}{name}-{version}*/") + glob.glob(f"{root}{name}-*/"):
|
|
total = 0
|
|
for dirpath, _, files in os.walk(d):
|
|
for f in files:
|
|
if f.endswith(".rs"):
|
|
try:
|
|
with open(os.path.join(dirpath, f), "rb") as fh:
|
|
total += fh.read().count(b"\n")
|
|
except OSError:
|
|
pass
|
|
if total:
|
|
return total
|
|
return 0
|
|
|
|
|
|
def self_test():
|
|
"""Each assertion pins a failure this tool must detect.
|
|
|
|
The controls that matter here are: an unlocatable crate must not be
|
|
silently counted as zero lines (that under-reports, the direction this
|
|
metric could be gamed), and a target breach must fail rather than
|
|
merely print.
|
|
"""
|
|
results = []
|
|
|
|
def check(name, ok, detail=""):
|
|
results.append((name, ok, detail))
|
|
|
|
# A crate that does not exist must measure zero, so the caller's
|
|
# `lines == 0` guard fires rather than silently shrinking the total.
|
|
check("unlocatable crate measures zero (so the guard fires)",
|
|
source_lines("definitely-not-a-real-crate-xyz", "9.9.9") == 0)
|
|
|
|
# A crate we do depend on must measure non-zero, or the guard above
|
|
# would fire on everything and the tool would never report at all.
|
|
real = source_lines("serde", "1")
|
|
check("a real vendored crate measures non-zero", real > 0,
|
|
f"{real:,} lines")
|
|
|
|
# Targets must be present and numeric — a missing target would make
|
|
# the breach check vacuous.
|
|
# T01: this tool is useless without cargo, and used to demand the caller
|
|
# put it on PATH. Assert it resolves unaided.
|
|
check("cargo resolves without caller PATH setup", bool(cargo_bin()),
|
|
cargo_bin() or "NOT FOUND")
|
|
|
|
# ADR-0008 D2. The exclusion must remove exactly the proc-macro crates
|
|
# and nothing else — a flag that quietly dropped a runtime dependency
|
|
# would shrink the number in the direction this metric can be gamed.
|
|
with_pm = crates(["--no-default-features"])
|
|
without_pm = crates(["--no-default-features"] + PROC_MACRO_EXCLUDED)
|
|
dropped = set(with_pm) - set(without_pm)
|
|
check("the proc-macro exclusion drops exactly the expected crates",
|
|
dropped == {"syn", "quote", "proc-macro2", "unicode-ident", "serde_derive"},
|
|
f"dropped {sorted(dropped)}")
|
|
check("the exclusion only ever removes crates, never adds",
|
|
set(without_pm) <= set(with_pm),
|
|
f"{len(with_pm)} -> {len(without_pm)}")
|
|
# And it must actually remove something: an exclusion that excluded
|
|
# nothing would leave the old figure while claiming the new meaning.
|
|
check("the exclusion is not a no-op",
|
|
len(dropped) > 0, f"{len(dropped)} crate(s) dropped")
|
|
|
|
check("targets defined for every configuration",
|
|
set(TARGETS) == set(CONFIGS) and all(
|
|
isinstance(v, int) and v > 0 for v in TARGETS.values()),
|
|
f"{TARGETS}")
|
|
|
|
print("dep-weight self-test (positive control)")
|
|
ok = True
|
|
for name, passed, detail in results:
|
|
print(f" [{'ok ' if passed else 'FAIL'}] {name}"
|
|
+ (f" — {detail}" if detail else ""))
|
|
ok &= passed
|
|
return 0 if ok else 1
|
|
|
|
|
|
def main():
|
|
# T01: `cargo tree` and the own-source walk are both repo-relative.
|
|
enter_root()
|
|
if "--self-test" in sys.argv:
|
|
return self_test()
|
|
|
|
report = {}
|
|
missing = []
|
|
for label, args in CONFIGS.items():
|
|
found = crates(args)
|
|
per_crate = {}
|
|
for name, version in sorted(found.items()):
|
|
lines = source_lines(name, version)
|
|
if lines == 0:
|
|
missing.append(f"{name} {version} ({label})")
|
|
per_crate[name] = lines
|
|
report[label] = {
|
|
"crates": len(found),
|
|
"third_party_loc": sum(per_crate.values()),
|
|
"per_crate": per_crate,
|
|
}
|
|
|
|
own = 0
|
|
for base in ("crates", "games", "tools"):
|
|
for dirpath, _, files in os.walk(base):
|
|
if "target" in dirpath.split(os.sep):
|
|
continue
|
|
for f in files:
|
|
if f.endswith(".rs"):
|
|
with open(os.path.join(dirpath, f), "rb") as fh:
|
|
own += fh.read().count(b"\n")
|
|
report["own_loc"] = own
|
|
|
|
if "--json" in sys.argv:
|
|
print(json.dumps(report, indent=2))
|
|
else:
|
|
print("AM-4 dependency weight")
|
|
print(f" own source {own:>9,} lines")
|
|
for label in CONFIGS:
|
|
r = report[label]
|
|
limit = TARGETS[label]
|
|
mark = "ok " if r["third_party_loc"] <= limit else "FAIL"
|
|
print(
|
|
f" {label:<18}{r['crates']:>3} crates "
|
|
f"{r['third_party_loc']:>9,} lines third-party "
|
|
f"[{mark} target {limit:,}]"
|
|
)
|
|
# AM-4c: own source per 100k third-party lines. A DIAGNOSTIC, not a
|
|
# target — see specs/GameKernel.md §5 and CB-WP-0006 T04. The ratio
|
|
# has no monotone better direction, so it cannot carry a threshold.
|
|
for label in CONFIGS:
|
|
tp = report[label]["third_party_loc"]
|
|
if tp:
|
|
print(f" AM-4c {label:<18}{own / (tp / 100_000):>9,.0f} own "
|
|
f"lines per 100k third-party (diagnostic, not targeted)")
|
|
delta = (
|
|
report["dev-toolchain"]["third_party_loc"]
|
|
- report["shipped-runtime"]["third_party_loc"]
|
|
)
|
|
print(f" scenario tooling costs {delta:>9,} lines (dev only)")
|
|
|
|
if missing:
|
|
# Positive control: a crate we could not measure would silently
|
|
# shrink the total, so refuse to report rather than under-report.
|
|
print("\nERROR — source not found for:", ", ".join(missing), file=sys.stderr)
|
|
return 1
|
|
|
|
breached = [
|
|
(label, report[label]["third_party_loc"], limit)
|
|
for label, limit in TARGETS.items()
|
|
if report[label]["third_party_loc"] > limit
|
|
]
|
|
for label, actual, limit in breached:
|
|
print(
|
|
f"\nFAIL AM-4 — {label}: {actual:,} lines exceeds target {limit:,}",
|
|
file=sys.stderr,
|
|
)
|
|
return 1 if breached else 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|