251 lines
8.7 KiB
JavaScript
251 lines
8.7 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || (function () {
|
|
var ownKeys = function(o) {
|
|
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
var ar = [];
|
|
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
return ar;
|
|
};
|
|
return ownKeys(o);
|
|
};
|
|
return function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
})();
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.readRuntimeConfig = readRuntimeConfig;
|
|
exports.runtimeBaseUrl = runtimeBaseUrl;
|
|
exports.checkRuntime = checkRuntime;
|
|
exports.listThreadSummaries = listThreadSummaries;
|
|
exports.listSnapshots = listSnapshots;
|
|
exports.startRuntimeTerminal = startRuntimeTerminal;
|
|
exports.openCodeWhaleTerminal = openCodeWhaleTerminal;
|
|
const http = __importStar(require("node:http"));
|
|
const vscode = __importStar(require("vscode"));
|
|
function readRuntimeConfig() {
|
|
const config = vscode.workspace.getConfiguration("codewhale");
|
|
const commandPath = config.get("commandPath", "codewhale").trim() || "codewhale";
|
|
const host = config.get("runtimeHost", "127.0.0.1").trim() || "127.0.0.1";
|
|
const port = config.get("runtimePort", 7878);
|
|
const token = config.get("runtimeToken", "").trim();
|
|
const interval = config.get("agentViewRefreshIntervalSeconds", 15);
|
|
return {
|
|
commandPath,
|
|
host,
|
|
port,
|
|
token: token.length > 0 ? token : undefined,
|
|
agentViewRefreshIntervalSeconds: clampRefreshInterval(interval),
|
|
};
|
|
}
|
|
function runtimeBaseUrl(config) {
|
|
return `http://${config.host}:${config.port}`;
|
|
}
|
|
async function checkRuntime(config) {
|
|
const baseUrl = runtimeBaseUrl(config);
|
|
const health = await requestJson(`${baseUrl}/health`, config.token);
|
|
if (health.statusCode === 0) {
|
|
return { kind: "offline", baseUrl, detail: "Runtime is not reachable." };
|
|
}
|
|
if (health.statusCode === 401) {
|
|
return { kind: "auth-required", baseUrl, detail: "Runtime requires a token." };
|
|
}
|
|
if (health.statusCode !== 200) {
|
|
return {
|
|
kind: "error",
|
|
baseUrl,
|
|
detail: `Health check returned HTTP ${health.statusCode}.`,
|
|
};
|
|
}
|
|
const info = await requestJson(`${baseUrl}/v1/runtime/info`, config.token);
|
|
if (info.statusCode === 401) {
|
|
return { kind: "auth-required", baseUrl, detail: "Runtime info requires a token." };
|
|
}
|
|
const version = readVersion(info.body);
|
|
return {
|
|
kind: "connected",
|
|
baseUrl,
|
|
detail: version ? `Connected to CodeWhale ${version}.` : "Connected to CodeWhale runtime.",
|
|
version,
|
|
};
|
|
}
|
|
async function listThreadSummaries(config, limit = 8) {
|
|
const baseUrl = runtimeBaseUrl(config);
|
|
const response = await requestJson(`${baseUrl}/v1/threads/summary?limit=${encodeURIComponent(String(limit))}`, config.token);
|
|
if (response.statusCode === 401) {
|
|
throw new Error("Thread summaries require the runtime bearer token.");
|
|
}
|
|
if (response.statusCode !== 200) {
|
|
throw new Error(`Thread summary returned HTTP ${response.statusCode}.`);
|
|
}
|
|
return readThreadSummaries(response.body);
|
|
}
|
|
async function listSnapshots(config, limit = 8) {
|
|
const baseUrl = runtimeBaseUrl(config);
|
|
const response = await requestJson(`${baseUrl}/v1/snapshots?limit=${encodeURIComponent(String(limit))}`, config.token);
|
|
if (response.statusCode === 401) {
|
|
throw new Error("Restore points require the runtime bearer token.");
|
|
}
|
|
if (response.statusCode !== 200) {
|
|
throw new Error(`Restore points returned HTTP ${response.statusCode}.`);
|
|
}
|
|
return readSnapshots(response.body);
|
|
}
|
|
function startRuntimeTerminal(config) {
|
|
const terminal = vscode.window.createTerminal("CodeWhale Runtime");
|
|
const args = [
|
|
"serve",
|
|
"--http",
|
|
"--host",
|
|
shellQuote(config.host),
|
|
"--port",
|
|
String(config.port),
|
|
];
|
|
if (config.token) {
|
|
args.push("--auth-token", shellQuote(config.token));
|
|
}
|
|
terminal.sendText(`${shellQuote(config.commandPath)} ${args.join(" ")}`);
|
|
terminal.show();
|
|
return terminal;
|
|
}
|
|
function openCodeWhaleTerminal(config) {
|
|
const terminal = vscode.window.createTerminal("CodeWhale");
|
|
terminal.sendText(shellQuote(config.commandPath));
|
|
terminal.show();
|
|
return terminal;
|
|
}
|
|
async function requestJson(url, token) {
|
|
try {
|
|
return await new Promise((resolve, reject) => {
|
|
const request = http.get(url, {
|
|
timeout: 2500,
|
|
headers: token ? { Authorization: `Bearer ${token}` } : undefined,
|
|
}, (response) => {
|
|
let body = "";
|
|
response.setEncoding("utf8");
|
|
response.on("data", (chunk) => {
|
|
body += chunk;
|
|
});
|
|
response.on("end", () => {
|
|
resolve({
|
|
statusCode: response.statusCode ?? 0,
|
|
body: parseJson(body),
|
|
});
|
|
});
|
|
});
|
|
request.on("timeout", () => {
|
|
request.destroy(new Error("Runtime check timed out."));
|
|
});
|
|
request.on("error", reject);
|
|
});
|
|
}
|
|
catch (error) {
|
|
const detail = error instanceof Error ? error.message : String(error);
|
|
return { statusCode: 0, body: { error: detail } };
|
|
}
|
|
}
|
|
function parseJson(raw) {
|
|
try {
|
|
return JSON.parse(raw);
|
|
}
|
|
catch {
|
|
return undefined;
|
|
}
|
|
}
|
|
function readVersion(value) {
|
|
if (!value || typeof value !== "object") {
|
|
return undefined;
|
|
}
|
|
const version = value.version;
|
|
return typeof version === "string" ? version : undefined;
|
|
}
|
|
function readThreadSummaries(value) {
|
|
if (!Array.isArray(value)) {
|
|
return [];
|
|
}
|
|
return value.flatMap((item) => {
|
|
if (!item || typeof item !== "object") {
|
|
return [];
|
|
}
|
|
const record = item;
|
|
const id = readString(record.id);
|
|
if (!id) {
|
|
return [];
|
|
}
|
|
return [
|
|
{
|
|
id,
|
|
title: readString(record.title) ?? "New Thread",
|
|
preview: readString(record.preview) ?? "",
|
|
model: readString(record.model) ?? "unknown",
|
|
mode: readString(record.mode) ?? "agent",
|
|
workspace: readString(record.workspace),
|
|
branch: readString(record.branch),
|
|
head: readString(record.head),
|
|
dirty: readBoolean(record.dirty),
|
|
archived: record.archived === true,
|
|
updatedAt: readString(record.updated_at) ?? "",
|
|
latestTurnStatus: readString(record.latest_turn_status),
|
|
},
|
|
];
|
|
});
|
|
}
|
|
function readSnapshots(value) {
|
|
if (!Array.isArray(value)) {
|
|
return [];
|
|
}
|
|
return value.flatMap((item) => {
|
|
if (!item || typeof item !== "object") {
|
|
return [];
|
|
}
|
|
const record = item;
|
|
const id = readString(record.id);
|
|
const label = readString(record.label);
|
|
const timestamp = readNumber(record.timestamp);
|
|
if (!id || !label || timestamp === undefined) {
|
|
return [];
|
|
}
|
|
return [{ id, label, timestamp }];
|
|
});
|
|
}
|
|
function readString(value) {
|
|
return typeof value === "string" ? value : undefined;
|
|
}
|
|
function readNumber(value) {
|
|
return typeof value === "number" && Number.isFinite(value) ? value : undefined;
|
|
}
|
|
function readBoolean(value) {
|
|
return value === true;
|
|
}
|
|
function clampRefreshInterval(value) {
|
|
if (!Number.isFinite(value)) {
|
|
return 15;
|
|
}
|
|
return Math.max(0, Math.min(300, Math.floor(value)));
|
|
}
|
|
function shellQuote(value) {
|
|
if (/^[A-Za-z0-9_./:=+-]+$/.test(value)) {
|
|
return value;
|
|
}
|
|
return `'${value.replace(/'/g, "'\\''")}'`;
|
|
}
|
|
//# sourceMappingURL=runtime.js.map
|