Buckets:
| import { spawn } from "node:child_process" | |
| import { randomUUID } from "node:crypto" | |
| import { createServer } from "node:net" | |
| import { app } from "electron" | |
| import { checkHealth } from "../server" | |
| import { type WslCommandLine, resolveWslOpencode, shellEscape, wslArgs } from "./runtime" | |
| import { pollWslHealth } from "./startup" | |
| export type WslSidecar = { | |
| listener: { stop: () => void; onExit: (cb: (code: number | null, signal: NodeJS.Signals | null) => void) => void } | |
| url: string | |
| username: string | null | |
| password: string | |
| } | |
| export async function spawnWslSidecar( | |
| distro: string, | |
| opts: { onLine?: (line: WslCommandLine) => void; healthTimeoutMs?: number } = {}, | |
| ): Promise<WslSidecar> { | |
| const opencode = await resolveWslOpencode(distro) | |
| if (!opencode) throw new Error(`OpenCode is not installed in ${distro}`) | |
| const port = await allocatePort() | |
| const password = randomUUID() | |
| const username = "opencode" | |
| const script = [ | |
| "set -euo pipefail", | |
| 'cd "$HOME" || cd /', | |
| 'PATH=$(awk -v RS=: -v ORS=: \'$0 !~ /^\\/mnt\\//\' <<<"$PATH" | sed "s/:$//")', | |
| "export PATH", | |
| "export WSLENV=", | |
| "export OPENCODE_EXPERIMENTAL_DISABLE_FILEWATCHER=true", | |
| "export OPENCODE_CLIENT=desktop", | |
| `export OPENCODE_SERVER_USERNAME=${shellEscape(username)}`, | |
| `export OPENCODE_SERVER_PASSWORD=${shellEscape(password)}`, | |
| 'export XDG_STATE_HOME="$HOME/.local/state"', | |
| `exec ${shellEscape(opencode)} --print-logs --log-level ${app.isPackaged ? "WARN" : "INFO"} serve --hostname 0.0.0.0 --port ${port}`, | |
| ].join("\n") | |
| const child = spawn("wsl", wslArgs(["bash", "-se"], distro), { | |
| stdio: ["pipe", "pipe", "pipe"], | |
| windowsHide: true, | |
| }) | |
| child.stdin.end(script) | |
| const recentOutput: string[] = [] | |
| const emit = (line: WslCommandLine) => { | |
| if (!line.text.trim()) return | |
| recentOutput.push(`[${line.stream}] ${line.text}`) | |
| if (recentOutput.length > 12) recentOutput.shift() | |
| opts.onLine?.(line) | |
| } | |
| forwardLines(child.stdout, "stdout", emit) | |
| forwardLines(child.stderr, "stderr", emit) | |
| const exit = new Promise<never>((_, reject) => { | |
| child.once("error", reject) | |
| child.once("exit", (code, signal) => reject(new Error(startupFailure(code, signal, recentOutput)))) | |
| }) | |
| const url = `http://127.0.0.1:${port}` | |
| const startup = new AbortController() | |
| const health = pollWslHealth(() => checkHealth(url, password), startup.signal) | |
| const timeoutMs = opts.healthTimeoutMs ?? 30_000 | |
| let timeout: ReturnType<typeof setTimeout> | |
| const timedOut = new Promise<never>( | |
| (_, reject) => | |
| (timeout = setTimeout( | |
| () => reject(new Error(`Sidecar for ${distro} health check timed out after ${timeoutMs}ms`)), | |
| timeoutMs, | |
| )), | |
| ) | |
| await Promise.race([health, exit, timedOut]) | |
| .catch((error) => { | |
| child.kill() | |
| throw error | |
| }) | |
| .finally(() => { | |
| clearTimeout(timeout) | |
| startup.abort() | |
| }) | |
| return { | |
| listener: { | |
| stop: () => child.kill(), | |
| onExit: (cb) => child.once("exit", cb), | |
| }, | |
| url, | |
| username, | |
| password, | |
| } | |
| } | |
| function allocatePort() { | |
| return new Promise<number>((resolve, reject) => { | |
| const server = createServer() | |
| server.on("error", reject) | |
| server.listen(0, "127.0.0.1", () => { | |
| const address = server.address() | |
| if (typeof address !== "object" || !address) { | |
| server.close() | |
| reject(new Error("Failed to get port")) | |
| return | |
| } | |
| server.close(() => resolve(address.port)) | |
| }) | |
| }) | |
| } | |
| function forwardLines( | |
| stream: NodeJS.ReadableStream, | |
| source: WslCommandLine["stream"], | |
| onLine: (line: WslCommandLine) => void, | |
| ) { | |
| let pending = "" | |
| stream.setEncoding("utf8") | |
| stream.on("data", (chunk: string) => { | |
| pending += chunk | |
| const lines = pending.split(/\r?\n/g) | |
| pending = lines.pop() ?? "" | |
| lines.forEach((text) => onLine({ stream: source, text })) | |
| }) | |
| stream.on("end", () => { | |
| if (pending) onLine({ stream: source, text: pending }) | |
| }) | |
| } | |
| function startupFailure(code: number | null, signal: NodeJS.Signals | null, recentOutput: string[]) { | |
| const suffix = recentOutput.length ? `\n${recentOutput.join("\n")}` : "" | |
| return `WSL server exited before becoming healthy (code=${code ?? "null"} signal=${signal ?? "null"})${suffix}` | |
| } | |
Xet Storage Details
- Size:
- 4.28 kB
- Xet hash:
- c6608c2f27927399e1180a62b3953c2bc68e0bbc2bb9045e571e34555a323a2a
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.