mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-29 17:33:35 +00:00
179 lines
6.4 KiB
TypeScript
179 lines
6.4 KiB
TypeScript
import { Database } from "bun:sqlite"
|
|
import { drizzle } from "drizzle-orm/bun-sqlite"
|
|
import { Context, Effect, Fiber, Layer, Scope, Semaphore, Stream } from "effect"
|
|
import { identity } from "effect/Function"
|
|
import { Reactivity } from "effect/unstable/reactivity"
|
|
import { SqlClient, Statement } from "effect/unstable/sql"
|
|
import type { Connection } from "effect/unstable/sql/SqlConnection"
|
|
import { classifySqliteError, SqlError } from "effect/unstable/sql/SqlError"
|
|
import { Sqlite } from "./sqlite"
|
|
|
|
const ATTR_DB_SYSTEM_NAME = "db.system.name"
|
|
|
|
const TypeId = "~@opencode-ai/core/database/SqliteBun" as const
|
|
type TypeId = typeof TypeId
|
|
|
|
interface SqliteClient extends SqlClient.SqlClient {
|
|
readonly [TypeId]: TypeId
|
|
readonly config: Config
|
|
readonly export: Effect.Effect<Uint8Array, SqlError>
|
|
readonly loadExtension: (path: string) => Effect.Effect<void, SqlError>
|
|
readonly updateValues: never
|
|
}
|
|
|
|
interface Config {
|
|
readonly filename: string
|
|
readonly readonly?: boolean
|
|
readonly create?: boolean
|
|
readonly readwrite?: boolean
|
|
readonly disableWAL?: boolean
|
|
readonly spanAttributes?: Record<string, unknown>
|
|
readonly transformResultNames?: (str: string) => string
|
|
readonly transformQueryNames?: (str: string) => string
|
|
}
|
|
|
|
interface SqliteConnection extends Connection {
|
|
readonly export: Effect.Effect<Uint8Array, SqlError>
|
|
readonly loadExtension: (path: string) => Effect.Effect<void, SqlError>
|
|
}
|
|
|
|
const make = (options: Config) =>
|
|
Effect.gen(function* () {
|
|
const native = (yield* Sqlite.Native) as Database
|
|
|
|
const compiler = Statement.makeCompilerSqlite(options.transformQueryNames)
|
|
const transformRows = options.transformResultNames
|
|
? Statement.defaultTransforms(options.transformResultNames).array
|
|
: undefined
|
|
|
|
const run = (query: string, params: ReadonlyArray<unknown> = []) =>
|
|
Effect.withFiber<Array<Record<string, unknown>>, SqlError>((fiber) => {
|
|
const statement = native.query(query)
|
|
// @ts-ignore bun-types missing safeIntegers method, fixed in https://github.com/oven-sh/bun/pull/26627
|
|
statement.safeIntegers(Context.get(fiber.context, SqlClient.SafeIntegers))
|
|
try {
|
|
return Effect.succeed((statement.all(...(params as any)) ?? []) as Array<Record<string, unknown>>)
|
|
} catch (cause) {
|
|
return Effect.fail(
|
|
new SqlError({
|
|
reason: classifySqliteError(cause, { message: "Failed to execute statement", operation: "execute" }),
|
|
}),
|
|
)
|
|
}
|
|
})
|
|
|
|
const runValues = (query: string, params: ReadonlyArray<unknown> = []) =>
|
|
Effect.withFiber<Array<unknown[]>, SqlError>((fiber) => {
|
|
const statement = native.query(query)
|
|
// @ts-ignore bun-types missing safeIntegers method, fixed in https://github.com/oven-sh/bun/pull/26627
|
|
statement.safeIntegers(Context.get(fiber.context, SqlClient.SafeIntegers))
|
|
try {
|
|
return Effect.succeed((statement.values(...(params as any)) ?? []) as Array<unknown[]>)
|
|
} catch (cause) {
|
|
return Effect.fail(
|
|
new SqlError({
|
|
reason: classifySqliteError(cause, { message: "Failed to execute statement", operation: "execute" }),
|
|
}),
|
|
)
|
|
}
|
|
})
|
|
|
|
const connection = identity<SqliteConnection>({
|
|
execute(query, params, transformRows) {
|
|
return transformRows ? Effect.map(run(query, params), transformRows) : run(query, params)
|
|
},
|
|
executeRaw(query, params) {
|
|
return run(query, params)
|
|
},
|
|
executeValues(query, params) {
|
|
return runValues(query, params)
|
|
},
|
|
executeValuesUnprepared(query, params) {
|
|
return runValues(query, params)
|
|
},
|
|
executeUnprepared(query, params, transformRows) {
|
|
return this.execute(query, params, transformRows)
|
|
},
|
|
executeStream() {
|
|
return Stream.die("executeStream not implemented")
|
|
},
|
|
export: Effect.try({
|
|
try: () => native.serialize(),
|
|
catch: (cause) =>
|
|
new SqlError({
|
|
reason: classifySqliteError(cause, { message: "Failed to export database", operation: "export" }),
|
|
}),
|
|
}),
|
|
loadExtension: (path) =>
|
|
Effect.try({
|
|
try: () => native.loadExtension(path),
|
|
catch: (cause) =>
|
|
new SqlError({
|
|
reason: classifySqliteError(cause, { message: "Failed to load extension", operation: "loadExtension" }),
|
|
}),
|
|
}),
|
|
})
|
|
|
|
const semaphore = yield* Semaphore.make(1)
|
|
const acquirer = semaphore.withPermits(1)(Effect.succeed(connection))
|
|
const transactionAcquirer = Effect.uninterruptibleMask((restore) => {
|
|
const fiber = Fiber.getCurrent()!
|
|
const scope = Context.getUnsafe(fiber.context, Scope.Scope)
|
|
return Effect.as(
|
|
Effect.tap(restore(semaphore.take(1)), () => Scope.addFinalizer(scope, semaphore.release(1))),
|
|
connection,
|
|
)
|
|
})
|
|
|
|
const client = Object.assign(
|
|
(yield* SqlClient.make({
|
|
acquirer,
|
|
compiler,
|
|
transactionAcquirer,
|
|
spanAttributes: [
|
|
...(options.spanAttributes ? Object.entries(options.spanAttributes) : []),
|
|
[ATTR_DB_SYSTEM_NAME, "sqlite"],
|
|
],
|
|
transformRows,
|
|
})) as SqliteClient,
|
|
{
|
|
[TypeId]: TypeId,
|
|
config: options,
|
|
export: Effect.flatMap(acquirer, (_) => _.export),
|
|
loadExtension: (path: string) => Effect.flatMap(acquirer, (_) => _.loadExtension(path)),
|
|
},
|
|
)
|
|
|
|
return client
|
|
})
|
|
|
|
const nativeLayer = (config: Config) =>
|
|
Layer.effect(
|
|
Sqlite.Native,
|
|
Effect.gen(function* () {
|
|
const native = new Database(config.filename, {
|
|
readonly: config.readonly,
|
|
readwrite: config.readwrite ?? true,
|
|
create: config.create ?? true,
|
|
})
|
|
yield* Effect.addFinalizer(() => Effect.sync(() => native.close()))
|
|
if (config.disableWAL !== true) native.run("PRAGMA journal_mode = WAL;")
|
|
return native
|
|
}),
|
|
)
|
|
|
|
const sqliteLayer = (config: Config) => Layer.effect(SqlClient.SqlClient, make(config))
|
|
|
|
const drizzleLayer = Layer.effect(
|
|
Sqlite.Drizzle,
|
|
Effect.gen(function* () {
|
|
return drizzle({ client: (yield* Sqlite.Native) as Database })
|
|
}),
|
|
)
|
|
|
|
export const layer = (config: Config) => {
|
|
const native = nativeLayer(config)
|
|
return Layer.merge(native, Layer.merge(sqliteLayer(config), drizzleLayer).pipe(Layer.provide(native))).pipe(
|
|
Layer.provide(Reactivity.layer),
|
|
)
|
|
}
|