mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-30 09:53:30 +00:00
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
export * as Database from "./database"
|
|
|
|
import { EffectDrizzleSqlite } from "@opencode-ai/effect-drizzle-sqlite"
|
|
import { sqliteLayer } from "#sqlite"
|
|
import { Context, Effect, Layer, Schema } from "effect"
|
|
import { Global } from "@opencode-ai/util/global"
|
|
import { isAbsolute, join } from "path"
|
|
import { DatabaseMigration } from "./migration"
|
|
import { makeGlobalNode } from "@opencode-ai/util/effect/app-node"
|
|
|
|
const makeDatabase = EffectDrizzleSqlite.makeWithDefaults()
|
|
type DatabaseShape = Effect.Success<typeof makeDatabase>
|
|
|
|
export interface Interface {
|
|
db: DatabaseShape
|
|
}
|
|
|
|
export const Options = Schema.Struct({
|
|
path: Schema.optional(Schema.String),
|
|
})
|
|
export type Options = typeof Options.Type
|
|
|
|
export class Service extends Context.Service<Service, Interface>()("@opencode/v2/storage/Database") {}
|
|
|
|
const databaseLayer = Layer.effect(
|
|
Service,
|
|
Effect.gen(function* () {
|
|
const db = yield* makeDatabase
|
|
|
|
yield* db.run("PRAGMA journal_mode = WAL")
|
|
yield* db.run("PRAGMA synchronous = NORMAL")
|
|
yield* db.run("PRAGMA busy_timeout = 5000")
|
|
yield* db.run("PRAGMA cache_size = -64000")
|
|
yield* db.run("PRAGMA foreign_keys = ON")
|
|
yield* db.run("PRAGMA wal_checkpoint(PASSIVE)")
|
|
yield* DatabaseMigration.apply(db)
|
|
|
|
return { db }
|
|
}).pipe(Effect.orDie),
|
|
)
|
|
|
|
export function layer(options: Options = { path: ":memory:" }) {
|
|
return Layer.suspend(() => {
|
|
const provide = (filename: string) => databaseLayer.pipe(Layer.provide(sqliteLayer({ filename })))
|
|
const filename = options.path ?? ":memory:"
|
|
if (filename === ":memory:" || isAbsolute(filename)) return provide(filename)
|
|
return provide(join(Global.Path.data, filename))
|
|
})
|
|
}
|
|
|
|
export function configured(options?: Options) {
|
|
return makeGlobalNode({ service: Service, layer: layer(options), deps: [] })
|
|
}
|
|
|
|
export const node = configured({ path: ":memory:" })
|