// A thin `git`-shelling seam for the extension interior — the TS twin of perk/substrate/git.py.
//
// Node builtins only (so it loads cleanly under `node --test`); shells `git` via `execFileSync`,
// never with a shell. Fail-open by design: every failure degrades to the caller's `cwd` (or null
// where stated) rather than throwing — the carriers that use this must never wedge a session.
import { execFileSync } from "node:child_process";
import { isAbsolute, resolve } from "node:path";
/**
* The MAIN working tree's root, even when `cwd` is inside a linked worktree — the TS twin of
* `main_worktree_root`. Resolves `git rev-parse --git-common-dir` (the shared `.git` of the main
* checkout) and returns its parent (equal to the repo root in the main checkout). **Fail-open**:
* any failure (not a repo, git missing) returns `cwd`, so a session-pointer write always has a
* location — never throws. (Python returns `null` outside a repo; here the single caller wants
* `main_worktree_root(cwd) or cwd`, so we fold the fallback in.)
*/
export function mainCheckoutRoot(cwd: string): string {
let out: string;
try {
out = execFileSync("git", ["rev-parse", "--git-common-dir"], {
cwd,
encoding: "utf8",
stdio: ["ignore", "pipe", "ignore"],
}).trim();
} catch {
return cwd;
}
if (out === "") return cwd;
// `--git-common-dir` may be relative (to `cwd`) or absolute; resolve then take the parent
// (the dir containing `.git` = the main checkout root).
const common = isAbsolute(out) ? out : resolve(cwd, out);
return resolve(common, "..");
}
/** Run one git command; trimmed stdout, or null on any failure (the module's fail-open style). */
function git(cwd: string, args: string[], timeout?: number): string | null {
try {
const out = execFileSync("git", args, {
cwd,
encoding: "utf8",
stdio: ["ignore", "pipe", "ignore"],
...(timeout !== undefined ? { timeout } : {}),
}).trim();
return out === "" ? null : out;
} catch {
return null;
}
}
/** The bounded best-effort `git fetch` budget (ms) — see `sinceBaseSha` step 2. */
const FETCH_TIMEOUT_MS = 15_000;
/**
* The since-base merge-base of the working tree: `merge-base(HEAD, origin/)` — the sha the
* terminal review door diffs the active worktree against. **Fail-open**: null on any failure
* (not a repo, no such ref, git missing), never throws.
*
* 1. Resolve the base branch name: `base` when given; else the repo default via
* `git symbolic-ref --short refs/remotes/origin/HEAD` (`origin/main` → `main`).
* 2. Best-effort `git fetch origin ` with a bounded timeout — a failure (offline, no
* remote) is swallowed and the stale local ref is used, keeping the door usable offline (and
* the test scaffold network-free).
* 3. `git merge-base HEAD origin/` → the full sha.
*/
export function sinceBaseSha(cwd: string, base: string | null | undefined): string | null {
let branch = base ?? null;
if (branch === null) {
const head = git(cwd, ["symbolic-ref", "--short", "refs/remotes/origin/HEAD"]);
if (head === null) return null;
// `origin/main` → `main` (keep anything after the first slash — branch names may carry `/`).
branch = head.includes("/") ? head.slice(head.indexOf("/") + 1) : head;
}
if (branch === "") return null;
git(cwd, ["fetch", "origin", branch], FETCH_TIMEOUT_MS);
return git(cwd, ["merge-base", "HEAD", `origin/${branch}`]);
}
/**
* The current HEAD sha. **Fail-open**: null on any failure — not a repo, git missing, or an
* unborn HEAD (no commits yet), which callers treat as "no before-point to diff from".
*/
export function headSha(cwd: string): string | null {
return git(cwd, ["rev-parse", "HEAD"]);
}
/**
* Whether the working tree has anything uncommitted (`git status --porcelain`). Untracked files
* count as dirty — deliberate: the model decides whether they belong in a commit. **Fail-open to
* null** on any failure (not a repo, git missing) — callers must NOT conflate null with clean.
* Own `execFileSync` rather than the `git()` helper: `git()` conflates empty output (a clean
* tree — meaningful here) with failure.
*/
export function worktreeDirty(cwd: string): boolean | null {
try {
const out = execFileSync("git", ["status", "--porcelain"], {
cwd,
encoding: "utf8",
stdio: ["ignore", "pipe", "ignore"],
});
return out.trim() !== "";
} catch {
return null;
}
}
/**
* The `git log --oneline ..HEAD` listing of commits made since `fromSha` — or every
* commit (`git log --oneline HEAD`) when `fromSha` is null (HEAD was unborn at capture time).
* **Fail-open**: null on failure or when the range is empty.
*/
export function commitsSince(cwd: string, fromSha: string | null): string | null {
const range = fromSha === null ? "HEAD" : `${fromSha}..HEAD`;
return git(cwd, ["log", "--oneline", range]);
}