Files
openchamber/packages/vscode/src/opencode-ready.ts
T

86 lines
2.6 KiB
TypeScript
Raw Normal View History

import type { ConnectionStatus, OpenCodeManager } from './opencode';
const API_URL_WAIT_TIMEOUT_MS = 30000;
export async function waitForApiUrl(
manager: OpenCodeManager | undefined,
timeoutMs = API_URL_WAIT_TIMEOUT_MS,
): Promise<string | null> {
if (!manager) {
return null;
}
// Only hand out an API URL once OpenCode has actually passed its readiness
// check. getApiUrl() exposes `server.url` as soon as the process is spawned —
// BEFORE waitForReady confirms it can serve — so URL-presence alone would
// forward requests to a not-yet-ready OpenCode (and to a stale port during a
// workspace-switch restart). Gating on the connected status, which flips only
// after readiness and clears while restarting, mirrors the web proxy's
// isOpenCodeReady hold and closes that pre-ready forwarding window.
const readyUrl = (): string | null => {
if (manager.getStatus() !== 'connected') {
return null;
}
return manager.getApiUrl();
};
const initialUrl = readyUrl();
if (initialUrl) {
return initialUrl;
}
return new Promise((resolve) => {
let settled = false;
let timeoutId: ReturnType<typeof setTimeout> | null = null;
let subscription: { dispose(): void } | null = null;
let disposeAfterSubscribe = false;
const finish = (value: string | null) => {
if (settled) {
return;
}
settled = true;
if (timeoutId) {
clearTimeout(timeoutId);
}
if (subscription) {
subscription.dispose();
} else {
disposeAfterSubscribe = true;
}
resolve(value);
};
const handleStatusChange = (status: ConnectionStatus) => {
// Permanent failure (CLI missing / spawn error) won't recover from holding
// — fail fast instead of burning the full timeout, matching the web gate's
// fast 503 for genuinely-down servers.
if (status === 'error') {
finish(null);
return;
}
const nextUrl = readyUrl();
if (nextUrl) {
finish(nextUrl);
}
};
// onStatusChange invokes the callback synchronously with the current status,
// so this also covers an already-ready/already-errored manager.
subscription = manager.onStatusChange(handleStatusChange);
if (disposeAfterSubscribe) {
subscription.dispose();
return;
}
if (settled) {
return;
}
timeoutId = setTimeout(() => {
// Bounded fallback: hand back whatever URL exists (possibly null) so a
// genuinely-stuck startup surfaces as unavailable rather than hanging.
finish(manager.getApiUrl());
}, timeoutMs);
});
}