mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-18 08:31:49 -06:00
430 lines
14 KiB
TypeScript
430 lines
14 KiB
TypeScript
import { spawn } from "node:child_process";
|
|
import process from "node:process";
|
|
import type {
|
|
SessionCatalogSession,
|
|
SessionCatalogTranscriptItem,
|
|
SessionsCatalogReadResult,
|
|
} from "openclaw/plugin-sdk/session-catalog";
|
|
import { sessionCatalogPaging } from "openclaw/plugin-sdk/session-catalog";
|
|
import {
|
|
isRecord,
|
|
normalizeBoundedOptionalString as optionalOpenCodeString,
|
|
} from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
import { truncateUtf16Safe } from "openclaw/plugin-sdk/text-utility-runtime";
|
|
import {
|
|
materializeWindowsSpawnProgram,
|
|
resolveWindowsSpawnProgram,
|
|
} from "openclaw/plugin-sdk/windows-spawn";
|
|
import {
|
|
OPENCODE_SESSION_CATALOG_MAX_PAGE_LIMIT,
|
|
OPENCODE_SESSION_ID_PATTERN,
|
|
} from "./session-catalog-shared.js";
|
|
|
|
const LOCAL_HOST_ID = "gateway";
|
|
const MAX_SEARCH_LENGTH = 500;
|
|
const MAX_CLI_LIST_SESSIONS = 10_000;
|
|
const MAX_CLI_OUTPUT_BYTES = 32 * 1024 * 1024;
|
|
const CLI_TIMEOUT_MS = 30_000;
|
|
const OPENCODE_QUERY_CACHE_TTL_MS = 32_000;
|
|
const OPENCODE_QUERY_CACHE_MAX_ENTRIES = 32;
|
|
const SAFE_ENV_KEYS = [
|
|
"APPDATA",
|
|
"COMSPEC",
|
|
"HOME",
|
|
"LANG",
|
|
"LC_ALL",
|
|
"LOCALAPPDATA",
|
|
"OPENCODE_DB",
|
|
"PATH",
|
|
"Path",
|
|
"PATHEXT",
|
|
"SYSTEMROOT",
|
|
"TEMP",
|
|
"TMP",
|
|
"TMPDIR",
|
|
"USERPROFILE",
|
|
"WINDIR",
|
|
"XDG_CACHE_HOME",
|
|
"XDG_CONFIG_HOME",
|
|
"XDG_DATA_HOME",
|
|
"XDG_STATE_HOME",
|
|
] as const;
|
|
|
|
type OpenCodeQueryCacheEntry = {
|
|
expiresAt: number;
|
|
result: Promise<unknown>;
|
|
resolved?: true;
|
|
};
|
|
|
|
type OpenCodeQueryCacheOptions = {
|
|
configIdentity?: object;
|
|
forceRefresh?: boolean;
|
|
};
|
|
|
|
const openCodeConfigIdentities = new WeakMap<object, number>();
|
|
// Query results are valid for one immutable OpenClaw config identity, CLI environment, and SQL text.
|
|
// Config/env changes or 32s expiry invalidate them; failures are removed so recovery retries at once.
|
|
// The bounded map prevents pagination variants from growing while avoiding a subprocess every poll.
|
|
const openCodeQueryCache = new Map<string, OpenCodeQueryCacheEntry>();
|
|
let nextOpenCodeConfigIdentity = 1;
|
|
|
|
function openCodeQueryCacheKey(query: string, configIdentity: object): string {
|
|
let identity = openCodeConfigIdentities.get(configIdentity);
|
|
if (identity === undefined) {
|
|
identity = nextOpenCodeConfigIdentity++;
|
|
openCodeConfigIdentities.set(configIdentity, identity);
|
|
}
|
|
const environment = SAFE_ENV_KEYS.map((key) => `${key}=${process.env[key] ?? ""}`).join("\0");
|
|
return `${String(identity)}\0${environment}\0${query}`;
|
|
}
|
|
|
|
type OpenCodeSessionPage = {
|
|
sessions: SessionCatalogSession[];
|
|
nextCursor?: string;
|
|
};
|
|
|
|
export const isExactOpenCodeSessionCursor = sessionCatalogPaging.isExactCursor;
|
|
|
|
const OPENCODE_PARAMETER_MESSAGES = {
|
|
listNotObject: "OpenCode session list parameters must be an object",
|
|
unknownListParameter: (key: string) => `unknown OpenCode session list parameter: ${key}`,
|
|
invalidSearchTerm: "searchTerm is invalid",
|
|
readNotObject: "OpenCode session read parameters must be an object",
|
|
unknownReadParameter: (key: string) => `unknown OpenCode session read parameter: ${key}`,
|
|
invalidThreadId: "threadId is invalid",
|
|
};
|
|
|
|
function resolveSpawnInvocation(args: string[]): {
|
|
command: string;
|
|
argv: string[];
|
|
shell?: boolean;
|
|
windowsHide?: boolean;
|
|
} {
|
|
const program = resolveWindowsSpawnProgram({
|
|
command: "opencode",
|
|
platform: process.platform,
|
|
env: process.env,
|
|
execPath: process.execPath,
|
|
packageName: "opencode-ai",
|
|
});
|
|
return materializeWindowsSpawnProgram(program, args);
|
|
}
|
|
|
|
async function runOpenCode(args: string[]): Promise<string> {
|
|
const invocation = resolveSpawnInvocation(args);
|
|
const env: NodeJS.ProcessEnv = { OPENCODE_PURE: "1", NO_COLOR: "1" };
|
|
for (const key of SAFE_ENV_KEYS) {
|
|
if (process.env[key] !== undefined) {
|
|
env[key] = process.env[key];
|
|
}
|
|
}
|
|
const child = spawn(invocation.command, invocation.argv, {
|
|
env,
|
|
shell: invocation.shell,
|
|
windowsHide: invocation.windowsHide,
|
|
stdio: ["ignore", "pipe", "pipe"],
|
|
});
|
|
const stdout: Buffer[] = [];
|
|
const stderr: Buffer[] = [];
|
|
let bytes = 0;
|
|
let overflow = false;
|
|
const timeout = setTimeout(() => child.kill("SIGKILL"), CLI_TIMEOUT_MS);
|
|
timeout.unref?.();
|
|
let outputError: Error | undefined;
|
|
const failFromOutputError = (source: "stdout" | "stderr", error: unknown) => {
|
|
const message = error instanceof Error ? error.message : String(error);
|
|
outputError ??= new Error(`OpenCode ${source} stream failed: ${message}`, { cause: error });
|
|
child.kill("SIGKILL");
|
|
};
|
|
const collect = (target: Buffer[], chunk: Buffer) => {
|
|
bytes += chunk.length;
|
|
if (bytes > MAX_CLI_OUTPUT_BYTES) {
|
|
overflow = true;
|
|
child.kill("SIGKILL");
|
|
return;
|
|
}
|
|
target.push(chunk);
|
|
};
|
|
child.stdout.once("error", (error) => failFromOutputError("stdout", error));
|
|
child.stderr.once("error", (error) => failFromOutputError("stderr", error));
|
|
child.stdout.on("data", (chunk: Buffer) => collect(stdout, chunk));
|
|
child.stderr.on("data", (chunk: Buffer) => collect(stderr, chunk));
|
|
const exitCode = await new Promise<number | null>((resolve, reject) => {
|
|
child.on("error", reject);
|
|
child.on("close", resolve);
|
|
}).finally(() => clearTimeout(timeout));
|
|
if (overflow) {
|
|
throw new Error("OpenCode session output exceeded the safety limit");
|
|
}
|
|
if (outputError) {
|
|
throw outputError;
|
|
}
|
|
if (exitCode !== 0) {
|
|
const detail = Buffer.concat(stderr).toString("utf8").trim();
|
|
throw new Error(detail || `OpenCode exited with code ${String(exitCode)}`);
|
|
}
|
|
return Buffer.concat(stdout).toString("utf8");
|
|
}
|
|
|
|
export async function queryOpenCodeDatabase(query: string): Promise<unknown> {
|
|
const output = await runOpenCode(["--pure", "db", query, "--format", "json"]);
|
|
return output.trim() ? (JSON.parse(output) as unknown) : [];
|
|
}
|
|
|
|
async function queryCachedOpenCodeSessions(
|
|
query: string,
|
|
options: OpenCodeQueryCacheOptions,
|
|
): Promise<unknown> {
|
|
const key = openCodeQueryCacheKey(query, options.configIdentity ?? process.env);
|
|
const cached = openCodeQueryCache.get(key);
|
|
if (options.forceRefresh !== true && cached && cached.expiresAt > Date.now()) {
|
|
openCodeQueryCache.delete(key);
|
|
openCodeQueryCache.set(key, cached);
|
|
return await cached.result;
|
|
}
|
|
if (cached) {
|
|
openCodeQueryCache.delete(key);
|
|
}
|
|
const result = queryOpenCodeDatabase(query);
|
|
const entry: OpenCodeQueryCacheEntry = {
|
|
expiresAt: Date.now() + OPENCODE_QUERY_CACHE_TTL_MS,
|
|
result,
|
|
};
|
|
openCodeQueryCache.set(key, entry);
|
|
while (openCodeQueryCache.size > OPENCODE_QUERY_CACHE_MAX_ENTRIES) {
|
|
const oldest = openCodeQueryCache.keys().next();
|
|
if (oldest.done) {
|
|
break;
|
|
}
|
|
openCodeQueryCache.delete(oldest.value);
|
|
}
|
|
try {
|
|
const value = await result;
|
|
entry.resolved = true;
|
|
return value;
|
|
} catch (error) {
|
|
if (openCodeQueryCache.get(key) === entry) {
|
|
if (cached?.resolved) {
|
|
openCodeQueryCache.set(key, cached);
|
|
} else {
|
|
openCodeQueryCache.delete(key);
|
|
}
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
export async function exportOpenCodeSession(threadId: string): Promise<unknown> {
|
|
const output = await runOpenCode(["--pure", "export", threadId]);
|
|
return JSON.parse(output) as unknown;
|
|
}
|
|
|
|
function parseOpenCodeSession(value: unknown): SessionCatalogSession | undefined {
|
|
if (!isRecord(value)) {
|
|
return undefined;
|
|
}
|
|
const threadId = optionalOpenCodeString(value.id, 256);
|
|
if (!threadId || !OPENCODE_SESSION_ID_PATTERN.test(threadId)) {
|
|
return undefined;
|
|
}
|
|
const name = optionalOpenCodeString(value.title, 1_000);
|
|
const cwd = optionalOpenCodeString(value.directory, 4_096);
|
|
const createdAt =
|
|
typeof value.created === "number" && Number.isFinite(value.created) ? value.created : undefined;
|
|
const updatedAt =
|
|
typeof value.updated === "number" && Number.isFinite(value.updated) ? value.updated : undefined;
|
|
return {
|
|
threadId,
|
|
...(name ? { name } : {}),
|
|
...(cwd ? { cwd } : {}),
|
|
status: "stored",
|
|
...(createdAt !== undefined ? { createdAt } : {}),
|
|
...(updatedAt !== undefined ? { updatedAt, recencyAt: updatedAt } : {}),
|
|
source: "opencode-cli",
|
|
modelProvider: "opencode",
|
|
archived: false,
|
|
canContinue: true,
|
|
canArchive: false,
|
|
};
|
|
}
|
|
|
|
export async function listLocalOpenCodeSessionPage(
|
|
value?: unknown,
|
|
options: OpenCodeQueryCacheOptions = {},
|
|
): Promise<OpenCodeSessionPage> {
|
|
const params = sessionCatalogPaging.parseListParams(value, {
|
|
searchMaxLength: MAX_SEARCH_LENGTH,
|
|
messages: OPENCODE_PARAMETER_MESSAGES,
|
|
});
|
|
const offset = sessionCatalogPaging.decodeCursor(params.cursor);
|
|
const requestedCount = params.searchTerm
|
|
? MAX_CLI_LIST_SESSIONS
|
|
: Math.min(MAX_CLI_LIST_SESSIONS, offset + params.limit + 1);
|
|
const query = [
|
|
"SELECT id, title, time_created AS created, time_updated AS updated,",
|
|
"project_id AS projectId, directory FROM session",
|
|
"WHERE parent_id IS NULL AND time_archived IS NULL",
|
|
`ORDER BY time_updated DESC, id DESC LIMIT ${String(requestedCount)}`,
|
|
].join(" ");
|
|
const parsed = await queryCachedOpenCodeSessions(query, options);
|
|
if (!Array.isArray(parsed) || parsed.length > MAX_CLI_LIST_SESSIONS) {
|
|
throw new Error("OpenCode returned an invalid session list");
|
|
}
|
|
const needle = params.searchTerm?.toLocaleLowerCase();
|
|
const sessions = parsed
|
|
.flatMap((entry) => {
|
|
const session = parseOpenCodeSession(entry);
|
|
return session ? [session] : [];
|
|
})
|
|
.filter((session) => {
|
|
if (!needle) {
|
|
return true;
|
|
}
|
|
return [session.threadId, session.name, session.cwd].some((field) =>
|
|
field?.toLocaleLowerCase().includes(needle),
|
|
);
|
|
});
|
|
const page = sessions.slice(offset, offset + params.limit);
|
|
return {
|
|
sessions: page,
|
|
...(offset + page.length < sessions.length
|
|
? { nextCursor: sessionCatalogPaging.encodeCursor(offset + page.length) }
|
|
: {}),
|
|
};
|
|
}
|
|
|
|
export async function requireLocalOpenCodeSession(
|
|
threadId: string,
|
|
): Promise<SessionCatalogSession> {
|
|
const page = await listLocalOpenCodeSessionPage({
|
|
searchTerm: threadId,
|
|
limit: OPENCODE_SESSION_CATALOG_MAX_PAGE_LIMIT,
|
|
});
|
|
const session = page.sessions.find((candidate) => candidate.threadId === threadId);
|
|
if (!session) {
|
|
throw new Error("OpenCode session is unavailable");
|
|
}
|
|
return session;
|
|
}
|
|
|
|
function jsonText(value: unknown, maxLength = 20_000): string | undefined {
|
|
try {
|
|
const text = JSON.stringify(value);
|
|
return text.length > maxLength ? `${truncateUtf16Safe(text, maxLength)}…` : text;
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
function timestampFromInfo(info: Record<string, unknown>): string | undefined {
|
|
if (!isRecord(info.time) || typeof info.time.created !== "number") {
|
|
return undefined;
|
|
}
|
|
const date = new Date(info.time.created);
|
|
return Number.isNaN(date.getTime()) ? undefined : date.toISOString();
|
|
}
|
|
|
|
function openCodeTranscriptItems(value: unknown): SessionCatalogTranscriptItem[] {
|
|
if (!isRecord(value) || !Array.isArray(value.messages)) {
|
|
throw new Error("OpenCode returned an invalid session export");
|
|
}
|
|
return value.messages.flatMap((message): SessionCatalogTranscriptItem[] => {
|
|
if (!isRecord(message) || !isRecord(message.info) || !Array.isArray(message.parts)) {
|
|
return [];
|
|
}
|
|
const info = message.info;
|
|
const role = info.role;
|
|
const messageId = optionalOpenCodeString(info.id, 256);
|
|
const timestamp = timestampFromInfo(info);
|
|
const modelId =
|
|
role === "assistant"
|
|
? optionalOpenCodeString(info.modelID, 256)
|
|
: isRecord(info.model)
|
|
? optionalOpenCodeString(info.model.modelID, 256)
|
|
: undefined;
|
|
const providerId =
|
|
role === "assistant"
|
|
? optionalOpenCodeString(info.providerID, 256)
|
|
: isRecord(info.model)
|
|
? optionalOpenCodeString(info.model.providerID, 256)
|
|
: undefined;
|
|
const model = providerId && modelId ? `${providerId}/${modelId}` : modelId;
|
|
return message.parts.flatMap((part, partIndex): SessionCatalogTranscriptItem[] => {
|
|
if (!isRecord(part)) {
|
|
return [];
|
|
}
|
|
const id =
|
|
optionalOpenCodeString(part.id, 256) ??
|
|
(messageId ? `${messageId}:${String(partIndex)}` : undefined);
|
|
const common = {
|
|
...(id ? { id } : {}),
|
|
...(timestamp ? { timestamp } : {}),
|
|
...(model ? { model } : {}),
|
|
};
|
|
if (part.type === "text" && typeof part.text === "string") {
|
|
return [
|
|
{ ...common, type: role === "user" ? "userMessage" : "agentMessage", text: part.text },
|
|
];
|
|
}
|
|
if (part.type === "reasoning" && typeof part.text === "string") {
|
|
return [{ ...common, type: "reasoning", text: part.text }];
|
|
}
|
|
if (part.type === "tool") {
|
|
const tool = optionalOpenCodeString(part.tool, 256) ?? "tool";
|
|
const state = isRecord(part.state) ? part.state : undefined;
|
|
const callText = state && "input" in state ? jsonText(state.input) : undefined;
|
|
const resultText =
|
|
state?.status === "completed" && typeof state.output === "string"
|
|
? state.output
|
|
: state?.status === "error" && typeof state.error === "string"
|
|
? state.error
|
|
: undefined;
|
|
return [
|
|
{ ...common, type: "toolCall", text: callText ? `${tool}\n${callText}` : tool },
|
|
...(resultText
|
|
? [
|
|
{
|
|
...common,
|
|
...(id ? { id: `${id}:result` } : {}),
|
|
type: "toolResult" as const,
|
|
text: resultText,
|
|
},
|
|
]
|
|
: []),
|
|
];
|
|
}
|
|
if (part.type === "file") {
|
|
const filename = optionalOpenCodeString(part.filename, 1_000);
|
|
const mime = optionalOpenCodeString(part.mime, 256);
|
|
return [
|
|
{
|
|
...common,
|
|
type: "other",
|
|
text: `[Attachment${filename ? `: ${filename}` : ""}${mime ? ` (${mime})` : ""}]`,
|
|
},
|
|
];
|
|
}
|
|
return [];
|
|
});
|
|
});
|
|
}
|
|
|
|
export async function readLocalOpenCodeTranscriptPage(
|
|
value: unknown,
|
|
): Promise<SessionsCatalogReadResult> {
|
|
const params = sessionCatalogPaging.parseReadParams(value, {
|
|
threadIdMaxLength: 256,
|
|
threadIdPattern: OPENCODE_SESSION_ID_PATTERN,
|
|
messages: OPENCODE_PARAMETER_MESSAGES,
|
|
});
|
|
const offset = sessionCatalogPaging.decodeCursor(params.cursor);
|
|
const items = openCodeTranscriptItems(await exportOpenCodeSession(params.threadId));
|
|
const page = sessionCatalogPaging.boundTranscriptPage(items, params.limit, offset);
|
|
return {
|
|
hostId: LOCAL_HOST_ID,
|
|
label: "Local OpenCode",
|
|
threadId: params.threadId,
|
|
...page,
|
|
};
|
|
}
|