File size: 8,027 Bytes
eb3f11e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | import { spinner } from "@clack/prompts";
import { UPDATE_RUN_PHASES } from "../../../packages/gateway-protocol/src/update-run-vocabulary.js";
import { theme } from "../../../packages/terminal-core/src/theme.js";
import { formatDurationPrecise } from "../../infra/format-time/format-duration.ts";
import { formatUpdateFailureFact } from "../../infra/update-failure-facts-format.js";
import { getUpdateRun } from "../../infra/update-run-ledger.js";
import {
updateStepDiagnostics,
type UpdateRunPhase,
type UpdateRunRecord,
} from "../../infra/update-run-record.js";
import {
renderUpdateRunReport,
updateRunReportInputFromResult,
} from "../../infra/update-run-report.js";
import type {
UpdateRunResult,
UpdateStepAdvisory,
UpdateStepProgress,
UpdateStepResult,
} from "../../infra/update-runner.js";
import { defaultRuntime } from "../../runtime.js";
import type { UpdateCommandOptions } from "./shared.js";
// One command owns each observer. The final report flushes it before printing so
// a fast final transition cannot appear after the report or leave a spinner active.
const activeUpdateProgress = new Map<string, (record: UpdateRunRecord | undefined) => void>();
const UPDATE_PROGRESS_POLL_MS = 250;
// These CLI-only callbacks can render the row just committed by their ledger owner.
export type UpdateDisplayProgress = {
onHeartbeat?: UpdateStepProgress["onHeartbeat"];
onStepStart?: (
step: Parameters<NonNullable<UpdateStepProgress["onStepStart"]>>[0],
record?: UpdateRunRecord,
) => void;
onStepComplete?: (
step: Parameters<NonNullable<UpdateStepProgress["onStepComplete"]>>[0],
record?: UpdateRunRecord,
) => void;
};
type ProgressController = {
progress: UpdateDisplayProgress;
stop: () => void;
suspend: () => void;
resume: () => void;
dispose: () => void;
};
export function createUpdateProgress(
enabled: boolean,
run?: UpdateCommandOptions["run"],
): ProgressController {
if (!enabled) {
return { progress: {}, stop: () => {}, suspend: () => {}, resume: () => {}, dispose: () => {} };
}
let currentSpinner: ReturnType<typeof spinner> | null = null;
let timer: ReturnType<typeof setTimeout> | undefined;
let currentPhase: UpdateRunPhase | undefined;
let observation: "active" | "suspended" | "disposed" = "active";
const seenPhases = new Set<UpdateRunPhase>();
const stop = () => {
currentSpinner?.clear();
currentSpinner = null;
};
const clearTimer = () => {
if (timer) {
clearTimeout(timer);
timer = undefined;
}
};
// Candidate migrations can advance the ledger beyond this process's reader.
// Step callbacks and final cleanup must respect the same fence as the timer.
const read = () =>
observation === "active" && run ? getUpdateRun(run.runId, { env: run.env }) : undefined;
const renderRecord = (record: UpdateRunRecord | undefined) => {
// Doctor's unbound spinner does not observe ledger phases, even after a write.
if (observation !== "active" || !run || !record) {
return;
}
currentPhase = record.phase;
// A child process can cross several phases between reads. Replay the recorded
// timeline rather than losing fast transitions or inferring unobserved phases.
for (const phase of UPDATE_RUN_PHASES) {
const recorded = record.steps.some(
(step) => step.step === phase && step.status !== "pending",
);
if (!seenPhases.has(phase) && (recorded || phase === record.phase)) {
seenPhases.add(phase);
stop();
defaultRuntime.log(`Phase: ${phase}`);
}
}
if (record.status !== "running") {
clearTimer();
}
};
const flush = (record: UpdateRunRecord | undefined) => {
renderRecord(record);
stop();
};
const poll = () => {
timer = undefined;
const record = read();
renderRecord(record);
if (record?.status === "running") {
// The CLI owns this poll only for its active operation; fresh-process
// finalization and gateway verification write the same ledger row.
timer = setTimeout(poll, UPDATE_PROGRESS_POLL_MS);
timer.unref?.();
}
};
if (run) {
// Initial observation can throw; publish only once the caller can own cleanup.
poll();
activeUpdateProgress.set(run.runId, flush);
}
const progress: UpdateDisplayProgress = {
onStepStart: (step, record) => {
flush(record ?? read());
const label = currentPhase ? `${currentPhase} — ${step.name}` : step.name;
if (process.stdout.isTTY) {
currentSpinner = spinner({ indicator: "timer" });
currentSpinner.start(theme.accent(label));
} else {
defaultRuntime.log(`${label}...`);
}
},
onStepComplete: (step, record) => {
flush(record ?? read());
printStep(step);
},
};
return {
progress,
stop,
suspend: () => {
if (observation === "active") {
observation = "suspended";
currentPhase = undefined;
clearTimer();
stop();
}
},
resume: () => {
if (observation === "suspended") {
observation = "active";
poll();
}
},
dispose: () => {
try {
renderRecord(read());
} finally {
observation = "disposed";
clearTimer();
if (run && activeUpdateProgress.get(run.runId) === flush) {
activeUpdateProgress.delete(run.runId);
}
stop();
}
},
};
}
type DisplayStep = Pick<
UpdateStepResult,
| "name"
| "durationMs"
| "exitCode"
| "advisory"
| "stdoutTail"
| "stderrTail"
| "termination"
| "signal"
| "failureFacts"
>;
function printStep(step: DisplayStep): void {
const duration = theme.muted(`(${formatDurationPrecise(step.durationMs)})`);
const termination =
step.termination === "timeout" || step.termination === "no-output-timeout"
? " — timed out"
: step.signal
? ` — interrupted (${step.signal})`
: "";
defaultRuntime.log(` ${formatStepStatus(step)} ${step.name}${termination} ${duration}`);
if (step.advisory === undefined && step.exitCode === 0) {
return;
}
if (!step.advisory && step.failureFacts?.length) {
for (const fact of step.failureFacts) {
defaultRuntime.log(` ${theme.error(formatUpdateFailureFact(fact))}`);
}
}
// Build tools often report failures on stdout. Keep the final diagnostic from
// each stream, so npm's stderr footer cannot hide the actual build error.
const color = step.advisory !== undefined ? theme.warn : theme.error;
if (step.advisory) {
defaultRuntime.log(` ${color(step.advisory.message)}`);
}
const tails = step.advisory
? [step.stdoutTail, step.stderrTail]
: updateStepDiagnostics(step).tails;
for (const output of tails) {
for (const line of (output ?? "").trimEnd().split("\n").slice(-10)) {
if (line.trim()) {
defaultRuntime.log(` ${color(line)}`);
}
}
}
}
function formatStepStatus(step: {
exitCode: number | null;
advisory?: UpdateStepAdvisory;
}): string {
if (step.advisory !== undefined) {
return theme.warn("!");
}
if (step.exitCode === 0) {
return theme.success("\u2713");
}
if (step.exitCode === null) {
return theme.warn("?");
}
return theme.error("\u2717");
}
export function printResult(
result: UpdateRunResult,
opts: UpdateCommandOptions,
reportHints: { doctorHint?: string | null; nextAction?: string } = {},
): void {
const run = result.runId ? getUpdateRun(result.runId, { env: opts.run?.env }) : undefined;
if (opts.json) {
defaultRuntime.writeJson({ ...result, ...(run ? { run } : {}) });
return;
}
if (result.runId) {
activeUpdateProgress.get(result.runId)?.(run);
}
const report = renderUpdateRunReport(run ?? updateRunReportInputFromResult(result), reportHints);
defaultRuntime.log("");
defaultRuntime.log(theme.heading(report.headline));
for (const line of report.lines) {
defaultRuntime.log(line);
}
}
|