mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-21 10:16:03 +00:00
Co-authored-by: Brendan Allan <14191578+Brendonovich@users.noreply.github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Brendan Allan <git@brendonovich.dev>
367 lines
12 KiB
TypeScript
367 lines
12 KiB
TypeScript
import { createRoot, createSignal, getOwner, onCleanup, runWithOwner, type Owner } from "solid-js"
|
|
import { createStore, type SetStoreFunction, type Store } from "solid-js/store"
|
|
import { Persist, persisted } from "@/utils/persist"
|
|
import type { VcsInfo } from "@opencode-ai/sdk/v2/client"
|
|
import {
|
|
DIR_IDLE_TTL_MS,
|
|
MAX_DIR_STORES,
|
|
type ChildOptions,
|
|
type DirState,
|
|
type IconCache,
|
|
type MetaCache,
|
|
type ProjectMeta,
|
|
type State,
|
|
type VcsCache,
|
|
} from "./types"
|
|
import { canDisposeDirectory, pickDirectoriesToEvict } from "./eviction"
|
|
import { useQuery } from "@tanstack/solid-query"
|
|
import { QueryOptionsApi } from "../server-sync"
|
|
import { directoryKey, type DirectoryKey } from "./utils"
|
|
import { NormalizedProviderListResponse } from "@opencode-ai/session-ui/context"
|
|
import type { ServerScope } from "@/utils/server-scope"
|
|
|
|
export function createChildStoreManager(input: {
|
|
owner: Owner
|
|
scope: ServerScope
|
|
persist: typeof persisted
|
|
isBooting: (directory: string) => boolean
|
|
isLoadingSessions: (directory: string) => boolean
|
|
onBootstrap: (directory: string) => void
|
|
onMcp: (directory: string, setStore: SetStoreFunction<State>) => void
|
|
onDispose: (directory: string) => void
|
|
translate: (key: string, vars?: Record<string, string | number>) => string
|
|
queryOptions: QueryOptionsApi
|
|
global: {
|
|
provider: NormalizedProviderListResponse
|
|
}
|
|
}) {
|
|
const children: Record<string, [Store<State>, SetStoreFunction<State>]> = {}
|
|
const vcsCache = new Map<string, VcsCache>()
|
|
const metaCache = new Map<string, MetaCache>()
|
|
const iconCache = new Map<string, IconCache>()
|
|
const lifecycle = new Map<string, DirState>()
|
|
const pins = new Map<string, number>()
|
|
const ownerPins = new WeakMap<object, Set<string>>()
|
|
const disposers = new Map<string, () => void>()
|
|
const mcpDirectories = new Set<string>()
|
|
const mcpToggles = new Map<string, (enabled: boolean) => void>()
|
|
|
|
const markKey = (key: DirectoryKey) => {
|
|
if (!key) return
|
|
lifecycle.set(key, { lastAccessAt: Date.now() })
|
|
runEviction(key)
|
|
}
|
|
|
|
const mark = (directory: string) => {
|
|
const key = directoryKey(directory)
|
|
markKey(key)
|
|
}
|
|
|
|
const pin = (directory: string) => {
|
|
const key = directoryKey(directory)
|
|
if (!key) return
|
|
pins.set(key, (pins.get(key) ?? 0) + 1)
|
|
markKey(key)
|
|
}
|
|
|
|
const unpin = (directory: string) => {
|
|
const key = directoryKey(directory)
|
|
if (!key) return
|
|
const next = (pins.get(key) ?? 0) - 1
|
|
if (next > 0) {
|
|
pins.set(key, next)
|
|
return
|
|
}
|
|
pins.delete(key)
|
|
runEviction()
|
|
}
|
|
|
|
const pinned = (directory: string) => (pins.get(directoryKey(directory)) ?? 0) > 0
|
|
|
|
const pinForOwner = (directory: string) => {
|
|
const current = getOwner()
|
|
if (!current) return
|
|
if (current === input.owner) return
|
|
const key = current as object
|
|
const set = ownerPins.get(key)
|
|
if (set?.has(directory)) return
|
|
if (set) set.add(directory)
|
|
if (!set) ownerPins.set(key, new Set([directory]))
|
|
pin(directory)
|
|
onCleanup(() => {
|
|
const set = ownerPins.get(key)
|
|
if (set) {
|
|
set.delete(directory)
|
|
if (set.size === 0) ownerPins.delete(key)
|
|
}
|
|
unpin(directory)
|
|
})
|
|
}
|
|
|
|
function disposeDirectory(directory: DirectoryKey) {
|
|
const key = directory
|
|
if (
|
|
!canDisposeDirectory({
|
|
directory: key,
|
|
hasStore: !!children[key],
|
|
pinned: pinned(key),
|
|
booting: input.isBooting(key),
|
|
loadingSessions: input.isLoadingSessions(key),
|
|
})
|
|
) {
|
|
return false
|
|
}
|
|
|
|
vcsCache.delete(key)
|
|
metaCache.delete(key)
|
|
iconCache.delete(key)
|
|
lifecycle.delete(key)
|
|
mcpDirectories.delete(key)
|
|
mcpToggles.delete(key)
|
|
const dispose = disposers.get(key)
|
|
if (dispose) {
|
|
dispose()
|
|
disposers.delete(key)
|
|
}
|
|
delete children[key]
|
|
input.onDispose(key)
|
|
return true
|
|
}
|
|
|
|
function runEviction(skip?: string) {
|
|
const stores = Object.keys(children)
|
|
if (stores.length === 0) return
|
|
const list = pickDirectoriesToEvict({
|
|
stores,
|
|
state: lifecycle,
|
|
pins: new Set(stores.filter(pinned)),
|
|
max: MAX_DIR_STORES,
|
|
ttl: DIR_IDLE_TTL_MS,
|
|
now: Date.now(),
|
|
}).filter((directory) => directory !== skip)
|
|
if (list.length === 0) return
|
|
for (const directory of list) {
|
|
if (!disposeDirectory(directoryKey(directory))) continue
|
|
}
|
|
}
|
|
|
|
function ensureChild(directory: string) {
|
|
const key = directoryKey(directory)
|
|
if (!key) console.error("No directory provided")
|
|
if (!children[key]) {
|
|
const vcs = runWithOwner(input.owner, () =>
|
|
input.persist(
|
|
Persist.serverWorkspace(input.scope, directory, "vcs", ["vcs.v1"]),
|
|
createStore({ value: undefined as VcsInfo | undefined }),
|
|
),
|
|
)
|
|
if (!vcs) throw new Error(input.translate("error.childStore.persistedCacheCreateFailed"))
|
|
const vcsStore = vcs[0]
|
|
vcsCache.set(key, { store: vcsStore, setStore: vcs[1], ready: vcs[3] })
|
|
|
|
const meta = runWithOwner(input.owner, () =>
|
|
input.persist(
|
|
Persist.serverWorkspace(input.scope, directory, "project", ["project.v1"]),
|
|
createStore({ value: undefined as ProjectMeta | undefined }),
|
|
),
|
|
)
|
|
if (!meta) throw new Error(input.translate("error.childStore.persistedProjectMetadataCreateFailed"))
|
|
metaCache.set(key, { store: meta[0], setStore: meta[1], ready: meta[3] })
|
|
|
|
const icon = runWithOwner(input.owner, () =>
|
|
input.persist(
|
|
Persist.serverWorkspace(input.scope, directory, "icon", ["icon.v1"]),
|
|
createStore({ value: undefined as string | undefined }),
|
|
),
|
|
)
|
|
if (!icon) throw new Error(input.translate("error.childStore.persistedProjectIconCreateFailed"))
|
|
iconCache.set(key, { store: icon[0], setStore: icon[1], ready: icon[3] })
|
|
|
|
const init = () =>
|
|
createRoot((dispose) => {
|
|
const initialMeta = meta[0].value
|
|
const initialIcon = icon[0].value
|
|
const [mcpEnabled, setMcpEnabled] = createSignal(false)
|
|
|
|
const pathQuery = useQuery(() => input.queryOptions.path(key))
|
|
const mcpQuery = useQuery(() => ({ ...input.queryOptions.mcp(key), enabled: mcpEnabled() }))
|
|
const lspQuery = useQuery(() => input.queryOptions.lsp(key))
|
|
const providerQuery = useQuery(() => input.queryOptions.providers(key))
|
|
const referenceQuery = useQuery(() => input.queryOptions.references(key))
|
|
|
|
const child = createStore<State>({
|
|
project: "",
|
|
projectMeta: initialMeta,
|
|
icon: initialIcon,
|
|
get provider_ready() {
|
|
return !providerQuery.isLoading
|
|
},
|
|
get provider() {
|
|
const EMPTY = { all: new Map(), connected: [], default: {} }
|
|
if (providerQuery.isLoading) return EMPTY
|
|
if (providerQuery.data?.all.size === 0 && input.global.provider.all.size > 0) return input.global.provider
|
|
return providerQuery.data ?? EMPTY
|
|
},
|
|
config: {},
|
|
get path() {
|
|
const EMPTY = { state: "", config: "", worktree: "", directory, home: "" }
|
|
if (pathQuery.isLoading) return EMPTY
|
|
return pathQuery.data ?? EMPTY
|
|
},
|
|
status: "loading" as const,
|
|
agent: [],
|
|
command: [],
|
|
get reference() {
|
|
return referenceQuery.isLoading ? [] : (referenceQuery.data ?? [])
|
|
},
|
|
session: [],
|
|
sessionTotal: 0,
|
|
session_status: {},
|
|
session_working(id: string) {
|
|
const type = this.session_status[id]?.type
|
|
return (type ?? "idle") !== "idle"
|
|
},
|
|
session_diff: {},
|
|
todo: {},
|
|
permission: {},
|
|
question: {},
|
|
get mcp_ready() {
|
|
return !mcpQuery.isLoading
|
|
},
|
|
get mcp() {
|
|
return mcpQuery.isLoading ? {} : (mcpQuery.data ?? {})
|
|
},
|
|
get lsp_ready() {
|
|
return !lspQuery.isLoading
|
|
},
|
|
get lsp() {
|
|
return lspQuery.isLoading ? [] : (lspQuery.data ?? [])
|
|
},
|
|
vcs: vcsStore.value,
|
|
limit: 5,
|
|
message: {},
|
|
part: {},
|
|
part_text_accum_delta: {},
|
|
})
|
|
children[key] = child
|
|
disposers.set(key, dispose)
|
|
mcpToggles.set(key, setMcpEnabled)
|
|
|
|
const onPersistedInit = (init: Promise<string> | string | null, run: () => void) => {
|
|
if (!(init instanceof Promise)) return
|
|
void init.then(() => {
|
|
if (children[key] !== child) return
|
|
run()
|
|
})
|
|
}
|
|
|
|
onPersistedInit(vcs[2], () => {
|
|
const cached = vcsStore.value
|
|
if (!cached?.branch) return
|
|
child[1]("vcs", (value) => value ?? cached)
|
|
})
|
|
|
|
onPersistedInit(meta[2], () => {
|
|
if (child[0].projectMeta !== initialMeta) return
|
|
child[1]("projectMeta", meta[0].value)
|
|
})
|
|
|
|
onPersistedInit(icon[2], () => {
|
|
if (child[0].icon !== initialIcon) return
|
|
child[1]("icon", icon[0].value)
|
|
})
|
|
})
|
|
|
|
runWithOwner(input.owner, init)
|
|
}
|
|
markKey(key)
|
|
const childStore = children[key]
|
|
if (!childStore) throw new Error(input.translate("error.childStore.storeCreateFailed"))
|
|
return childStore
|
|
}
|
|
|
|
function child(directory: string, options: ChildOptions = {}) {
|
|
const key = directoryKey(directory)
|
|
const childStore = ensureChild(directory)
|
|
pinForOwner(key)
|
|
if (options.mcp) enableMcp(directory, key, childStore)
|
|
const shouldBootstrap = options.bootstrap ?? true
|
|
if (shouldBootstrap && childStore[0].status === "loading") {
|
|
input.onBootstrap(directory)
|
|
}
|
|
return childStore
|
|
}
|
|
|
|
function peek(directory: string, options: ChildOptions = {}) {
|
|
const key = directoryKey(directory)
|
|
const childStore = ensureChild(directory)
|
|
if (options.mcp) enableMcp(directory, key, childStore)
|
|
const shouldBootstrap = options.bootstrap ?? true
|
|
if (shouldBootstrap && childStore[0].status === "loading") {
|
|
input.onBootstrap(directory)
|
|
}
|
|
return childStore
|
|
}
|
|
|
|
function enableMcp(directory: string, key: DirectoryKey, childStore: [Store<State>, SetStoreFunction<State>]) {
|
|
if (mcpDirectories.has(key)) return
|
|
mcpDirectories.add(key)
|
|
mcpToggles.get(key)?.(true)
|
|
if (childStore[0].status !== "loading") input.onMcp(directory, childStore[1])
|
|
}
|
|
|
|
function disableMcp(directory: string) {
|
|
const key = directoryKey(directory)
|
|
if (!mcpDirectories.delete(key)) return
|
|
mcpToggles.get(key)?.(false)
|
|
}
|
|
|
|
function projectMeta(directory: string, patch: ProjectMeta) {
|
|
const key = directoryKey(directory)
|
|
const [store, setStore] = ensureChild(directory)
|
|
const cached = metaCache.get(key)
|
|
if (!cached) return
|
|
const previous = store.projectMeta ?? {}
|
|
const icon = patch.icon ? { ...previous.icon, ...patch.icon } : previous.icon
|
|
const commands = patch.commands ? { ...previous.commands, ...patch.commands } : previous.commands
|
|
const next = {
|
|
...previous,
|
|
...patch,
|
|
icon,
|
|
commands,
|
|
}
|
|
cached.setStore("value", next)
|
|
setStore("projectMeta", next)
|
|
}
|
|
|
|
function projectIcon(directory: string, value: string | undefined) {
|
|
const key = directoryKey(directory)
|
|
const [store, setStore] = ensureChild(directory)
|
|
const cached = iconCache.get(key)
|
|
if (!cached) return
|
|
if (store.icon === value) return
|
|
cached.setStore("value", value)
|
|
setStore("icon", value)
|
|
}
|
|
|
|
return {
|
|
children,
|
|
ensureChild,
|
|
child,
|
|
peek,
|
|
projectMeta,
|
|
projectIcon,
|
|
mark,
|
|
pin,
|
|
unpin,
|
|
pinned,
|
|
mcp: (directory: string) => mcpDirectories.has(directoryKey(directory)),
|
|
disableMcp,
|
|
disposeDirectory,
|
|
runEviction,
|
|
vcsCache,
|
|
metaCache,
|
|
iconCache,
|
|
}
|
|
}
|