import { readdir, readFile, rm, stat } from "node:fs/promises" import { join } from "node:path" const EMPTY_STORE_MAX_BYTES = 128 const DRAFT_RETENTION_MS = 30 * 24 * 60 * 60 * 1000 const DRAFT_KEEP_RECENT = 100 type StoreKind = "draft" | "workspace" type StoreCandidate = { name: string path: string kind: StoreKind modified: number empty: boolean } export async function cleanupStoreFiles(userDataPath: string, now = Date.now()) { const entries = await readdir(userDataPath, { withFileTypes: true }).catch(() => []) const candidates = ( await Promise.all( entries .filter((entry) => entry.isFile()) .map(async (entry) => { const kind = storeKind(entry.name) if (!kind) return const file = join(userDataPath, entry.name) const stats = await stat(file).catch(() => undefined) if (!stats?.isFile()) return return { name: entry.name, path: file, kind, modified: stats.mtimeMs, empty: await isEmptyStore(file, stats.size), } }), ) ).filter((candidate) => !!candidate) const stale = new Set() for (const candidate of candidates) { if (candidate.empty) stale.add(candidate) if (candidate.kind === "draft" && now - candidate.modified > DRAFT_RETENTION_MS) stale.add(candidate) } candidates .filter((candidate) => candidate.kind === "draft" && !candidate.empty) .sort((a, b) => b.modified - a.modified) .slice(DRAFT_KEEP_RECENT) .forEach((candidate) => stale.add(candidate)) const deleted = await Promise.all( [...stale].map(async (candidate) => { await rm(candidate.path, { force: true }) return candidate.name }), ) return { scanned: candidates.length, deleted } } export async function deleteStoreFileIfEmpty(userDataPath: string, name: string) { if (!storeKind(name)) return false const file = join(userDataPath, name) const stats = await stat(file).catch(() => undefined) if (!stats?.isFile()) return false if (!(await isEmptyStore(file, stats.size))) return false await rm(file, { force: true }) return true } function storeKind(name: string): StoreKind | undefined { if (/^opencode\.draft\..+\.dat$/.test(name)) return "draft" if (/^opencode\.workspace\..+\.dat$/.test(name)) return "workspace" } async function isEmptyStore(file: string, size: number) { if (size > EMPTY_STORE_MAX_BYTES) return false const raw = await readFile(file, "utf8").catch(() => undefined) if (raw === undefined) return false if (raw.trim() === "") return true try { const parsed = JSON.parse(raw) as unknown return typeof parsed === "object" && parsed !== null && !Array.isArray(parsed) && Object.keys(parsed).length === 0 } catch { return false } }