Files
fish-config/docs/manualtools.py
T
rootiest e651566e14 docs(functions): split RETURNS into EXIT STATUS and stdout RETURNS
RETURNS previously conflated fish's $status exit code with genuine
stdout/printed output, e.g. rm listing "0/1" as if they were print
values rather than exit codes. Rename RETURNS to EXIT STATUS across
all 83 documented functions, and reintroduce RETURNS as a distinct
label reserved for the 15 functions that actually print to stdout.

Update build-manual.py's ENTRY_HEADS to render Exit Status before
Returns, manualtools.py's SECTIONS constant, and AGENTS.md's label
order and label-usage guidance to match. Add two verify-manual.py
regression tests: EXIT STATUS bodies must never contain stray
stdout/printed language, and Returns: must always render after
Exit Status: when both are present. Regenerate docs/fish-config.md.
2026-07-26 16:41:57 -04:00

171 lines
5.8 KiB
Python

#!/usr/bin/env python3
# Copyright (C) 2026 Rootiest
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Shared helpers for the docs/manual SSOT pipeline.
Frontmatter parsing, deterministic tree ordering, heading level shifts, and
the `functions/*.fish` comment-header parser that is the SSOT for Section 5.
Used by build-manual.py and verify-manual.py.
"""
import re
from pathlib import Path
import yaml
FENCE_RE = re.compile(r"^\s*(```|~~~)")
HEADING_RE = re.compile(r"^(#{1,6})(\s)")
def parse(path: Path) -> tuple[dict, str]:
"""Split a markdown file into (frontmatter dict, body text).
Files without a leading `---` block yield an empty dict and the whole
text as body. Body is returned with trailing whitespace stripped.
"""
text = path.read_text()
if not text.startswith("---\n"):
return {}, text.rstrip()
end = text.find("\n---\n", 4)
if end == -1:
return {}, text.rstrip()
fm = yaml.safe_load(text[4:end]) or {}
return fm, text[end + 5 :].removeprefix("\n").rstrip()
def serialize(fm: dict, body: str) -> str:
"""Render a frontmatter dict and body back into markdown text."""
block = yaml.safe_dump(fm, sort_keys=False, allow_unicode=True).rstrip()
return f"---\n{block}\n---\n\n{body.rstrip()}\n"
def shift_headings(body: str, by: int) -> str:
"""Add `by` levels to every ATX heading, ignoring fenced code blocks.
Negative values promote headings. Level is clamped to [1, 6].
"""
if by == 0:
return body
out, in_fence = [], False
for line in body.split("\n"):
if FENCE_RE.match(line):
in_fence = not in_fence
if not in_fence:
line = HEADING_RE.sub(
lambda m: "#" * max(1, min(6, len(m.group(1)) + by)) + m.group(2), line
)
out.append(line)
return "\n".join(out)
HEADER_LABEL = re.compile(r"^#\s+([A-Z][A-Z ]*[A-Z])\s*$")
FUNC_DEF = re.compile(r"^\s*function\s+(\S+)")
SECTIONS = (
"CATEGORY",
"DEPENDENCIES",
"SYNOPSIS",
"DESCRIPTION",
"ARGUMENTS",
"EXIT STATUS",
"RETURNS",
"EXAMPLE",
"NOTES",
)
def _header_blocks(lines: list[str]) -> list[tuple[int, dict[str, list[str]]]]:
"""Find every man-page comment header in a file's lines.
Yields (index of the line that ended the block, {LABEL: body lines}).
Body lines keep any indentation deeper than the standard `# ` prefix,
which is what lets nested option tables survive into the rendered entry.
Comment runs carrying no `# LABEL` line at all (the copyright preamble,
ordinary inline comments) produce nothing.
"""
out: list[tuple[int, dict[str, list[str]]]] = []
cur: dict[str, list[str]] = {}
label: str | None = None
for i, line in enumerate(lines + [""]):
if not line.startswith("#"):
if cur:
out.append((i, cur))
cur, label = {}, None
continue
m = HEADER_LABEL.match(line)
if m:
label = m.group(1)
cur.setdefault(label, [])
elif label is not None:
body = line[1:]
cur[label].append(body[3:] if body.startswith(" ") else body.strip())
return out
def _trailing_blanks(lines: list[str]) -> int:
"""Count the blank `#` separator lines closing a section."""
n = 0
while n < len(lines) and not lines[len(lines) - 1 - n].strip():
n += 1
return n
def parse_functions(root: Path) -> dict[str, dict[str, list[str]]]:
"""Parse the comment header above every documented public function.
`root` is the repository's `functions/` directory. Returns
`{name: {LABEL: [lines]}}`.
`# CATEGORY` is the opt-in: a header without one produces no entry. That
keeps bundled-plugin and prompt internals (`fish_prompt`, `sponge_filter_*`,
`fisher`, …) out of the manual with no exclusion list to maintain.
A file carrying exactly one header is associated with its own stem, so a
`function` nested inside a `type -q` guard still resolves. Only files with
several headers walk forward to the next `function` definition.
"""
out: dict[str, dict[str, list[str]]] = {}
for path in sorted(root.glob("*.fish")):
lines = path.read_text(encoding="utf-8").split("\n")
blocks = _header_blocks(lines)
for end, sections in blocks:
if len(blocks) == 1:
name = path.stem
else:
after = (m.group(1) for ln in lines[end:] if (m := FUNC_DEF.match(ln)))
name = next(after, path.stem)
if name.startswith("_") or "CATEGORY" not in sections:
continue
out[name] = {
k: v[: len(v) - _trailing_blanks(v)] for k, v in sections.items()
}
return out
def _sort_key(entry: Path) -> tuple:
"""Order by sidebar.order when present, else by filename. Stable."""
target = entry / "index.md" if entry.is_dir() else entry
order = None
if target.exists():
fm, _ = parse(target)
order = (fm.get("sidebar") or {}).get("order")
return (order is None, order if order is not None else 0, entry.name)
def walk(root: Path, depth: int = 0) -> list[tuple[Path, int]]:
"""Return ordered (path, depth) pairs for every markdown file under root.
A directory sorts at the position of its index.md and its children are
emitted immediately afterwards at depth+1.
"""
entries = [e for e in root.iterdir() if e.is_dir() or e.suffix == ".md"]
result: list[tuple[Path, int]] = []
for entry in sorted(entries, key=_sort_key):
if entry.is_dir():
index = entry / "index.md"
if index.exists():
result.append((index, depth))
result.extend(walk(entry, depth + 1))
elif entry.name != "index.md" or depth == 0:
result.append((entry, depth))
return result