| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import { Effect, ScopedCache, Scope, ServiceMap } from "effect"
- import { Instance, type InstanceContext } from "@/project/instance"
- import { registerDisposer } from "./instance-registry"
- const TypeId = "~opencode/InstanceState"
- export const InstanceRef = ServiceMap.Reference<InstanceContext | undefined>("~opencode/InstanceRef", {
- defaultValue: () => undefined,
- })
- const context = Effect.gen(function* () {
- const ref = yield* InstanceRef
- return ref ?? Instance.current
- })
- const directory = Effect.gen(function* () {
- const ref = yield* InstanceRef
- return ref ? ref.directory : Instance.directory
- })
- export interface InstanceState<A, E = never, R = never> {
- readonly [TypeId]: typeof TypeId
- readonly cache: ScopedCache.ScopedCache<string, A, E, R>
- }
- export namespace InstanceState {
- export const make = <A, E = never, R = never>(
- init: (ctx: InstanceContext) => Effect.Effect<A, E, R | Scope.Scope>,
- ): Effect.Effect<InstanceState<A, E, Exclude<R, Scope.Scope>>, never, R | Scope.Scope> =>
- Effect.gen(function* () {
- const cache = yield* ScopedCache.make<string, A, E, R>({
- capacity: Number.POSITIVE_INFINITY,
- lookup: () => Effect.gen(function* () { return yield* init(yield* context) }),
- })
- const off = registerDisposer((directory) => Effect.runPromise(ScopedCache.invalidate(cache, directory)))
- yield* Effect.addFinalizer(() => Effect.sync(off))
- return {
- [TypeId]: TypeId,
- cache,
- }
- })
- export const get = <A, E, R>(self: InstanceState<A, E, R>) =>
- Effect.gen(function* () { return yield* ScopedCache.get(self.cache, yield* directory) })
- export const use = <A, E, R, B>(self: InstanceState<A, E, R>, select: (value: A) => B) =>
- Effect.map(get(self), select)
- export const useEffect = <A, E, R, B, E2, R2>(
- self: InstanceState<A, E, R>,
- select: (value: A) => Effect.Effect<B, E2, R2>,
- ) => Effect.flatMap(get(self), select)
- export const has = <A, E, R>(self: InstanceState<A, E, R>) =>
- Effect.gen(function* () { return yield* ScopedCache.has(self.cache, yield* directory) })
- export const invalidate = <A, E, R>(self: InstanceState<A, E, R>) =>
- Effect.gen(function* () { return yield* ScopedCache.invalidate(self.cache, yield* directory) })
- }
|