@orkestrel/database 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -35
- package/dist/src/browser/index.d.ts +92 -79
- package/dist/src/browser/index.js +357 -220
- package/dist/src/browser/index.js.map +1 -1
- package/dist/src/core/index.cjs +1796 -803
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +545 -706
- package/dist/src/core/index.d.ts +545 -706
- package/dist/src/core/index.js +1775 -790
- package/dist/src/core/index.js.map +1 -1
- package/dist/src/server/index.cjs +1508 -757
- package/dist/src/server/index.cjs.map +1 -1
- package/dist/src/server/index.d.cts +443 -569
- package/dist/src/server/index.d.ts +443 -569
- package/dist/src/server/index.js +1492 -741
- package/dist/src/server/index.js.map +1 -1
- package/package.json +9 -10
package/dist/src/server/index.js
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import { DatabaseError, MemoryDriver,
|
|
2
|
-
import { isBoolean, isFiniteNumber, isRecord, isString } from "@orkestrel/contract";
|
|
3
|
-
import { randomUUID } from "node:crypto";
|
|
1
|
+
import { DatabaseError, MemoryDriver, applyQuery, bindRowKey, checkAbort, cloneDriverMetadata, cloneMigrationInput, computeAggregate, equalsValue, extractKey, filterRows, isDatabaseError, isKey, matchesQuery, migrateRows, normalizeDriverSchema, planMigration, projectMigrationSchema, validatePage } from "../core/index.js";
|
|
2
|
+
import { cloneJSONValue, isBoolean, isFiniteNumber, isRecord, isString } from "@orkestrel/contract";
|
|
4
3
|
import { mkdir, readFile, rename, rm, writeFile } from "node:fs/promises";
|
|
5
4
|
import { dirname } from "node:path";
|
|
6
5
|
import { createSQLiteDatabase, isSQLiteError } from "@orkestrel/sqlite";
|
|
7
6
|
//#region src/server/constants.ts
|
|
8
7
|
/**
|
|
9
|
-
* The declared {@link
|
|
8
|
+
* The declared {@link ColumnStorage}s whose SQL EQUALITY comparisons (`equals` /
|
|
10
9
|
* `not` / `any` / `none`) and `starts` / `ends` compiles are provably
|
|
11
10
|
* engine-exact under declared-type trust — `text` / `integer` / `real` /
|
|
12
11
|
* `boolean`; a `json` or `blob` column always refines instead.
|
|
@@ -21,68 +20,47 @@ import { createSQLiteDatabase, isSQLiteError } from "@orkestrel/sqlite";
|
|
|
21
20
|
* compares UTF-16 CODE-UNIT order. The two orders diverge for supplementary-
|
|
22
21
|
* plane characters (code points ≥ U+10000, e.g. many emoji): a lead surrogate
|
|
23
22
|
* (`\uD800`–`\uDBFF`) sorts BELOW ``–`` in code-unit order, while
|
|
24
|
-
* its code point sorts ABOVE them. So `
|
|
25
|
-
* `
|
|
26
|
-
* future opt-in "trusted collation" mode (the caller vouches the column's
|
|
27
|
-
* values are BMP-only, or a custom SQLite collation matching `compareValues`
|
|
28
|
-
* is registered) could restore native text ranges/ordering.
|
|
23
|
+
* its code point sorts ABOVE them. So `matchesConditionExactly`'s range family and
|
|
24
|
+
* `matchesOrderExactly` exclude `text`, refining through the core engine instead.
|
|
29
25
|
*/
|
|
30
|
-
var
|
|
26
|
+
var EXACT_COLUMN_STORAGE = Object.freeze([
|
|
31
27
|
"text",
|
|
32
28
|
"integer",
|
|
33
29
|
"real",
|
|
34
30
|
"boolean"
|
|
35
31
|
]);
|
|
36
32
|
/**
|
|
37
|
-
* The declared {@link
|
|
33
|
+
* The declared {@link ColumnStorage}s whose SQL RANGE comparisons
|
|
38
34
|
* (`above` / `below` / `from` / `to` / `between`) and `ORDER BY` compiles are
|
|
39
35
|
* provably engine-exact — `integer` / `real` / `boolean` only. `text` is
|
|
40
|
-
* excluded: see {@link
|
|
36
|
+
* excluded: see {@link EXACT_COLUMN_STORAGE}'s remarks for the BINARY-collation
|
|
41
37
|
* (code-point) vs. JS `<` (code-unit) divergence on supplementary-plane
|
|
42
38
|
* characters.
|
|
43
39
|
*/
|
|
44
|
-
var
|
|
40
|
+
var EXACT_RANGE_COLUMN_STORAGE = Object.freeze([
|
|
45
41
|
"integer",
|
|
46
42
|
"real",
|
|
47
43
|
"boolean"
|
|
48
44
|
]);
|
|
49
45
|
/**
|
|
50
46
|
* The reserved metadata table the {@link SQLiteDriver} creates on `open` to
|
|
51
|
-
* persist its stamped `
|
|
52
|
-
* SQLite realization of the `
|
|
47
|
+
* persist its stamped `DriverMetadata` (`version` + declared schema JSON) — the
|
|
48
|
+
* SQLite realization of the `metadata` / `stamp` driver hooks.
|
|
53
49
|
*
|
|
54
50
|
* @remarks
|
|
55
|
-
* A single-row table (`id = 1`). A user table named `
|
|
51
|
+
* A single-row table (`id = 1`). A user table named `_metadata` collides with the
|
|
56
52
|
* reservation — the caller's concern to avoid, documented on the driver class.
|
|
57
53
|
*/
|
|
58
|
-
var
|
|
54
|
+
var METADATA_TABLE = "_metadata";
|
|
59
55
|
//#endregion
|
|
60
56
|
//#region src/server/helpers.ts
|
|
61
57
|
/**
|
|
62
|
-
* Generate a fresh unique key — a v4 UUID string, backed by `node:crypto`.
|
|
63
|
-
*
|
|
64
|
-
* @remarks
|
|
65
|
-
* Supply this as {@link import('@orkestrel/database').DatabaseOptions.key} so a table mints
|
|
66
|
-
* a key when a written row lacks its primary-key value. Strings work as keys on
|
|
67
|
-
* every backend; supply your own key values directly to use numeric keys instead.
|
|
68
|
-
*
|
|
69
|
-
* @returns A new UUID string
|
|
70
|
-
*
|
|
71
|
-
* @example
|
|
72
|
-
* ```ts
|
|
73
|
-
* const db = createDatabase({ driver, tables, key: generateKey })
|
|
74
|
-
* ```
|
|
75
|
-
*/
|
|
76
|
-
function generateKey() {
|
|
77
|
-
return randomUUID();
|
|
78
|
-
}
|
|
79
|
-
/**
|
|
80
58
|
* Whether a value's runtime type matches a column's declared exact type —
|
|
81
59
|
* the operand side of the declared-type-trust proof.
|
|
82
60
|
*
|
|
83
61
|
* @remarks
|
|
84
62
|
* `text` ↔ string, `integer` / `real` ↔ FINITE number (`NaN` / `±Infinity`
|
|
85
|
-
* fail), `boolean` ↔ boolean. Backs {@link
|
|
63
|
+
* fail), `boolean` ↔ boolean. Backs {@link matchesConditionExactly}'s operand checks.
|
|
86
64
|
*
|
|
87
65
|
* @param value - The condition operand to test
|
|
88
66
|
* @param type - The column's declared portable type
|
|
@@ -94,9 +72,9 @@ function generateKey() {
|
|
|
94
72
|
* matchesDeclaredType(Number.NaN, 'integer') // false — only finite numbers
|
|
95
73
|
* ```
|
|
96
74
|
*/
|
|
97
|
-
function
|
|
98
|
-
if (
|
|
99
|
-
if (
|
|
75
|
+
function matchesDeclaredStorage(value, storage) {
|
|
76
|
+
if (storage === "text") return isString(value);
|
|
77
|
+
if (storage === "boolean") return isBoolean(value);
|
|
100
78
|
return isFiniteNumber(value);
|
|
101
79
|
}
|
|
102
80
|
/**
|
|
@@ -105,28 +83,26 @@ function matchesDeclaredType(value, type) {
|
|
|
105
83
|
* type can store.
|
|
106
84
|
*
|
|
107
85
|
* @remarks
|
|
108
|
-
* `false` for a nested `FieldPath` (an array)
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
* `
|
|
116
|
-
*
|
|
117
|
-
* decoded-rows truth). `above` / `below` / `from` / `to` / `between` are exact
|
|
118
|
-
* ONLY for a declared type in {@link EXACT_RANGE_COLUMN_TYPES} (`integer` /
|
|
86
|
+
* `false` for a nested `FieldPath` (an array) or a column absent from `schema`.
|
|
87
|
+
* `absent` / `present` are exact unless a column is both optional and nullable.
|
|
88
|
+
* In that combined case the storage sentinel for explicit `null` is not SQL
|
|
89
|
+
* `NULL`, while the core treats both absence and explicit `null` as absent.
|
|
90
|
+
* Every scalar operator refines when the column is optional
|
|
91
|
+
* OR nullable, because SQL null semantics and the core total order differ.
|
|
92
|
+
* Required non-null `equals` / `not` require an operand matching the declared
|
|
93
|
+
* storage and exclude `json` / `blob`. `above` / `below` / `from` / `to` /
|
|
94
|
+
* `between` are exact only for {@link EXACT_RANGE_COLUMN_STORAGE} (`integer` /
|
|
119
95
|
* `real` / `boolean`) — a `text` column's range conditions REFINE, because
|
|
120
96
|
* SQLite's default BINARY collation orders TEXT by Unicode CODE POINT while
|
|
121
97
|
* the core engine's `compareValues` orders JS strings by UTF-16 CODE UNIT,
|
|
122
98
|
* and the two diverge for supplementary-plane characters (see
|
|
123
|
-
* {@link
|
|
99
|
+
* {@link EXACT_COLUMN_STORAGE}'s remarks for the full rationale).
|
|
124
100
|
* `any` / `none` require a NON-EMPTY list where every element matches (an empty
|
|
125
101
|
* list is exact under neither: the engine's `any([])` matches nothing while
|
|
126
102
|
* `none([])` matches everything, and SQL `IN ()` is a syntax error) — these
|
|
127
103
|
* stay exact on `text` (byte equality is collation-independent and engine-
|
|
128
104
|
* identical). `starts` / `ends` are exact only on a `text` column with a
|
|
129
|
-
* string operand (case-sensitive `substr` compile, see {@link
|
|
105
|
+
* string operand (case-sensitive `substr` compile, see {@link compileConditionSQL}) —
|
|
130
106
|
* likewise collation-independent. `like` / `glob` are NEVER exact — SQLite
|
|
131
107
|
* `LIKE` folds case ASCII-only against the engine's Unicode fold, and `GLOB`
|
|
132
108
|
* has character classes the engine treats literally.
|
|
@@ -135,26 +111,27 @@ function matchesDeclaredType(value, type) {
|
|
|
135
111
|
* @param schema - The table's schema
|
|
136
112
|
* @returns Whether `condition` is exact
|
|
137
113
|
*/
|
|
138
|
-
function
|
|
114
|
+
function matchesConditionExactly(condition, schema) {
|
|
139
115
|
if (!isString(condition.column)) return false;
|
|
140
116
|
const column = schema.columns.find((candidate) => candidate.name === condition.column);
|
|
141
117
|
if (column === void 0) return false;
|
|
142
|
-
if (condition.operator === "absent" || condition.operator === "present") return
|
|
143
|
-
if (
|
|
118
|
+
if (condition.operator === "absent" || condition.operator === "present") return !(column.optional && column.nullable);
|
|
119
|
+
if (column.optional || column.nullable) return false;
|
|
120
|
+
if (!EXACT_COLUMN_STORAGE.some((storage) => storage === column.storage)) return false;
|
|
144
121
|
const first = condition.values[0];
|
|
145
122
|
const second = condition.values[1];
|
|
146
123
|
switch (condition.operator) {
|
|
147
124
|
case "equals":
|
|
148
|
-
case "not": return
|
|
125
|
+
case "not": return matchesDeclaredStorage(first, column.storage);
|
|
149
126
|
case "above":
|
|
150
127
|
case "below":
|
|
151
128
|
case "from":
|
|
152
|
-
case "to": return
|
|
153
|
-
case "between": return
|
|
129
|
+
case "to": return EXACT_RANGE_COLUMN_STORAGE.some((storage) => storage === column.storage) && matchesDeclaredStorage(first, column.storage);
|
|
130
|
+
case "between": return EXACT_RANGE_COLUMN_STORAGE.some((storage) => storage === column.storage) && matchesDeclaredStorage(first, column.storage) && matchesDeclaredStorage(second, column.storage);
|
|
154
131
|
case "any":
|
|
155
|
-
case "none": return condition.values.length > 0 && condition.values.every((value) =>
|
|
132
|
+
case "none": return condition.values.length > 0 && condition.values.every((value) => matchesDeclaredStorage(value, column.storage));
|
|
156
133
|
case "starts":
|
|
157
|
-
case "ends": return column.
|
|
134
|
+
case "ends": return column.storage === "text" && isString(first);
|
|
158
135
|
case "like":
|
|
159
136
|
case "glob": return false;
|
|
160
137
|
}
|
|
@@ -165,65 +142,71 @@ function isExactCondition(condition, schema) {
|
|
|
165
142
|
*
|
|
166
143
|
* @remarks
|
|
167
144
|
* `false` for a nested `FieldPath`, a column absent from `schema`, or a
|
|
168
|
-
* declared type outside {@link
|
|
145
|
+
* declared type outside {@link EXACT_RANGE_COLUMN_STORAGE} (`integer` / `real` /
|
|
169
146
|
* `boolean`). `text` is NOT exact here: SQLite's default BINARY collation
|
|
170
147
|
* orders TEXT by Unicode code point while the core engine's `compareValues`
|
|
171
148
|
* orders JS strings by UTF-16 code unit, and the two diverge for
|
|
172
|
-
* supplementary-plane characters (see {@link
|
|
149
|
+
* supplementary-plane characters (see {@link EXACT_COLUMN_STORAGE}'s remarks) —
|
|
173
150
|
* a `text` order term REFINES through the core engine instead.
|
|
174
151
|
*
|
|
175
152
|
* @param order - The order term to test
|
|
176
153
|
* @param schema - The table's schema
|
|
177
154
|
* @returns Whether `order` is exact
|
|
178
155
|
*/
|
|
179
|
-
function
|
|
156
|
+
function matchesOrderExactly(order, schema) {
|
|
180
157
|
if (!isString(order.column)) return false;
|
|
181
158
|
const column = schema.columns.find((candidate) => candidate.name === order.column);
|
|
182
159
|
if (column === void 0) return false;
|
|
183
|
-
return
|
|
160
|
+
return !column.optional && !column.nullable && EXACT_RANGE_COLUMN_STORAGE.some((storage) => storage === column.storage);
|
|
184
161
|
}
|
|
185
162
|
/**
|
|
186
|
-
* Whether a whole {@link
|
|
163
|
+
* Whether a whole {@link QueryInput} is exact — every condition and every order
|
|
187
164
|
* term is exact. `limit` / `offset` never affect exactness (SQL `LIMIT` /
|
|
188
165
|
* `OFFSET` are always engine-identical).
|
|
189
166
|
*
|
|
190
|
-
* @param
|
|
167
|
+
* @param input - The query input to test
|
|
191
168
|
* @param schema - The table's schema
|
|
192
|
-
* @returns Whether every part of `
|
|
169
|
+
* @returns Whether every part of `input` is exact
|
|
193
170
|
*/
|
|
194
|
-
function
|
|
195
|
-
const conditions =
|
|
196
|
-
const order =
|
|
197
|
-
return conditions.every((condition) =>
|
|
171
|
+
function matchesQueryExactly(input, schema) {
|
|
172
|
+
const conditions = input.conditions ?? [];
|
|
173
|
+
const order = input.order ?? [];
|
|
174
|
+
return conditions.every((condition) => matchesConditionExactly(condition, schema)) && order.every((term) => matchesOrderExactly(term, schema));
|
|
198
175
|
}
|
|
199
176
|
/**
|
|
200
|
-
*
|
|
201
|
-
*
|
|
202
|
-
* @remarks
|
|
203
|
-
* `text` / `json` → `TEXT` (JSON is stored as text and read back with
|
|
204
|
-
* `json_extract` for nested-field queries); `integer` / `boolean` → `INTEGER`
|
|
205
|
-
* (a boolean stores `1` / `0`); `real` → `REAL`; `blob` → `BLOB`. No `NOT NULL`
|
|
206
|
-
* is ever emitted — the contract validates required-ness; the database is just
|
|
207
|
-
* storage (AGENTS §14, the typed layer above imposes the shape).
|
|
177
|
+
* Determine whether SQLite can execute an aggregate exactly like the core engine.
|
|
208
178
|
*
|
|
209
|
-
* @param
|
|
210
|
-
* @
|
|
179
|
+
* @param operation - Aggregate operation
|
|
180
|
+
* @param column - Aggregate field
|
|
181
|
+
* @param schema - Current table schema
|
|
182
|
+
* @returns Whether native aggregation is exact
|
|
183
|
+
*/
|
|
184
|
+
function matchesAggregateExactly(operation, column, schema) {
|
|
185
|
+
if (operation === "count") return true;
|
|
186
|
+
if (operation === "sum" || operation === "average" || !isString(column)) return false;
|
|
187
|
+
const declared = schema.columns.find((candidate) => candidate.name === column);
|
|
188
|
+
return declared !== void 0 && (declared.storage === "integer" || declared.storage === "real") && !(declared.optional && declared.nullable);
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* Test a declared SQLite type against a portable storage affinity.
|
|
211
192
|
*
|
|
212
|
-
* @
|
|
213
|
-
*
|
|
214
|
-
*
|
|
215
|
-
* columnSQL('json') // 'TEXT'
|
|
216
|
-
* ```
|
|
193
|
+
* @param declared - Native declared type
|
|
194
|
+
* @param storage - Portable column storage
|
|
195
|
+
* @returns Whether SQLite's official affinity rules yield the expected affinity
|
|
217
196
|
*/
|
|
218
|
-
function
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
197
|
+
function matchesSQLiteAffinity(declared, storage) {
|
|
198
|
+
if (!isString(declared)) return false;
|
|
199
|
+
const type = declared.toUpperCase();
|
|
200
|
+
let affinity;
|
|
201
|
+
if (type.includes("INT")) affinity = "INTEGER";
|
|
202
|
+
else if (type.includes("CHAR") || type.includes("CLOB") || type.includes("TEXT")) affinity = "TEXT";
|
|
203
|
+
else if (type === "" || type.includes("BLOB")) affinity = "BLOB";
|
|
204
|
+
else if (type.includes("REAL") || type.includes("FLOA") || type.includes("DOUB")) affinity = "REAL";
|
|
205
|
+
else affinity = "NUMERIC";
|
|
206
|
+
if (storage === "integer" || storage === "boolean") return affinity === "INTEGER";
|
|
207
|
+
if (storage === "text" || storage === "json") return affinity === "TEXT";
|
|
208
|
+
if (storage === "blob") return affinity === "BLOB";
|
|
209
|
+
return affinity === "REAL";
|
|
227
210
|
}
|
|
228
211
|
/**
|
|
229
212
|
* Quote a SQL identifier (a table or column name) so any characters are literal.
|
|
@@ -238,129 +221,90 @@ function columnSQL(type) {
|
|
|
238
221
|
*
|
|
239
222
|
* @example
|
|
240
223
|
* ```ts
|
|
241
|
-
*
|
|
224
|
+
* quoteIdentifier('order') // '"order"'
|
|
242
225
|
* ```
|
|
243
226
|
*/
|
|
244
|
-
function
|
|
227
|
+
function quoteIdentifier(identifier) {
|
|
245
228
|
return "\"" + identifier.replaceAll("\"", "\"\"") + "\"";
|
|
246
229
|
}
|
|
247
230
|
/**
|
|
248
|
-
*
|
|
249
|
-
*
|
|
250
|
-
* @remarks
|
|
251
|
-
* A single string is ONE column — `quote(path)`. An array descends a JSON column:
|
|
252
|
-
* the first element is the (quoted) column, the rest a `json_extract` path
|
|
253
|
-
* (`json_extract("payload", '$.user.id')`), matching the guide's nested-field
|
|
254
|
-
* examples (simple identifier keys). The string's value is never split on `.`
|
|
255
|
-
* (AGENTS — `FieldPath` semantics): a dotted string is one column literally.
|
|
256
|
-
*
|
|
257
|
-
* @param path - The field path (a column, or a column + nested keys)
|
|
258
|
-
* @returns The SQL expression selecting the value
|
|
259
|
-
*
|
|
260
|
-
* @example
|
|
261
|
-
* ```ts
|
|
262
|
-
* fieldColumn('payload') // '"payload"'
|
|
263
|
-
* fieldColumn(['payload', 'user', 'id']) // 'json_extract("payload", \'$.user.id\')'
|
|
264
|
-
* ```
|
|
265
|
-
*/
|
|
266
|
-
function fieldColumn(path) {
|
|
267
|
-
if (isString(path)) return quote(path);
|
|
268
|
-
const [column, ...nested] = path;
|
|
269
|
-
if (column === void 0) throw new DatabaseError("VALIDATION", "A field path must contain at least one column");
|
|
270
|
-
const rest = nested.map((key) => "." + key.replaceAll("'", "''")).join("");
|
|
271
|
-
return "json_extract(" + quote(column) + ", '$" + rest + "')";
|
|
272
|
-
}
|
|
273
|
-
/**
|
|
274
|
-
* Compile an {@link AggregateFunction} over a {@link FieldPath} to its SQL
|
|
275
|
-
* aggregate expression — the SELECT body the SQLite driver's native `aggregate`
|
|
276
|
-
* runs.
|
|
231
|
+
* Encode a JS value to its stored {@link SQLiteValue} for a declared column.
|
|
277
232
|
*
|
|
278
233
|
* @remarks
|
|
279
|
-
*
|
|
280
|
-
*
|
|
281
|
-
*
|
|
282
|
-
*
|
|
283
|
-
* `COUNT(*)` is `0` and the numeric aggregates are SQL `NULL` (→ `undefined`),
|
|
284
|
-
* matching the engine.
|
|
285
|
-
*
|
|
286
|
-
* @param operation - The aggregate to compute
|
|
287
|
-
* @param column - The column (or nested path) to aggregate
|
|
288
|
-
* @returns The SQL aggregate expression
|
|
289
|
-
*
|
|
290
|
-
* @example
|
|
291
|
-
* ```ts
|
|
292
|
-
* aggregateSQL('count', 'age') // 'COUNT(*)'
|
|
293
|
-
* aggregateSQL('sum', 'age') // 'SUM("age")'
|
|
294
|
-
* aggregateSQL('average', ['payload', 'score']) // 'AVG(json_extract("payload", \'$.score\'))'
|
|
295
|
-
* ```
|
|
296
|
-
*/
|
|
297
|
-
function aggregateSQL(operation, column) {
|
|
298
|
-
switch (operation) {
|
|
299
|
-
case "count": return "COUNT(*)";
|
|
300
|
-
case "sum": return "SUM(" + fieldColumn(column) + ")";
|
|
301
|
-
case "average": return "AVG(" + fieldColumn(column) + ")";
|
|
302
|
-
case "minimum": return "MIN(" + fieldColumn(column) + ")";
|
|
303
|
-
case "maximum": return "MAX(" + fieldColumn(column) + ")";
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
/**
|
|
307
|
-
* Encode a JS value to its stored {@link SQLiteValue} for a column's type.
|
|
308
|
-
*
|
|
309
|
-
* @remarks
|
|
310
|
-
* The forward half of the bridge, total (AGENTS §14): a value that does not fit
|
|
311
|
-
* its column's storage type encodes to `null` rather than throwing. A `boolean`
|
|
312
|
-
* column stores `1` / `0` (and `null` / `undefined` → `null`); a `json` column
|
|
313
|
-
* stores `JSON.stringify` (or `null` for `null` / `undefined`); `integer` /
|
|
314
|
-
* `real` keep a `number` / `bigint`, else `null`; `text` keeps a `string`, else
|
|
315
|
-
* `null`; `blob` keeps a `Uint8Array`, else `null`. Narrowed with `typeof` /
|
|
316
|
-
* `instanceof`, never `as`.
|
|
234
|
+
* The codec is total: a malformed value encodes to SQL `NULL`. Absence always
|
|
235
|
+
* uses SQL `NULL`. A nullable-only column also uses SQL `NULL` for explicit
|
|
236
|
+
* `null`; an optional-and-nullable column uses a storage-class sentinel so
|
|
237
|
+
* absence and explicit `null` remain distinct.
|
|
317
238
|
*
|
|
318
239
|
* @param value - The JS value to store
|
|
319
|
-
* @param
|
|
240
|
+
* @param column - The declared storage and absence/null contract
|
|
320
241
|
* @returns The value SQLite stores
|
|
321
242
|
*
|
|
322
243
|
* @example
|
|
323
244
|
* ```ts
|
|
324
|
-
* encodeValue(true,
|
|
325
|
-
* encodeValue({ a: 1 },
|
|
245
|
+
* encodeValue(true, booleanColumn) // 1
|
|
246
|
+
* encodeValue({ a: 1 }, jsonColumn) // '{"a":1}'
|
|
326
247
|
* ```
|
|
327
248
|
*/
|
|
328
|
-
function encodeValue(value,
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
249
|
+
function encodeValue(value, column) {
|
|
250
|
+
if (value === void 0) return null;
|
|
251
|
+
if (value === null) {
|
|
252
|
+
if (!column.nullable) return null;
|
|
253
|
+
if (!column.optional) return null;
|
|
254
|
+
return column.storage === "text" || column.storage === "json" ? /* @__PURE__ */ new Uint8Array() : String(null);
|
|
255
|
+
}
|
|
256
|
+
switch (column.storage) {
|
|
257
|
+
case "boolean": return typeof value === "boolean" ? value ? 1 : 0 : null;
|
|
258
|
+
case "json": try {
|
|
259
|
+
return JSON.stringify(cloneJSONValue(value));
|
|
260
|
+
} catch {
|
|
261
|
+
return null;
|
|
262
|
+
}
|
|
263
|
+
case "integer": return typeof value === "bigint" || typeof value === "number" && Number.isFinite(value) && Number.isInteger(value) ? value : null;
|
|
264
|
+
case "real": return typeof value === "bigint" || typeof value === "number" && Number.isFinite(value) ? value : null;
|
|
334
265
|
case "text": return typeof value === "string" ? value : null;
|
|
335
266
|
case "blob": return value instanceof Uint8Array ? value : null;
|
|
336
267
|
}
|
|
337
268
|
}
|
|
338
269
|
/**
|
|
339
|
-
* Decode a stored {@link SQLiteValue} back to its JS value for a column
|
|
270
|
+
* Decode a stored {@link SQLiteValue} back to its JS value for a declared column —
|
|
340
271
|
* the exact inverse of {@link encodeValue}.
|
|
341
272
|
*
|
|
342
273
|
* @remarks
|
|
343
|
-
*
|
|
344
|
-
*
|
|
345
|
-
*
|
|
346
|
-
*
|
|
347
|
-
* omit absent columns.
|
|
274
|
+
* Stored values must use the declared SQLite storage class. SQL `NULL` decodes
|
|
275
|
+
* to explicit `null` only for nullable-only columns and otherwise to absence.
|
|
276
|
+
* Optional-and-nullable sentinels decode to explicit `null`; malformed values
|
|
277
|
+
* decode to `undefined` so {@link decodeRow} omits them.
|
|
348
278
|
*
|
|
349
279
|
* @param value - The stored SQLite value
|
|
350
|
-
* @param
|
|
351
|
-
* @returns The decoded JS value
|
|
280
|
+
* @param column - The declared storage and absence/null contract
|
|
281
|
+
* @returns The decoded JS value, or `undefined` for absence/malformed storage
|
|
352
282
|
*
|
|
353
283
|
* @example
|
|
354
284
|
* ```ts
|
|
355
|
-
* decodeValue(1,
|
|
356
|
-
* decodeValue('{"a":1}',
|
|
285
|
+
* decodeValue(1, booleanColumn) // true
|
|
286
|
+
* decodeValue('{"a":1}', jsonColumn) // { a: 1 }
|
|
357
287
|
* ```
|
|
358
288
|
*/
|
|
359
|
-
function decodeValue(value,
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
289
|
+
function decodeValue(value, column) {
|
|
290
|
+
if (value === null) return column.nullable && !column.optional ? null : void 0;
|
|
291
|
+
if (column.optional && column.nullable && (column.storage === "text" || column.storage === "json" ? value instanceof Uint8Array && value.byteLength === 0 : value === String(null))) return null;
|
|
292
|
+
switch (column.storage) {
|
|
293
|
+
case "boolean":
|
|
294
|
+
if (value === 0 || value === 0n) return false;
|
|
295
|
+
if (value === 1 || value === 1n) return true;
|
|
296
|
+
return;
|
|
297
|
+
case "json":
|
|
298
|
+
if (typeof value !== "string") return void 0;
|
|
299
|
+
try {
|
|
300
|
+
return structuredClone(cloneJSONValue(JSON.parse(value)));
|
|
301
|
+
} catch {
|
|
302
|
+
return;
|
|
303
|
+
}
|
|
304
|
+
case "integer": return typeof value === "bigint" || typeof value === "number" && Number.isFinite(value) && Number.isInteger(value) ? value : void 0;
|
|
305
|
+
case "real": return typeof value === "bigint" || typeof value === "number" && Number.isFinite(value) ? value : void 0;
|
|
306
|
+
case "text": return typeof value === "string" ? value : void 0;
|
|
307
|
+
case "blob": return value instanceof Uint8Array ? value : void 0;
|
|
364
308
|
}
|
|
365
309
|
}
|
|
366
310
|
/**
|
|
@@ -382,7 +326,7 @@ function decodeValue(value, type) {
|
|
|
382
326
|
*/
|
|
383
327
|
function encodeRow(row, schema) {
|
|
384
328
|
const result = {};
|
|
385
|
-
for (const column of schema.columns) result[column.name] = encodeValue(row[column.name], column
|
|
329
|
+
for (const column of schema.columns) result[column.name] = encodeValue(row[column.name], column);
|
|
386
330
|
return result;
|
|
387
331
|
}
|
|
388
332
|
/**
|
|
@@ -423,9 +367,8 @@ function extractValues(row, names, table) {
|
|
|
423
367
|
* Decodes each declared column with {@link decodeValue} and **omits** any column
|
|
424
368
|
* whose decoded value is `undefined` — so an absent / `NULL` optional column does
|
|
425
369
|
* not surface as `{ bio: undefined }`, matching how the contract's optional
|
|
426
|
-
* columns expect absence.
|
|
427
|
-
*
|
|
428
|
-
* `undefined`, and an `undefined` value is omitted).
|
|
370
|
+
* columns expect absence. Nullable-only SQL `NULL` cells remain explicit
|
|
371
|
+
* `null`; optional-and-nullable columns use their storage-class sentinel.
|
|
429
372
|
*
|
|
430
373
|
* @param row - The stored SQLite row
|
|
431
374
|
* @param schema - The table's schema
|
|
@@ -441,37 +384,14 @@ function decodeRow(row, schema) {
|
|
|
441
384
|
for (const column of schema.columns) {
|
|
442
385
|
const value = row[column.name];
|
|
443
386
|
if (value === void 0) continue;
|
|
444
|
-
const decoded = decodeValue(value, column
|
|
387
|
+
const decoded = decodeValue(value, column);
|
|
445
388
|
if (decoded !== void 0) result[column.name] = decoded;
|
|
446
389
|
}
|
|
447
390
|
return result;
|
|
448
391
|
}
|
|
449
392
|
/**
|
|
450
|
-
* Project a {@link TableSchema} to the `CREATE TABLE IF NOT EXISTS` statement a
|
|
451
|
-
* SQLite driver's `open` issues for it.
|
|
452
|
-
*
|
|
453
|
-
* @remarks
|
|
454
|
-
* Each column compiles to `<quoted name> <columnSQL(type)>`; the statement ends
|
|
455
|
-
* with `PRIMARY KEY (<quoted primary>)`. No `NOT NULL` is emitted — the contract
|
|
456
|
-
* validates required-ness, the database is just storage (AGENTS §14).
|
|
457
|
-
*
|
|
458
|
-
* @param schema - The table's schema
|
|
459
|
-
* @returns The `CREATE TABLE IF NOT EXISTS …` statement
|
|
460
|
-
*
|
|
461
|
-
* @example
|
|
462
|
-
* ```ts
|
|
463
|
-
* schemaToTable(schema)
|
|
464
|
-
* // 'CREATE TABLE IF NOT EXISTS "users" ("id" TEXT, "age" INTEGER, PRIMARY KEY ("id"))'
|
|
465
|
-
* ```
|
|
466
|
-
*/
|
|
467
|
-
function schemaToTable(schema) {
|
|
468
|
-
const columns = schema.columns.map((column) => quote(column.name) + " " + columnSQL(column.type));
|
|
469
|
-
return "CREATE TABLE IF NOT EXISTS " + quote(schema.name) + " (" + columns.join(", ") + ", PRIMARY KEY (" + quote(schema.primary) + "))";
|
|
470
|
-
}
|
|
471
|
-
/**
|
|
472
393
|
* Build a collision-free SQL index name for a table + column-group index —
|
|
473
|
-
* shared by
|
|
474
|
-
* {@link stepToSQL}'s `index.add` / `index.remove` (a migration-time DDL),
|
|
394
|
+
* shared by the compiler module's `schemaToIndexes` and `stepToSQL`,
|
|
475
395
|
* so a plan-built index name always matches one `open` would have created.
|
|
476
396
|
*
|
|
477
397
|
* @remarks
|
|
@@ -487,120 +407,64 @@ function schemaToTable(schema) {
|
|
|
487
407
|
*
|
|
488
408
|
* @example
|
|
489
409
|
* ```ts
|
|
490
|
-
*
|
|
491
|
-
*
|
|
492
|
-
*
|
|
410
|
+
* deriveSQLiteIndexName('users', ['name']) // 'idx_5_users_4_name'
|
|
411
|
+
* deriveSQLiteIndexName('a_b', ['c']) // 'idx_3_a_b_1_c'
|
|
412
|
+
* deriveSQLiteIndexName('a', ['b', 'c']) // 'idx_1_a_1_b_1_c'
|
|
493
413
|
* ```
|
|
494
414
|
*/
|
|
495
|
-
function
|
|
415
|
+
function deriveSQLiteIndexName(table, columns) {
|
|
496
416
|
return "idx_" + [table, ...columns].map((part) => String(part.length) + "_" + part).join("_");
|
|
497
417
|
}
|
|
418
|
+
//#endregion
|
|
419
|
+
//#region src/server/compilers.ts
|
|
498
420
|
/**
|
|
499
|
-
*
|
|
500
|
-
* SQLite driver's `open` issues for its declared indexes.
|
|
501
|
-
*
|
|
502
|
-
* @remarks
|
|
503
|
-
* One statement per index group; the index name is built by {@link indexName}
|
|
504
|
-
* (collision-free and deterministic), matching the driver's naming so a
|
|
505
|
-
* repeated `open` is idempotent.
|
|
421
|
+
* Map a portable {@link ColumnStorage} to its SQLite column type.
|
|
506
422
|
*
|
|
507
|
-
* @param
|
|
508
|
-
* @returns
|
|
509
|
-
*
|
|
510
|
-
* @example
|
|
511
|
-
* ```ts
|
|
512
|
-
* schemaToIndexes(schema)
|
|
513
|
-
* // ['CREATE INDEX IF NOT EXISTS "idx_5_users_4_name" ON "users" ("name")']
|
|
514
|
-
* ```
|
|
423
|
+
* @param storage - The portable column type
|
|
424
|
+
* @returns The SQLite column type keyword
|
|
515
425
|
*/
|
|
516
|
-
function
|
|
517
|
-
|
|
426
|
+
function compileColumnSQL(storage) {
|
|
427
|
+
switch (storage) {
|
|
428
|
+
case "text":
|
|
429
|
+
case "json": return "TEXT";
|
|
430
|
+
case "integer":
|
|
431
|
+
case "boolean": return "INTEGER";
|
|
432
|
+
case "real": return "REAL";
|
|
433
|
+
case "blob": return "BLOB";
|
|
434
|
+
}
|
|
518
435
|
}
|
|
519
436
|
/**
|
|
520
|
-
*
|
|
521
|
-
* `migrate` executes for it.
|
|
522
|
-
*
|
|
523
|
-
* @remarks
|
|
524
|
-
* `table.add` emits the `CREATE TABLE` plus one `CREATE INDEX` per declared
|
|
525
|
-
* index (via {@link schemaToTable} / {@link schemaToIndexes}); `table.remove`
|
|
526
|
-
* emits `DROP TABLE IF EXISTS`; `column.add` / `column.remove` emit `ALTER
|
|
527
|
-
* TABLE … ADD COLUMN` / `… DROP COLUMN`; `index.add` / `index.remove` emit
|
|
528
|
-
* `CREATE INDEX IF NOT EXISTS` / `DROP INDEX IF EXISTS`, naming the index the
|
|
529
|
-
* same way `schemaToIndexes` does (`idx_<table>_<columns joined by _>`) so a
|
|
530
|
-
* plan-built index matches one `open` would have created. Whether the named
|
|
531
|
-
* table actually exists is the caller's concern (a driver's `migrate` checks
|
|
532
|
-
* its own declared schema before running these statements) — this projection
|
|
533
|
-
* is pure and never inspects live state.
|
|
534
|
-
*
|
|
535
|
-
* @param step - The migration step to project
|
|
536
|
-
* @returns The DDL statement(s) that apply the step
|
|
437
|
+
* Compile a {@link FieldPath} to the SQL expression that reads it.
|
|
537
438
|
*
|
|
538
|
-
* @
|
|
539
|
-
*
|
|
540
|
-
* stepToSQL({ operation: 'column.remove', table: 'users', column: 'legacy' })
|
|
541
|
-
* // ['ALTER TABLE "users" DROP COLUMN "legacy"']
|
|
542
|
-
* ```
|
|
439
|
+
* @param path - The field path
|
|
440
|
+
* @returns The SQL expression selecting the value
|
|
543
441
|
*/
|
|
544
|
-
function
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
case "index.add": return ["CREATE INDEX IF NOT EXISTS " + quote(indexName(step.table, step.index)) + " ON " + quote(step.table) + " (" + step.index.map(quote).join(", ") + ")"];
|
|
551
|
-
case "index.remove": return ["DROP INDEX IF EXISTS " + quote(indexName(step.table, step.index))];
|
|
552
|
-
}
|
|
442
|
+
function compileFieldSQL(path) {
|
|
443
|
+
if (isString(path)) return quoteIdentifier(path);
|
|
444
|
+
const [column, ...nested] = path;
|
|
445
|
+
if (column === void 0) throw new DatabaseError("VALIDATION", "A field path must contain at least one column");
|
|
446
|
+
const rest = nested.map((key) => "." + key.replaceAll("'", "''")).join("");
|
|
447
|
+
return "json_extract(" + quoteIdentifier(column) + ", '$" + rest + "')";
|
|
553
448
|
}
|
|
554
449
|
/**
|
|
555
|
-
*
|
|
556
|
-
* — the bookkeeping counterpart to {@link stepToSQL} (which projects the DDL a
|
|
557
|
-
* driver's `migrate` runs against the live database).
|
|
558
|
-
*
|
|
559
|
-
* @remarks
|
|
560
|
-
* `column.add` / `column.remove` add / filter the named column;
|
|
561
|
-
* `index.add` / `index.remove` add / filter the matching index group (an exact
|
|
562
|
-
* ordered match on `index`). `table.add` / `table.remove` act on a WHOLE
|
|
563
|
-
* schema map rather than one table's shape, so they are the caller's concern
|
|
564
|
-
* (a driver's `migrate` applies them directly against its table map) — passed
|
|
565
|
-
* here, they return `schema` unchanged.
|
|
566
|
-
*
|
|
567
|
-
* @param schema - The table's current declared schema
|
|
568
|
-
* @param step - The migration step to project onto it
|
|
569
|
-
* @returns The table's schema after the step
|
|
450
|
+
* Compile an {@link AggregateOperation} over a {@link FieldPath}.
|
|
570
451
|
*
|
|
571
|
-
* @
|
|
572
|
-
*
|
|
573
|
-
*
|
|
574
|
-
* // schema with the 'legacy' column dropped from `columns`
|
|
575
|
-
* ```
|
|
452
|
+
* @param operation - The aggregate to compute
|
|
453
|
+
* @param column - The column or nested path to aggregate
|
|
454
|
+
* @returns The SQL aggregate expression
|
|
576
455
|
*/
|
|
577
|
-
function
|
|
578
|
-
switch (
|
|
579
|
-
case "
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
case "
|
|
584
|
-
...schema,
|
|
585
|
-
columns: schema.columns.filter((column) => column.name !== step.column)
|
|
586
|
-
};
|
|
587
|
-
case "index.add": return {
|
|
588
|
-
...schema,
|
|
589
|
-
indexes: [...schema.indexes, step.index]
|
|
590
|
-
};
|
|
591
|
-
case "index.remove": return {
|
|
592
|
-
...schema,
|
|
593
|
-
indexes: schema.indexes.filter((group) => !(group.length === step.index.length && group.every((name, position) => name === step.index[position])))
|
|
594
|
-
};
|
|
595
|
-
case "table.add":
|
|
596
|
-
case "table.remove": return schema;
|
|
456
|
+
function compileAggregateSQL(operation, column) {
|
|
457
|
+
switch (operation) {
|
|
458
|
+
case "count": return "COUNT(*)";
|
|
459
|
+
case "sum": return "SUM(" + compileFieldSQL(column) + ")";
|
|
460
|
+
case "average": return "AVG(" + compileFieldSQL(column) + ")";
|
|
461
|
+
case "minimum": return "MIN(" + compileFieldSQL(column) + ")";
|
|
462
|
+
case "maximum": return "MAX(" + compileFieldSQL(column) + ")";
|
|
597
463
|
}
|
|
598
464
|
}
|
|
599
|
-
//#endregion
|
|
600
|
-
//#region src/server/compilers.ts
|
|
601
465
|
/**
|
|
602
466
|
* Compile a NESTED {@link FieldPath} to the `json_type(<col>, <path>)` SQL
|
|
603
|
-
* expression — the {@link
|
|
467
|
+
* expression — the {@link compileFieldSQL} `json_extract` sibling used to tell a
|
|
604
468
|
* PRESENT JSON `null` apart from an ABSENT path (both read back as SQL `NULL`
|
|
605
469
|
* through `json_extract`, but `json_type` reports `'null'` for the former and
|
|
606
470
|
* SQL `NULL` for the latter).
|
|
@@ -610,14 +474,14 @@ function stepToSchema(schema, step) {
|
|
|
610
474
|
*
|
|
611
475
|
* @example
|
|
612
476
|
* ```ts
|
|
613
|
-
*
|
|
477
|
+
* compileJSONTypeSQL(['payload', 'user', 'id']) // "json_type(\"payload\", '$.user.id')"
|
|
614
478
|
* ```
|
|
615
479
|
*/
|
|
616
|
-
function
|
|
480
|
+
function compileJSONTypeSQL(path) {
|
|
617
481
|
const [column, ...nested] = path;
|
|
618
482
|
if (column === void 0) throw new DatabaseError("VALIDATION", "A field path must contain at least one column");
|
|
619
483
|
const rest = nested.map((key) => "." + key.replaceAll("'", "''")).join("");
|
|
620
|
-
return "json_type(" +
|
|
484
|
+
return "json_type(" + quoteIdentifier(column) + ", '$" + rest + "')";
|
|
621
485
|
}
|
|
622
486
|
/**
|
|
623
487
|
* Escape `\`, `%`, and `_` (each with a leading `\`) so a `starts` / `ends`
|
|
@@ -639,15 +503,15 @@ function escapeLike(text) {
|
|
|
639
503
|
*
|
|
640
504
|
* @param column - The column name
|
|
641
505
|
* @param schema - The table's schema
|
|
642
|
-
* @returns The column's {@link
|
|
506
|
+
* @returns The column's {@link ColumnStorage}, or `undefined` if the schema does not carry it
|
|
643
507
|
*
|
|
644
508
|
* @example
|
|
645
509
|
* ```ts
|
|
646
|
-
*
|
|
510
|
+
* findColumnStorage('age', schema) // 'integer'
|
|
647
511
|
* ```
|
|
648
512
|
*/
|
|
649
|
-
function
|
|
650
|
-
return schema.columns.find((candidate) => candidate.name === column)?.
|
|
513
|
+
function findColumnStorage(column, schema) {
|
|
514
|
+
return schema.columns.find((candidate) => candidate.name === column)?.storage;
|
|
651
515
|
}
|
|
652
516
|
/**
|
|
653
517
|
* The storage type a nested (`json_extract`) operand encodes as, derived from its
|
|
@@ -662,15 +526,15 @@ function declaredType(column, schema) {
|
|
|
662
526
|
* edge of comparing against a json subtree).
|
|
663
527
|
*
|
|
664
528
|
* @param value - The runtime operand value
|
|
665
|
-
* @returns The {@link
|
|
529
|
+
* @returns The {@link ColumnStorage} to encode it as
|
|
666
530
|
*
|
|
667
531
|
* @example
|
|
668
532
|
* ```ts
|
|
669
|
-
*
|
|
670
|
-
*
|
|
533
|
+
* inferValueStorage(true) // 'boolean'
|
|
534
|
+
* inferValueStorage(9) // 'integer'
|
|
671
535
|
* ```
|
|
672
536
|
*/
|
|
673
|
-
function
|
|
537
|
+
function inferValueStorage(value) {
|
|
674
538
|
if (typeof value === "boolean") return "boolean";
|
|
675
539
|
if (typeof value === "number") return Number.isInteger(value) ? "integer" : "real";
|
|
676
540
|
if (typeof value === "bigint") return "integer";
|
|
@@ -678,7 +542,7 @@ function valueType(value) {
|
|
|
678
542
|
return "text";
|
|
679
543
|
}
|
|
680
544
|
/**
|
|
681
|
-
* Compile one condition to its `<column> <operator>` SQL fragment and the
|
|
545
|
+
* Compile one condition to its `<column> <operator>` SQL fragment and the parameters
|
|
682
546
|
* it binds — engine-exact under SQL's three-valued NULL logic.
|
|
683
547
|
*
|
|
684
548
|
* @remarks
|
|
@@ -688,7 +552,7 @@ function valueType(value) {
|
|
|
688
552
|
* encodes each operand as the NATIVE scalar `json_extract` returns, derived from
|
|
689
553
|
* the operand's runtime type (per-operand, since `between` / `any` / `none` can
|
|
690
554
|
* mix types). `any` / `none` collapse an empty list to a constant (`0` matches
|
|
691
|
-
* nothing, `1` matches all) with no
|
|
555
|
+
* nothing, `1` matches all) with no parameters.
|
|
692
556
|
*
|
|
693
557
|
* The core engine's total order ranks `undefined` (rank 0) BELOW `null`
|
|
694
558
|
* (rank 1) (see `compareValues`), so a MISSING/`NULL` column MATCHES
|
|
@@ -716,13 +580,11 @@ function valueType(value) {
|
|
|
716
580
|
* absent | true | true | false
|
|
717
581
|
* ```
|
|
718
582
|
*
|
|
719
|
-
*
|
|
720
|
-
*
|
|
721
|
-
*
|
|
722
|
-
*
|
|
723
|
-
*
|
|
724
|
-
* (it only catches the `IS NULL` row), so a flat `not`-with-`null`-operand
|
|
725
|
-
* compiles to the constant `1`.
|
|
583
|
+
* A flat SQL `NULL` represents absence or explicit null according to its
|
|
584
|
+
* {@link ColumnSchema}; optional-and-nullable columns use a storage-class
|
|
585
|
+
* sentinel to distinguish the two. The native exactness gate therefore
|
|
586
|
+
* refines every optional or nullable scalar comparison through the core engine.
|
|
587
|
+
* This compiler still emits a total SQL fragment for direct consumers.
|
|
726
588
|
*
|
|
727
589
|
* A NESTED path can be present-but-`null` (a stored JSON `null`), which
|
|
728
590
|
* `json_extract` reads back as SQL `NULL` — indistinguishable from an ABSENT
|
|
@@ -742,27 +604,27 @@ function valueType(value) {
|
|
|
742
604
|
*
|
|
743
605
|
* @example
|
|
744
606
|
* ```ts
|
|
745
|
-
*
|
|
746
|
-
* // { sql: '"age" > ?',
|
|
747
|
-
*
|
|
748
|
-
* // { sql: '("age" < ? OR "age" IS NULL)',
|
|
607
|
+
* compileConditionSQL({ column: 'age', operator: 'above', values: [18], connector: 'and' }, schema)
|
|
608
|
+
* // { sql: '"age" > ?', parameters: [18] }
|
|
609
|
+
* compileConditionSQL({ column: 'age', operator: 'below', values: [18], connector: 'and' }, schema)
|
|
610
|
+
* // { sql: '("age" < ? OR "age" IS NULL)', parameters: [18] }
|
|
749
611
|
* ```
|
|
750
612
|
*/
|
|
751
|
-
function
|
|
752
|
-
const column =
|
|
613
|
+
function compileConditionSQL(condition, schema) {
|
|
614
|
+
const column = compileFieldSQL(condition.column);
|
|
753
615
|
const nested = !isString(condition.column);
|
|
754
|
-
const declared = isString(condition.column) ?
|
|
616
|
+
const declared = isString(condition.column) ? schema.columns.find((candidate) => candidate.name === condition.column) : void 0;
|
|
755
617
|
const first = condition.values[0];
|
|
756
618
|
const second = condition.values[1];
|
|
757
619
|
const nullOperand = first === null || first === void 0;
|
|
758
|
-
const jsonType = !isString(condition.column) ?
|
|
620
|
+
const jsonType = !isString(condition.column) ? compileJSONTypeSQL(condition.column) : "";
|
|
759
621
|
let sql;
|
|
760
622
|
let values;
|
|
761
623
|
switch (condition.operator) {
|
|
762
624
|
case "equals":
|
|
763
625
|
if (nullOperand && nested) return {
|
|
764
626
|
sql: jsonType + " = 'null'",
|
|
765
|
-
|
|
627
|
+
parameters: []
|
|
766
628
|
};
|
|
767
629
|
sql = column + " = ?";
|
|
768
630
|
values = [first];
|
|
@@ -771,11 +633,11 @@ function fragment(condition, schema) {
|
|
|
771
633
|
if (nullOperand) {
|
|
772
634
|
if (nested) return {
|
|
773
635
|
sql: "(" + jsonType + " IS NULL OR " + jsonType + " != 'null')",
|
|
774
|
-
|
|
636
|
+
parameters: []
|
|
775
637
|
};
|
|
776
638
|
return {
|
|
777
639
|
sql: "1",
|
|
778
|
-
|
|
640
|
+
parameters: []
|
|
779
641
|
};
|
|
780
642
|
}
|
|
781
643
|
sql = "(" + column + " != ? OR " + column + " IS NULL)";
|
|
@@ -813,7 +675,7 @@ function fragment(condition, schema) {
|
|
|
813
675
|
const text = isString(first) ? first : "";
|
|
814
676
|
if (text === "") return {
|
|
815
677
|
sql: "typeof(" + column + ") = 'text'",
|
|
816
|
-
|
|
678
|
+
parameters: []
|
|
817
679
|
};
|
|
818
680
|
const length = Array.from(text).length;
|
|
819
681
|
sql = "(typeof(" + column + ") = 'text' AND substr(" + column + ", 1, " + length + ") = ?)";
|
|
@@ -824,7 +686,7 @@ function fragment(condition, schema) {
|
|
|
824
686
|
const text = isString(first) ? first : "";
|
|
825
687
|
if (text === "") return {
|
|
826
688
|
sql: "typeof(" + column + ") = 'text'",
|
|
827
|
-
|
|
689
|
+
parameters: []
|
|
828
690
|
};
|
|
829
691
|
const length = Array.from(text).length;
|
|
830
692
|
sql = "(typeof(" + column + ") = 'text' AND substr(" + column + ", -" + length + ") = ?)";
|
|
@@ -834,7 +696,7 @@ function fragment(condition, schema) {
|
|
|
834
696
|
case "any":
|
|
835
697
|
if (condition.values.length === 0) return {
|
|
836
698
|
sql: "0",
|
|
837
|
-
|
|
699
|
+
parameters: []
|
|
838
700
|
};
|
|
839
701
|
sql = column + " IN (" + condition.values.map(() => "?").join(", ") + ")";
|
|
840
702
|
values = condition.values;
|
|
@@ -842,34 +704,42 @@ function fragment(condition, schema) {
|
|
|
842
704
|
case "none":
|
|
843
705
|
if (condition.values.length === 0) return {
|
|
844
706
|
sql: "1",
|
|
845
|
-
|
|
707
|
+
parameters: []
|
|
846
708
|
};
|
|
847
709
|
sql = "(" + column + " NOT IN (" + condition.values.map(() => "?").join(", ") + ") OR " + column + " IS NULL)";
|
|
848
710
|
values = condition.values;
|
|
849
711
|
break;
|
|
850
712
|
case "absent": return {
|
|
851
713
|
sql: column + " IS NULL",
|
|
852
|
-
|
|
714
|
+
parameters: []
|
|
853
715
|
};
|
|
854
716
|
case "present": return {
|
|
855
717
|
sql: column + " IS NOT NULL",
|
|
856
|
-
|
|
718
|
+
parameters: []
|
|
857
719
|
};
|
|
858
720
|
}
|
|
859
721
|
return {
|
|
860
722
|
sql,
|
|
861
|
-
|
|
723
|
+
parameters: values.map((value) => {
|
|
724
|
+
const storage = nested ? inferValueStorage(value) : declared?.storage ?? "json";
|
|
725
|
+
return encodeValue(value, declared ?? {
|
|
726
|
+
name: "",
|
|
727
|
+
storage,
|
|
728
|
+
optional: false,
|
|
729
|
+
nullable: false
|
|
730
|
+
});
|
|
731
|
+
})
|
|
862
732
|
};
|
|
863
733
|
}
|
|
864
734
|
/**
|
|
865
735
|
* Fold the conditions into one WHERE clause, parenthesizing progressively
|
|
866
|
-
* left-to-right so the grouping matches the engine's `
|
|
736
|
+
* left-to-right so the grouping matches the engine's `matchesQuery` fold.
|
|
867
737
|
*
|
|
868
738
|
* @remarks
|
|
869
739
|
* The first condition's connector is ignored, per the {@link Condition} types.
|
|
870
|
-
* Every fragment (see {@link
|
|
740
|
+
* Every fragment (see {@link compileConditionSQL}'s truth table) replicates the core
|
|
871
741
|
* engine's total order EXACTLY under SQL's three-valued NULL logic, so this
|
|
872
|
-
* clause matches `
|
|
742
|
+
* clause matches `applyQuery` row-for-row over the same table — a native
|
|
873
743
|
* `records` / `count` read never disagrees with a scan-and-filter fallback.
|
|
874
744
|
*
|
|
875
745
|
* @param conditions - The conditions to fold
|
|
@@ -879,27 +749,27 @@ function fragment(condition, schema) {
|
|
|
879
749
|
* @example
|
|
880
750
|
* ```ts
|
|
881
751
|
* compileWhere([{ column: 'age', operator: 'from', values: [18], connector: 'and' }], schema)
|
|
882
|
-
* // { sql: 'WHERE "age" >= ?',
|
|
752
|
+
* // { sql: 'WHERE "age" >= ?', parameters: [18] }
|
|
883
753
|
* ```
|
|
884
754
|
*/
|
|
885
755
|
function compileWhere(conditions, schema) {
|
|
886
756
|
const [first, ...remaining] = conditions;
|
|
887
757
|
if (first === void 0) return {
|
|
888
758
|
sql: "",
|
|
889
|
-
|
|
759
|
+
parameters: []
|
|
890
760
|
};
|
|
891
|
-
const head =
|
|
761
|
+
const head = compileConditionSQL(first, schema);
|
|
892
762
|
let clause = head.sql;
|
|
893
|
-
const
|
|
763
|
+
const parameters = [...head.parameters];
|
|
894
764
|
for (const condition of remaining) {
|
|
895
|
-
const next =
|
|
765
|
+
const next = compileConditionSQL(condition, schema);
|
|
896
766
|
const operator = condition.connector === "or" ? "OR" : "AND";
|
|
897
767
|
clause = "(" + clause + " " + operator + " " + next.sql + ")";
|
|
898
|
-
|
|
768
|
+
parameters.push(...next.parameters);
|
|
899
769
|
}
|
|
900
770
|
return {
|
|
901
771
|
sql: "WHERE " + clause,
|
|
902
|
-
|
|
772
|
+
parameters
|
|
903
773
|
};
|
|
904
774
|
}
|
|
905
775
|
/**
|
|
@@ -929,8 +799,8 @@ function compileWhere(conditions, schema) {
|
|
|
929
799
|
* ```
|
|
930
800
|
*/
|
|
931
801
|
function compileOrder(order, schema) {
|
|
932
|
-
const terms = (order ?? []).map((term) =>
|
|
933
|
-
if (!(order ?? []).some((term) => isString(term.column) && term.column === schema.primary)) terms.push(
|
|
802
|
+
const terms = (order ?? []).map((term) => compileFieldSQL(term.column) + (term.direction === "descending" ? " DESC" : " ASC"));
|
|
803
|
+
if (!(order ?? []).some((term) => isString(term.column) && term.column === schema.primary)) terms.push(quoteIdentifier(schema.primary));
|
|
934
804
|
return terms.length === 0 ? "" : "ORDER BY " + terms.join(", ");
|
|
935
805
|
}
|
|
936
806
|
/**
|
|
@@ -946,29 +816,33 @@ function compileOrder(order, schema) {
|
|
|
946
816
|
*
|
|
947
817
|
* @example
|
|
948
818
|
* ```ts
|
|
949
|
-
* compilePage(undefined, 5) // { sql: 'LIMIT -1 OFFSET ?',
|
|
819
|
+
* compilePage(undefined, 5) // { sql: 'LIMIT -1 OFFSET ?', parameters: [5] }
|
|
950
820
|
* ```
|
|
951
821
|
*/
|
|
952
822
|
function compilePage(limit, offset) {
|
|
823
|
+
validatePage({
|
|
824
|
+
...limit === void 0 ? {} : { limit },
|
|
825
|
+
...offset === void 0 ? {} : { offset }
|
|
826
|
+
});
|
|
953
827
|
if (limit !== void 0 && offset !== void 0) return {
|
|
954
828
|
sql: "LIMIT ? OFFSET ?",
|
|
955
|
-
|
|
829
|
+
parameters: [limit, offset]
|
|
956
830
|
};
|
|
957
831
|
if (limit !== void 0) return {
|
|
958
832
|
sql: "LIMIT ?",
|
|
959
|
-
|
|
833
|
+
parameters: [limit]
|
|
960
834
|
};
|
|
961
835
|
if (offset !== void 0) return {
|
|
962
836
|
sql: "LIMIT -1 OFFSET ?",
|
|
963
|
-
|
|
837
|
+
parameters: [offset]
|
|
964
838
|
};
|
|
965
839
|
return {
|
|
966
840
|
sql: "",
|
|
967
|
-
|
|
841
|
+
parameters: []
|
|
968
842
|
};
|
|
969
843
|
}
|
|
970
844
|
/**
|
|
971
|
-
* Compile a {@link
|
|
845
|
+
* Compile a {@link QueryInput} into the SQL clause that follows a table name, with
|
|
972
846
|
* its bound parameters in clause order.
|
|
973
847
|
*
|
|
974
848
|
* @remarks
|
|
@@ -976,39 +850,163 @@ function compilePage(limit, offset) {
|
|
|
976
850
|
* `[where, orderBy, limitOffset]` (each possibly empty) into one clause so a
|
|
977
851
|
* `SELECT * FROM <table> <clause>` runs the whole read in the engine instead of
|
|
978
852
|
* over a JS `scan`. The WHERE fold is parenthesized **left-to-right** to mirror
|
|
979
|
-
* the core engine's `
|
|
853
|
+
* the core engine's `matchesQuery` (not SQL's native AND-over-OR precedence),
|
|
980
854
|
* so a native and an engine read return identical rows. Each operand is encoded
|
|
981
855
|
* via `encodeValue`: a flat column uses its declared schema type, while a nested
|
|
982
856
|
* `FieldPath` (a `json_extract` read) encodes each operand as the native scalar
|
|
983
857
|
* the extract returns — derived from the operand's runtime type — so it compares.
|
|
984
858
|
* The 15 operators map per the databases guide's operator table, with
|
|
985
859
|
* `starts` / `ends` using `LIKE … ESCAPE '\'` and an empty `any` / `none` list
|
|
986
|
-
* collapsing to a constant.
|
|
860
|
+
* collapsing to a constant. An `undefined` input (or one with no parts)
|
|
987
861
|
* compiles to an empty clause.
|
|
988
862
|
*
|
|
989
|
-
* @param
|
|
863
|
+
* @param input - The read specification, or `undefined` for all rows
|
|
990
864
|
* @param schema - The table's schema (column types for operand encoding)
|
|
991
865
|
* @returns The SQL tail and its bound parameters
|
|
992
866
|
*
|
|
993
867
|
* @example
|
|
994
868
|
* ```ts
|
|
995
|
-
*
|
|
996
|
-
* // { sql: 'WHERE "age" >= ? ORDER BY "id"',
|
|
869
|
+
* compileQuerySQL({ conditions: [{ column: 'age', operator: 'from', values: [18], connector: 'and' }] }, schema)
|
|
870
|
+
* // { sql: 'WHERE "age" >= ? ORDER BY "id"', parameters: [18] }
|
|
997
871
|
* ```
|
|
998
872
|
*/
|
|
999
|
-
function
|
|
1000
|
-
|
|
1001
|
-
const
|
|
1002
|
-
const
|
|
873
|
+
function compileQuerySQL(input, schema) {
|
|
874
|
+
validatePage(input);
|
|
875
|
+
const where = compileWhere(input?.conditions ?? [], schema);
|
|
876
|
+
const orderBy = compileOrder(input?.order, schema);
|
|
877
|
+
const page = compilePage(input?.limit, input?.offset);
|
|
1003
878
|
return {
|
|
1004
879
|
sql: [
|
|
1005
880
|
where.sql,
|
|
1006
881
|
orderBy,
|
|
1007
882
|
page.sql
|
|
1008
883
|
].filter((part) => part !== "").join(" "),
|
|
1009
|
-
|
|
884
|
+
parameters: [...where.parameters, ...page.parameters]
|
|
1010
885
|
};
|
|
1011
886
|
}
|
|
887
|
+
/**
|
|
888
|
+
* Project a {@link TableSchema} to its `CREATE TABLE IF NOT EXISTS` statement.
|
|
889
|
+
*
|
|
890
|
+
* @param schema - The table schema
|
|
891
|
+
* @returns The complete table declaration
|
|
892
|
+
*/
|
|
893
|
+
function schemaToTable(schema) {
|
|
894
|
+
const columns = schema.columns.map((column) => quoteIdentifier(column.name) + " " + compileColumnSQL(column.storage) + (column.optional || column.nullable ? "" : " NOT NULL"));
|
|
895
|
+
return "CREATE TABLE IF NOT EXISTS " + quoteIdentifier(schema.name) + " (" + columns.join(", ") + ", PRIMARY KEY (" + quoteIdentifier(schema.primary) + "))";
|
|
896
|
+
}
|
|
897
|
+
/**
|
|
898
|
+
* Project a {@link TableSchema} to its declared SQLite indexes.
|
|
899
|
+
*
|
|
900
|
+
* @param schema - The table schema
|
|
901
|
+
* @returns One statement per declared index
|
|
902
|
+
*/
|
|
903
|
+
function schemaToIndexes(schema) {
|
|
904
|
+
return schema.indexes.map((group) => "CREATE INDEX IF NOT EXISTS " + quoteIdentifier(deriveSQLiteIndexName(schema.name, group)) + " ON " + quoteIdentifier(schema.name) + " (" + group.map(quoteIdentifier).join(", ") + ")");
|
|
905
|
+
}
|
|
906
|
+
/**
|
|
907
|
+
* Project one {@link MigrationStep} to SQLite DDL.
|
|
908
|
+
*
|
|
909
|
+
* @param step - The migration step
|
|
910
|
+
* @returns The statements that apply the step
|
|
911
|
+
*/
|
|
912
|
+
function stepToSQL(step) {
|
|
913
|
+
switch (step.operation) {
|
|
914
|
+
case "table.add": return [schemaToTable(step.table), ...schemaToIndexes(step.table)];
|
|
915
|
+
case "table.remove": return ["DROP TABLE IF EXISTS " + quoteIdentifier(step.table)];
|
|
916
|
+
case "column.add": return ["ALTER TABLE " + quoteIdentifier(step.table) + " ADD COLUMN " + quoteIdentifier(step.column.name) + " " + compileColumnSQL(step.column.storage) + (step.column.optional || step.column.nullable ? "" : " NOT NULL")];
|
|
917
|
+
case "column.remove": return ["ALTER TABLE " + quoteIdentifier(step.table) + " DROP COLUMN " + quoteIdentifier(step.column)];
|
|
918
|
+
case "index.add": return ["CREATE INDEX IF NOT EXISTS " + quoteIdentifier(deriveSQLiteIndexName(step.table, step.index)) + " ON " + quoteIdentifier(step.table) + " (" + step.index.map(quoteIdentifier).join(", ") + ")"];
|
|
919
|
+
case "index.remove": return ["DROP INDEX IF EXISTS " + quoteIdentifier(deriveSQLiteIndexName(step.table, step.index))];
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
//#endregion
|
|
923
|
+
//#region src/core/DriverIterator.ts
|
|
924
|
+
/**
|
|
925
|
+
* The internal continuation boundary for a root driver async iterator.
|
|
926
|
+
*
|
|
927
|
+
* @remarks
|
|
928
|
+
* A driver transaction can begin while a caller holds an idle root iterator.
|
|
929
|
+
* Every `next` therefore checks the driver's root-state guard immediately
|
|
930
|
+
* before and after advancing the source. A failed continuation terminalizes the
|
|
931
|
+
* iterator, discards any row produced before the post-advance guard failed, and
|
|
932
|
+
* attempts source cleanup exactly once.
|
|
933
|
+
*/
|
|
934
|
+
var DriverIterator = class {
|
|
935
|
+
#source;
|
|
936
|
+
#guard;
|
|
937
|
+
#terminal = false;
|
|
938
|
+
#cleaned = false;
|
|
939
|
+
constructor(source, guard) {
|
|
940
|
+
this.#source = source;
|
|
941
|
+
this.#guard = guard;
|
|
942
|
+
}
|
|
943
|
+
[Symbol.asyncIterator]() {
|
|
944
|
+
return this;
|
|
945
|
+
}
|
|
946
|
+
async next() {
|
|
947
|
+
if (this.#terminal) return {
|
|
948
|
+
done: true,
|
|
949
|
+
value: void 0
|
|
950
|
+
};
|
|
951
|
+
try {
|
|
952
|
+
this.#guard();
|
|
953
|
+
const result = await this.#source.next();
|
|
954
|
+
this.#guard();
|
|
955
|
+
if (result.done === true) {
|
|
956
|
+
this.#terminal = true;
|
|
957
|
+
this.#cleaned = true;
|
|
958
|
+
}
|
|
959
|
+
return result;
|
|
960
|
+
} catch (error) {
|
|
961
|
+
this.#terminal = true;
|
|
962
|
+
await this.#discard();
|
|
963
|
+
throw error;
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
async return() {
|
|
967
|
+
if (this.#terminal) return {
|
|
968
|
+
done: true,
|
|
969
|
+
value: void 0
|
|
970
|
+
};
|
|
971
|
+
this.#terminal = true;
|
|
972
|
+
if (this.#cleaned || this.#source.return === void 0) {
|
|
973
|
+
this.#cleaned = true;
|
|
974
|
+
return {
|
|
975
|
+
done: true,
|
|
976
|
+
value: void 0
|
|
977
|
+
};
|
|
978
|
+
}
|
|
979
|
+
this.#cleaned = true;
|
|
980
|
+
return this.#source.return();
|
|
981
|
+
}
|
|
982
|
+
async throw(error) {
|
|
983
|
+
if (this.#terminal) throw error;
|
|
984
|
+
if (this.#source.throw === void 0) {
|
|
985
|
+
this.#terminal = true;
|
|
986
|
+
await this.#discard();
|
|
987
|
+
throw error;
|
|
988
|
+
}
|
|
989
|
+
try {
|
|
990
|
+
const result = await this.#source.throw(error);
|
|
991
|
+
if (result.done === true) {
|
|
992
|
+
this.#terminal = true;
|
|
993
|
+
this.#cleaned = true;
|
|
994
|
+
}
|
|
995
|
+
return result;
|
|
996
|
+
} catch (cause) {
|
|
997
|
+
this.#terminal = true;
|
|
998
|
+
await this.#discard();
|
|
999
|
+
throw cause;
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
async #discard() {
|
|
1003
|
+
if (this.#cleaned) return;
|
|
1004
|
+
this.#cleaned = true;
|
|
1005
|
+
try {
|
|
1006
|
+
await this.#source.return?.();
|
|
1007
|
+
} catch {}
|
|
1008
|
+
}
|
|
1009
|
+
};
|
|
1012
1010
|
//#endregion
|
|
1013
1011
|
//#region src/server/drivers/JSONDriver.ts
|
|
1014
1012
|
/**
|
|
@@ -1016,233 +1014,619 @@ function compileCriteria(criteria, schema) {
|
|
|
1016
1014
|
* reference {@link MemoryDriver} plus file load / flush.
|
|
1017
1015
|
*
|
|
1018
1016
|
* @remarks
|
|
1019
|
-
* A decorator, not a reimplementation:
|
|
1020
|
-
* {@link MemoryDriver},
|
|
1021
|
-
*
|
|
1017
|
+
* A decorator, not a reimplementation: storage primitives delegate to an inner
|
|
1018
|
+
* {@link MemoryDriver}, while this layer owns persistence, writer ordering,
|
|
1019
|
+
* isolated transactions, and queued row-snapshot restoration. `open`
|
|
1022
1020
|
* loads the file into memory; every mutation (`write` / `delete` / `clear`) flushes
|
|
1023
|
-
* the whole store back. The file is one JSON object, `{
|
|
1024
|
-
* [name]: rows } }` — `
|
|
1025
|
-
* (an unstamped store
|
|
1026
|
-
* backward compatibility); a per-table array of rows, each row carrying its own
|
|
1021
|
+
* the whole store back. The file is one JSON object, `{ metadata?: DriverMetadata, tables: {
|
|
1022
|
+
* [name]: rows } }` — `metadata` is present only once the store has been `stamp`ed
|
|
1023
|
+
* (an unstamped store omits `metadata`); a per-table array of rows, each row carrying its own
|
|
1027
1024
|
* primary (the table contract), so the key is recovered on load with
|
|
1028
1025
|
* {@link extractKey} and the file need not store it. The parsed JSON crosses the
|
|
1029
1026
|
* boundary as `unknown` and is narrowed with {@link isRecord} / {@link extractKey},
|
|
1030
|
-
* never asserted (AGENTS §14)
|
|
1031
|
-
*
|
|
1032
|
-
*
|
|
1033
|
-
* the optional native `records` / `
|
|
1027
|
+
* never asserted (AGENTS §14). Only an `ENOENT` read starts empty; every other
|
|
1028
|
+
* read failure or invalid existing document fails closed without publication,
|
|
1029
|
+
* mutation, or automatic repair. It is scan-only — it implements none of
|
|
1030
|
+
* the optional native `records` / `aggregate` hooks, so the core engine
|
|
1034
1031
|
* over `scan` answers every query. For development, small datasets, and portable /
|
|
1035
1032
|
* inspectable data; for large or concurrent workloads reach for a SQLite-backed
|
|
1036
1033
|
* driver.
|
|
1037
1034
|
*
|
|
1038
|
-
*
|
|
1039
|
-
*
|
|
1040
|
-
*
|
|
1041
|
-
*
|
|
1042
|
-
*
|
|
1035
|
+
* Metadata crosses {@link cloneDriverMetadata} at parsed-file ingress, public and
|
|
1036
|
+
* scoped write ingress, candidate/root publication, serialization, and copy-out.
|
|
1037
|
+
* Callers therefore cannot mutate queued metadata, and `metadata()` always returns a
|
|
1038
|
+
* distinct deeply frozen snapshot. A failure in the write path ({@link
|
|
1039
|
+
* JSONDriver.#serialize} — `mkdir` / `writeFile` / `rename`) is wrapped and
|
|
1040
|
+
* rethrown as `DatabaseError` `DRIVER`, carrying the target `path` and native
|
|
1041
|
+
* `cause` in its context. If temporary-file cleanup also fails, the top-level
|
|
1042
|
+
* `DRIVER` context additionally carries `temp` and `cleanup`; a precommit abort
|
|
1043
|
+
* remains an `ABORTED` `DatabaseError` in `context.cause`. The fail-closed read path
|
|
1044
|
+
* ({@link JSONDriver.#document}) remains separate from this write-error contract.
|
|
1043
1045
|
*/
|
|
1044
1046
|
var JSONDriver = class {
|
|
1045
1047
|
#path;
|
|
1046
1048
|
#memory = new MemoryDriver();
|
|
1049
|
+
#identities = /* @__PURE__ */ new Map();
|
|
1047
1050
|
#schema = [];
|
|
1048
|
-
#
|
|
1051
|
+
#metadata;
|
|
1049
1052
|
#flushCount = 0;
|
|
1050
1053
|
#chain = Promise.resolve();
|
|
1051
|
-
#deferring = false;
|
|
1052
1054
|
#transaction;
|
|
1055
|
+
#candidate;
|
|
1056
|
+
#candidateIdentities;
|
|
1057
|
+
#candidateSchema;
|
|
1053
1058
|
constructor(path) {
|
|
1054
1059
|
this.#path = path;
|
|
1055
1060
|
}
|
|
1056
1061
|
async open(schema) {
|
|
1057
|
-
this.#
|
|
1058
|
-
|
|
1059
|
-
await this.#
|
|
1062
|
+
this.#root();
|
|
1063
|
+
const owned = normalizeDriverSchema(schema);
|
|
1064
|
+
await this.#enqueue(() => this.#open(owned));
|
|
1060
1065
|
}
|
|
1061
1066
|
async close() {
|
|
1067
|
+
this.#root();
|
|
1068
|
+
await this.#chain;
|
|
1062
1069
|
await this.#memory.close();
|
|
1063
1070
|
}
|
|
1064
1071
|
async read(table, key) {
|
|
1072
|
+
this.#root();
|
|
1073
|
+
await this.#chain;
|
|
1065
1074
|
return this.#memory.read(table, key);
|
|
1066
1075
|
}
|
|
1067
|
-
async write(table, key, row) {
|
|
1068
|
-
|
|
1069
|
-
|
|
1076
|
+
async write(table, key, row, options) {
|
|
1077
|
+
this.#root();
|
|
1078
|
+
await this.#enqueue(() => this.#write(table, key, row, options), options?.signal);
|
|
1079
|
+
}
|
|
1080
|
+
async insert(table, key, row, options) {
|
|
1081
|
+
this.#root();
|
|
1082
|
+
await this.#enqueue(() => this.#insert(table, key, row, options), options?.signal);
|
|
1070
1083
|
}
|
|
1071
|
-
async delete(table, key) {
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
return removed;
|
|
1084
|
+
async delete(table, key, options) {
|
|
1085
|
+
this.#root();
|
|
1086
|
+
return this.#enqueue(() => this.#delete(table, key, options), options?.signal);
|
|
1075
1087
|
}
|
|
1076
|
-
keys(table) {
|
|
1088
|
+
async keys(table) {
|
|
1089
|
+
this.#root();
|
|
1090
|
+
await this.#chain;
|
|
1077
1091
|
return this.#memory.keys(table);
|
|
1078
1092
|
}
|
|
1079
1093
|
scan(table) {
|
|
1080
|
-
return this.#
|
|
1094
|
+
return new DriverIterator(this.#scan(table)[Symbol.asyncIterator](), () => this.#root());
|
|
1081
1095
|
}
|
|
1082
1096
|
/**
|
|
1083
1097
|
* Natively filtered lazy iteration — delegates to the inner {@link MemoryDriver}.
|
|
1084
1098
|
*
|
|
1085
1099
|
* @remarks
|
|
1086
|
-
* Semantics are the memory driver's own: `
|
|
1087
|
-
* / `limit` page lazily, and `
|
|
1100
|
+
* Semantics are the memory driver's own: `input.conditions` filters, `offset`
|
|
1101
|
+
* / `limit` page lazily, and `input.order` is ignored (streaming yields key
|
|
1088
1102
|
* order; sorted output is `records()`'s job).
|
|
1089
1103
|
*
|
|
1090
1104
|
* @param table - The table to stream
|
|
1091
|
-
* @param
|
|
1105
|
+
* @param input - The filter / offset / limit to apply lazily
|
|
1092
1106
|
*/
|
|
1093
|
-
stream(table,
|
|
1094
|
-
|
|
1107
|
+
stream(table, input) {
|
|
1108
|
+
validatePage(input);
|
|
1109
|
+
return new DriverIterator(this.#stream(table, input)[Symbol.asyncIterator](), () => this.#root());
|
|
1095
1110
|
}
|
|
1096
1111
|
async clear(table) {
|
|
1097
|
-
|
|
1098
|
-
|
|
1112
|
+
this.#root();
|
|
1113
|
+
await this.#enqueue(() => this.#clear(table));
|
|
1099
1114
|
}
|
|
1100
1115
|
/**
|
|
1101
|
-
*
|
|
1116
|
+
* Run an isolated native transaction callback over a candidate memory store.
|
|
1102
1117
|
*
|
|
1103
1118
|
* @remarks
|
|
1104
|
-
* Single-writer:
|
|
1105
|
-
*
|
|
1106
|
-
*
|
|
1107
|
-
*
|
|
1108
|
-
*
|
|
1109
|
-
*
|
|
1110
|
-
* `#flush()`, persisting the transaction's net state. `rollback()` restores
|
|
1111
|
-
* memory via the captured snapshot thunk, then `#flush()`s so the file reflects
|
|
1112
|
-
* the restored state. Outside a transaction, behavior is unchanged — every
|
|
1113
|
-
* mutation flushes on its own. Calling `commit` / `rollback` a second time (on
|
|
1114
|
-
* either method, in either order) throws `DatabaseError` `CONFLICT`.
|
|
1119
|
+
* Single-writer: nesting and root operations while active throw `CONFLICT`.
|
|
1120
|
+
* The callback receives a capability over cloned rows, schema, and metadata.
|
|
1121
|
+
* Fulfillment atomically serializes that candidate and publishes it to root
|
|
1122
|
+
* memory only after file replacement succeeds. Rejection or persistence
|
|
1123
|
+
* failure discards the candidate, and every captured capability call after
|
|
1124
|
+
* settlement throws `CONFLICT`.
|
|
1115
1125
|
*
|
|
1116
|
-
* @returns
|
|
1126
|
+
* @returns The callback's resolved value
|
|
1117
1127
|
*/
|
|
1118
|
-
async transaction() {
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
const token = {};
|
|
1122
|
-
this.#deferring = true;
|
|
1123
|
-
this.#transaction = token;
|
|
1124
|
-
return {
|
|
1125
|
-
commit: this.#commit.bind(this, token),
|
|
1126
|
-
rollback: this.#rollback.bind(this, token, rollback)
|
|
1127
|
-
};
|
|
1128
|
+
async transaction(scope) {
|
|
1129
|
+
this.#root();
|
|
1130
|
+
return this.#enqueue(() => this.#transact(scope));
|
|
1128
1131
|
}
|
|
1132
|
+
/**
|
|
1133
|
+
* Capture an owned row snapshot at an exact writer-queue position.
|
|
1134
|
+
*
|
|
1135
|
+
* @remarks
|
|
1136
|
+
* Capture owns table names, schemas, rows, and one session-local identity per
|
|
1137
|
+
* table. Rollback is repeatable: it clones the then-current root into a
|
|
1138
|
+
* candidate, adapts captured rows to each surviving same-identity table
|
|
1139
|
+
* through the portable migration engine, persists the candidate with current
|
|
1140
|
+
* metadata, and publishes memory only after file replacement succeeds.
|
|
1141
|
+
* Removed, replaced, uncaptured, and later-added tables remain untouched.
|
|
1142
|
+
*
|
|
1143
|
+
* @param tables - Existing tables to capture; omitted captures every current table
|
|
1144
|
+
* @returns A repeatable rollback operation
|
|
1145
|
+
*/
|
|
1129
1146
|
async snapshot(tables) {
|
|
1130
|
-
|
|
1147
|
+
this.#root();
|
|
1148
|
+
const names = tables === void 0 ? void 0 : [...tables];
|
|
1149
|
+
const captured = await this.#enqueue(() => this.#capture(names));
|
|
1131
1150
|
return async () => {
|
|
1132
|
-
|
|
1133
|
-
await this.#
|
|
1151
|
+
this.#root();
|
|
1152
|
+
await this.#enqueue(() => this.#restore(captured));
|
|
1134
1153
|
};
|
|
1135
1154
|
}
|
|
1136
|
-
async
|
|
1137
|
-
|
|
1155
|
+
async metadata() {
|
|
1156
|
+
this.#root();
|
|
1157
|
+
await this.#chain;
|
|
1158
|
+
return this.#metadata === void 0 ? void 0 : cloneDriverMetadata(this.#metadata);
|
|
1138
1159
|
}
|
|
1139
1160
|
/**
|
|
1140
|
-
* Persist
|
|
1161
|
+
* Persist an owned metadata snapshot for a later `metadata()` to copy out.
|
|
1141
1162
|
*
|
|
1142
1163
|
* @remarks
|
|
1143
|
-
*
|
|
1144
|
-
*
|
|
1145
|
-
*
|
|
1164
|
+
* Root stamping conflicts while a transaction is active. The scoped
|
|
1165
|
+
* {@link StorageInterface.stamp} updates candidate metadata and publishes
|
|
1166
|
+
* with the candidate rows on callback fulfillment.
|
|
1146
1167
|
*
|
|
1147
|
-
* @param
|
|
1168
|
+
* @param metadata - The {@link DriverMetadata} to persist
|
|
1148
1169
|
*/
|
|
1149
|
-
async stamp(
|
|
1150
|
-
this.#
|
|
1151
|
-
|
|
1170
|
+
async stamp(metadata) {
|
|
1171
|
+
this.#root();
|
|
1172
|
+
const owned = cloneDriverMetadata(metadata);
|
|
1173
|
+
await this.#enqueue(() => this.#stamp(owned));
|
|
1152
1174
|
}
|
|
1153
1175
|
/**
|
|
1154
|
-
* Apply
|
|
1155
|
-
* then persist the migrated state.
|
|
1176
|
+
* Apply one atomic {@link MigrationInput} through an isolated candidate.
|
|
1156
1177
|
*
|
|
1157
1178
|
* @remarks
|
|
1158
|
-
* The
|
|
1159
|
-
*
|
|
1160
|
-
*
|
|
1161
|
-
*
|
|
1162
|
-
* this driver's own declared `#schema`, mirroring the bookkeeping `open` does,
|
|
1163
|
-
* so a subsequent `#flush` / `#load` round-trip includes (or drops) the table.
|
|
1164
|
-
* A successful migration ends with one atomic `#flush()` so the new state
|
|
1165
|
-
* survives a close and reopen. A multi-step plan applies its steps
|
|
1166
|
-
* sequentially and is NOT atomic — a failure partway through a plan leaves
|
|
1167
|
-
* the earlier steps already applied.
|
|
1179
|
+
* The candidate receives every plan step plus optional metadata. Its complete
|
|
1180
|
+
* rows, derived schema, and metadata serialize through one atomic file
|
|
1181
|
+
* replacement before root memory changes. Any migration or persistence failure
|
|
1182
|
+
* therefore leaves root state and the prior file exact.
|
|
1168
1183
|
*
|
|
1169
|
-
* @param
|
|
1184
|
+
* @param input - The plan and optional metadata to settle together
|
|
1170
1185
|
*/
|
|
1171
|
-
async migrate(
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1186
|
+
async migrate(input) {
|
|
1187
|
+
this.#root();
|
|
1188
|
+
const owned = cloneMigrationInput(input);
|
|
1189
|
+
await this.#enqueue(() => this.#migrate(owned));
|
|
1190
|
+
}
|
|
1191
|
+
async *#scan(table) {
|
|
1192
|
+
await this.#chain;
|
|
1193
|
+
for await (const row of this.#memory.scan(table)) yield row;
|
|
1194
|
+
}
|
|
1195
|
+
async *#stream(table, input) {
|
|
1196
|
+
await this.#chain;
|
|
1197
|
+
for await (const row of this.#memory.stream(table, input)) yield row;
|
|
1198
|
+
}
|
|
1199
|
+
async #open(declared) {
|
|
1200
|
+
const parsed = await this.#document();
|
|
1201
|
+
let stored;
|
|
1202
|
+
let tables;
|
|
1203
|
+
if (parsed === void 0) {
|
|
1204
|
+
const fresh = {};
|
|
1205
|
+
for (const table of declared) fresh[table.name] = [];
|
|
1206
|
+
tables = fresh;
|
|
1207
|
+
} else {
|
|
1208
|
+
if (!isRecord(parsed) || !Object.hasOwn(parsed, "tables") || Object.keys(parsed).some((key) => key !== "tables" && key !== "metadata")) throw new DatabaseError("DRIVER", "Stored JSON database document is invalid", {
|
|
1209
|
+
path: this.#path,
|
|
1210
|
+
aspect: "document"
|
|
1211
|
+
});
|
|
1212
|
+
if (!isRecord(parsed.tables)) throw new DatabaseError("DRIVER", "Stored JSON tables are invalid", {
|
|
1213
|
+
path: this.#path,
|
|
1214
|
+
aspect: "tables"
|
|
1215
|
+
});
|
|
1216
|
+
tables = parsed.tables;
|
|
1217
|
+
if (Object.hasOwn(parsed, "metadata")) try {
|
|
1218
|
+
stored = cloneDriverMetadata(parsed.metadata);
|
|
1219
|
+
} catch {
|
|
1220
|
+
const cause = new DatabaseError("VALIDATION", "Stored JSON metadata failed validation", { path: "metadata" });
|
|
1221
|
+
throw new DatabaseError("DRIVER", "Stored JSON metadata is invalid", {
|
|
1222
|
+
path: this.#path,
|
|
1223
|
+
aspect: "metadata",
|
|
1224
|
+
cause
|
|
1225
|
+
});
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
const schema = normalizeDriverSchema(stored?.schema ?? declared);
|
|
1229
|
+
const names = new Set(schema.map((table) => table.name));
|
|
1230
|
+
for (const table of schema) if (!Object.hasOwn(tables, table.name)) throw new DatabaseError("DRIVER", "Stored JSON table set is invalid", {
|
|
1231
|
+
path: this.#path,
|
|
1232
|
+
table: table.name,
|
|
1233
|
+
aspect: "missing"
|
|
1234
|
+
});
|
|
1235
|
+
const unknown = Object.keys(tables).filter((name) => !names.has(name)).length;
|
|
1236
|
+
if (unknown > 0) throw new DatabaseError("DRIVER", "Stored JSON table set is invalid", {
|
|
1237
|
+
path: this.#path,
|
|
1238
|
+
aspect: "unknown",
|
|
1239
|
+
count: unknown
|
|
1240
|
+
});
|
|
1241
|
+
const memory = new MemoryDriver();
|
|
1242
|
+
await memory.open(schema);
|
|
1243
|
+
await this.#hydrate(memory, schema, tables);
|
|
1244
|
+
if (stored !== void 0) await memory.stamp(stored);
|
|
1245
|
+
this.#memory = memory;
|
|
1246
|
+
this.#schema = schema;
|
|
1247
|
+
this.#identities = this.#alignIdentities(schema);
|
|
1248
|
+
const metadata = await memory.metadata();
|
|
1249
|
+
this.#metadata = metadata === void 0 ? void 0 : cloneDriverMetadata(metadata);
|
|
1250
|
+
}
|
|
1251
|
+
async #migrate(input) {
|
|
1252
|
+
const candidate = await this.#clone();
|
|
1253
|
+
const identities = this.#projectIdentities(this.#identities, input.plan.steps);
|
|
1254
|
+
const schema = await this.#apply(candidate, this.#schema, input);
|
|
1255
|
+
const metadata = await candidate.metadata();
|
|
1256
|
+
await this.#serialize(void 0, candidate, schema, metadata);
|
|
1257
|
+
this.#memory = candidate;
|
|
1258
|
+
this.#identities = identities;
|
|
1176
1259
|
this.#schema = schema;
|
|
1177
|
-
|
|
1178
|
-
}
|
|
1179
|
-
async #
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
this.#
|
|
1190
|
-
await this.#
|
|
1191
|
-
|
|
1192
|
-
|
|
1260
|
+
this.#metadata = metadata === void 0 ? void 0 : cloneDriverMetadata(metadata);
|
|
1261
|
+
}
|
|
1262
|
+
async #apply(memory, current, input) {
|
|
1263
|
+
const schema = projectMigrationSchema(current, input.plan.steps);
|
|
1264
|
+
if (input.metadata !== void 0 && !equalsValue(normalizeDriverSchema(input.metadata.schema), schema)) throw new DatabaseError("MIGRATION", "Migration metadata schema does not match the plan", {
|
|
1265
|
+
projected: schema,
|
|
1266
|
+
metadata: input.metadata.schema
|
|
1267
|
+
});
|
|
1268
|
+
await memory.migrate(input);
|
|
1269
|
+
return schema;
|
|
1270
|
+
}
|
|
1271
|
+
async #transact(scope) {
|
|
1272
|
+
this.#root();
|
|
1273
|
+
const candidate = await this.#clone();
|
|
1274
|
+
const token = {};
|
|
1275
|
+
this.#transaction = token;
|
|
1276
|
+
this.#candidate = candidate;
|
|
1277
|
+
this.#candidateIdentities = new Map(this.#identities);
|
|
1278
|
+
this.#candidateSchema = this.#schema;
|
|
1279
|
+
try {
|
|
1280
|
+
const value = await scope(this.#capability(token));
|
|
1281
|
+
const schema = this.#candidateSchema;
|
|
1282
|
+
const identities = this.#candidateIdentities;
|
|
1283
|
+
if (schema === void 0 || identities === void 0) throw new DatabaseError("CONFLICT", "Transaction scope has settled");
|
|
1284
|
+
this.#candidate = void 0;
|
|
1285
|
+
this.#candidateIdentities = void 0;
|
|
1286
|
+
this.#candidateSchema = void 0;
|
|
1287
|
+
const metadata = await candidate.metadata();
|
|
1288
|
+
await this.#serialize(void 0, candidate, schema, metadata);
|
|
1289
|
+
this.#memory = candidate;
|
|
1290
|
+
this.#identities = identities;
|
|
1291
|
+
this.#schema = schema;
|
|
1292
|
+
this.#metadata = metadata === void 0 ? void 0 : cloneDriverMetadata(metadata);
|
|
1293
|
+
return value;
|
|
1294
|
+
} finally {
|
|
1295
|
+
if (this.#transaction === token) {
|
|
1296
|
+
this.#transaction = void 0;
|
|
1297
|
+
this.#candidate = void 0;
|
|
1298
|
+
this.#candidateIdentities = void 0;
|
|
1299
|
+
this.#candidateSchema = void 0;
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1303
|
+
async #clone() {
|
|
1304
|
+
const candidate = new MemoryDriver();
|
|
1305
|
+
await candidate.open(this.#schema);
|
|
1306
|
+
for (const table of this.#schema) for await (const row of this.#memory.scan(table.name)) {
|
|
1307
|
+
const key = extractKey(row, table.primary);
|
|
1308
|
+
if (key !== void 0) await candidate.write(table.name, key, row);
|
|
1309
|
+
}
|
|
1310
|
+
if (this.#metadata !== void 0) await candidate.stamp(cloneDriverMetadata(this.#metadata));
|
|
1311
|
+
return candidate;
|
|
1312
|
+
}
|
|
1313
|
+
async #capture(names) {
|
|
1314
|
+
const selected = names === void 0 ? void 0 : new Set(names);
|
|
1315
|
+
const captured = /* @__PURE__ */ new Map();
|
|
1316
|
+
for (const table of this.#schema) {
|
|
1317
|
+
if (selected !== void 0 && !selected.has(table.name)) continue;
|
|
1318
|
+
const identity = this.#identities.get(table.name);
|
|
1319
|
+
if (identity === void 0) continue;
|
|
1320
|
+
const rows = [];
|
|
1321
|
+
for await (const row of this.#memory.scan(table.name)) rows.push(row);
|
|
1322
|
+
captured.set(table.name, {
|
|
1323
|
+
identity,
|
|
1324
|
+
schema: table,
|
|
1325
|
+
rows
|
|
1326
|
+
});
|
|
1327
|
+
}
|
|
1328
|
+
return captured;
|
|
1329
|
+
}
|
|
1330
|
+
async #restore(captured) {
|
|
1331
|
+
const replacements = /* @__PURE__ */ new Map();
|
|
1332
|
+
for (const [name, capture] of captured) {
|
|
1333
|
+
const current = this.#schema.find((table) => table.name === name);
|
|
1334
|
+
if (current === void 0 || this.#identities.get(name) !== capture.identity) continue;
|
|
1335
|
+
const plan = planMigration([capture.schema], [current]);
|
|
1336
|
+
const migrated = migrateRows(capture.rows, plan.steps);
|
|
1337
|
+
if (migrated.length !== capture.rows.length) throw new DatabaseError("MIGRATION", "Snapshot row count changed during migration", { table: name });
|
|
1338
|
+
const rows = /* @__PURE__ */ new Map();
|
|
1339
|
+
for (const [index, row] of migrated.entries()) {
|
|
1340
|
+
const key = extractKey(row, current.primary);
|
|
1341
|
+
if (key === void 0) throw new DatabaseError("MIGRATION", `migrate: captured row is missing primary column '${current.primary}'`, {
|
|
1342
|
+
table: name,
|
|
1343
|
+
column: current.primary,
|
|
1344
|
+
index
|
|
1345
|
+
});
|
|
1346
|
+
rows.set(key, bindRowKey(row, current.primary, key));
|
|
1347
|
+
}
|
|
1348
|
+
replacements.set(name, rows);
|
|
1349
|
+
}
|
|
1350
|
+
const candidate = await this.#clone();
|
|
1351
|
+
for (const [name, rows] of replacements) {
|
|
1352
|
+
await candidate.clear(name);
|
|
1353
|
+
for (const [key, row] of rows) await candidate.write(name, key, row);
|
|
1354
|
+
}
|
|
1355
|
+
const metadata = await candidate.metadata();
|
|
1356
|
+
await this.#serialize(void 0, candidate, this.#schema, metadata);
|
|
1357
|
+
this.#memory = candidate;
|
|
1358
|
+
this.#metadata = metadata === void 0 ? void 0 : cloneDriverMetadata(metadata);
|
|
1359
|
+
}
|
|
1360
|
+
#capability(token) {
|
|
1361
|
+
return {
|
|
1362
|
+
read: this.#readCandidate.bind(this, token),
|
|
1363
|
+
write: this.#writeCandidate.bind(this, token),
|
|
1364
|
+
insert: this.#insertCandidate.bind(this, token),
|
|
1365
|
+
delete: this.#deleteCandidate.bind(this, token),
|
|
1366
|
+
keys: this.#keysCandidate.bind(this, token),
|
|
1367
|
+
scan: this.#scanCandidate.bind(this, token),
|
|
1368
|
+
clear: this.#clearCandidate.bind(this, token),
|
|
1369
|
+
migrate: this.#migrateCandidate.bind(this, token),
|
|
1370
|
+
metadata: this.#metadataCandidate.bind(this, token),
|
|
1371
|
+
stamp: this.#stampCandidate.bind(this, token)
|
|
1372
|
+
};
|
|
1373
|
+
}
|
|
1374
|
+
async #readCandidate(token, table, key) {
|
|
1375
|
+
return this.#requireCandidate(token).read(table, key);
|
|
1376
|
+
}
|
|
1377
|
+
async #writeCandidate(token, table, key, row, options) {
|
|
1378
|
+
await this.#requireCandidate(token).write(table, key, row, options);
|
|
1379
|
+
}
|
|
1380
|
+
async #insertCandidate(token, table, key, row, options) {
|
|
1381
|
+
await this.#requireCandidate(token).insert(table, key, row, options);
|
|
1382
|
+
}
|
|
1383
|
+
async #deleteCandidate(token, table, key, options) {
|
|
1384
|
+
return this.#requireCandidate(token).delete(table, key, options);
|
|
1385
|
+
}
|
|
1386
|
+
async #keysCandidate(token, table) {
|
|
1387
|
+
return this.#requireCandidate(token).keys(table);
|
|
1388
|
+
}
|
|
1389
|
+
#scanCandidate(token, table) {
|
|
1390
|
+
return new DriverIterator(this.#requireCandidate(token).scan(table)[Symbol.asyncIterator](), () => {
|
|
1391
|
+
this.#requireCandidate(token);
|
|
1392
|
+
});
|
|
1393
|
+
}
|
|
1394
|
+
async #clearCandidate(token, table) {
|
|
1395
|
+
await this.#requireCandidate(token).clear(table);
|
|
1396
|
+
}
|
|
1397
|
+
async #migrateCandidate(token, input) {
|
|
1398
|
+
const memory = this.#requireCandidate(token);
|
|
1399
|
+
const schema = this.#candidateSchema;
|
|
1400
|
+
const identities = this.#candidateIdentities;
|
|
1401
|
+
if (schema === void 0 || identities === void 0) throw new DatabaseError("CONFLICT", "Transaction scope has settled");
|
|
1402
|
+
const owned = cloneMigrationInput(input);
|
|
1403
|
+
const projected = this.#projectIdentities(identities, owned.plan.steps);
|
|
1404
|
+
this.#candidateSchema = await this.#apply(memory, schema, owned);
|
|
1405
|
+
this.#candidateIdentities = projected;
|
|
1406
|
+
}
|
|
1407
|
+
async #metadataCandidate(token) {
|
|
1408
|
+
const metadata = await this.#requireCandidate(token).metadata();
|
|
1409
|
+
return metadata === void 0 ? void 0 : cloneDriverMetadata(metadata);
|
|
1410
|
+
}
|
|
1411
|
+
async #stampCandidate(token, metadata) {
|
|
1412
|
+
const memory = this.#requireCandidate(token);
|
|
1413
|
+
const owned = cloneDriverMetadata(metadata);
|
|
1414
|
+
await memory.stamp(owned);
|
|
1415
|
+
}
|
|
1416
|
+
#requireCandidate(token) {
|
|
1417
|
+
if (this.#transaction !== token || this.#candidate === void 0) throw new DatabaseError("CONFLICT", "Transaction scope has settled");
|
|
1418
|
+
return this.#candidate;
|
|
1419
|
+
}
|
|
1420
|
+
#alignIdentities(schema) {
|
|
1421
|
+
const aligned = /* @__PURE__ */ new Map();
|
|
1422
|
+
for (const table of schema) aligned.set(table.name, this.#identities.get(table.name) ?? {});
|
|
1423
|
+
return aligned;
|
|
1424
|
+
}
|
|
1425
|
+
#projectIdentities(identities, steps) {
|
|
1426
|
+
const projected = new Map(identities);
|
|
1427
|
+
for (const step of steps) {
|
|
1428
|
+
if (step.operation === "table.add") projected.set(step.table.name, {});
|
|
1429
|
+
if (step.operation === "table.remove") projected.delete(step.table);
|
|
1430
|
+
}
|
|
1431
|
+
return projected;
|
|
1432
|
+
}
|
|
1433
|
+
#root() {
|
|
1434
|
+
if (this.#transaction !== void 0) throw new DatabaseError("CONFLICT", "A transaction is active on this driver");
|
|
1435
|
+
}
|
|
1436
|
+
async #document() {
|
|
1193
1437
|
let raw;
|
|
1194
1438
|
try {
|
|
1195
1439
|
raw = await readFile(this.#path, "utf-8");
|
|
1196
|
-
} catch {
|
|
1197
|
-
return;
|
|
1440
|
+
} catch (error) {
|
|
1441
|
+
if (typeof error === "object" && error !== null && "code" in error && error.code === "ENOENT") return;
|
|
1442
|
+
throw new DatabaseError("DRIVER", "Failed to read the JSON database file", {
|
|
1443
|
+
path: this.#path,
|
|
1444
|
+
cause: error
|
|
1445
|
+
});
|
|
1198
1446
|
}
|
|
1199
|
-
let parsed;
|
|
1200
1447
|
try {
|
|
1201
|
-
|
|
1448
|
+
return JSON.parse(raw);
|
|
1202
1449
|
} catch {
|
|
1203
|
-
|
|
1450
|
+
throw new DatabaseError("DRIVER", "Stored JSON database is invalid JSON", {
|
|
1451
|
+
path: this.#path,
|
|
1452
|
+
aspect: "syntax"
|
|
1453
|
+
});
|
|
1204
1454
|
}
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
for (const table of
|
|
1455
|
+
}
|
|
1456
|
+
async #hydrate(memory, schema, tables) {
|
|
1457
|
+
for (const table of schema) {
|
|
1208
1458
|
const rows = tables[table.name];
|
|
1209
|
-
if (!Array.isArray(rows))
|
|
1210
|
-
|
|
1211
|
-
|
|
1459
|
+
if (!Array.isArray(rows)) throw new DatabaseError("DRIVER", "Stored JSON table is invalid", {
|
|
1460
|
+
path: this.#path,
|
|
1461
|
+
table: table.name,
|
|
1462
|
+
aspect: "container"
|
|
1463
|
+
});
|
|
1464
|
+
const keys = /* @__PURE__ */ new Set();
|
|
1465
|
+
for (const [index, entry] of rows.entries()) {
|
|
1466
|
+
if (!isRecord(entry)) throw new DatabaseError("DRIVER", "Stored JSON row is invalid", {
|
|
1467
|
+
path: this.#path,
|
|
1468
|
+
table: table.name,
|
|
1469
|
+
index,
|
|
1470
|
+
aspect: "record"
|
|
1471
|
+
});
|
|
1212
1472
|
const key = extractKey(entry, table.primary);
|
|
1213
|
-
if (key === void 0)
|
|
1214
|
-
|
|
1473
|
+
if (key === void 0) throw new DatabaseError("DRIVER", "Stored JSON row is invalid", {
|
|
1474
|
+
path: this.#path,
|
|
1475
|
+
table: table.name,
|
|
1476
|
+
index,
|
|
1477
|
+
aspect: "primary"
|
|
1478
|
+
});
|
|
1479
|
+
if (keys.has(key)) throw new DatabaseError("DRIVER", "Stored JSON row is invalid", {
|
|
1480
|
+
path: this.#path,
|
|
1481
|
+
table: table.name,
|
|
1482
|
+
index,
|
|
1483
|
+
aspect: "duplicate"
|
|
1484
|
+
});
|
|
1485
|
+
keys.add(key);
|
|
1486
|
+
await memory.write(table.name, key, entry);
|
|
1215
1487
|
}
|
|
1216
1488
|
}
|
|
1217
|
-
if (isDriverMeta(parsed.meta)) this.#meta = parsed.meta;
|
|
1218
1489
|
}
|
|
1219
|
-
async #
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1490
|
+
async #enqueue(operation, signal) {
|
|
1491
|
+
checkAbort(signal);
|
|
1492
|
+
let started = false;
|
|
1493
|
+
const next = this.#chain.then(async () => {
|
|
1494
|
+
started = true;
|
|
1495
|
+
checkAbort(signal);
|
|
1496
|
+
return operation();
|
|
1497
|
+
});
|
|
1498
|
+
this.#chain = next.then(() => {}, () => {});
|
|
1499
|
+
if (signal === void 0) return next;
|
|
1500
|
+
const cleanup = new AbortController();
|
|
1501
|
+
return new Promise((resolve, reject) => {
|
|
1502
|
+
signal.addEventListener("abort", () => {
|
|
1503
|
+
if (started) return;
|
|
1504
|
+
try {
|
|
1505
|
+
checkAbort(signal);
|
|
1506
|
+
} catch (error) {
|
|
1507
|
+
reject(error);
|
|
1508
|
+
}
|
|
1509
|
+
}, {
|
|
1510
|
+
once: true,
|
|
1511
|
+
signal: cleanup.signal
|
|
1512
|
+
});
|
|
1513
|
+
next.then((result) => {
|
|
1514
|
+
cleanup.abort();
|
|
1515
|
+
resolve(result);
|
|
1516
|
+
}, (error) => {
|
|
1517
|
+
cleanup.abort();
|
|
1518
|
+
reject(error);
|
|
1519
|
+
});
|
|
1520
|
+
});
|
|
1521
|
+
}
|
|
1522
|
+
async #write(table, key, row, options) {
|
|
1523
|
+
const previous = await this.#memory.read(table, key);
|
|
1524
|
+
await this.#memory.write(table, key, row, options);
|
|
1525
|
+
try {
|
|
1526
|
+
await this.#serialize(options?.signal);
|
|
1527
|
+
} catch (error) {
|
|
1528
|
+
if (previous === void 0) await this.#memory.delete(table, key);
|
|
1529
|
+
else await this.#memory.write(table, key, previous);
|
|
1530
|
+
throw error;
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
async #insert(table, key, row, options) {
|
|
1534
|
+
await this.#memory.insert(table, key, row, options);
|
|
1535
|
+
try {
|
|
1536
|
+
await this.#serialize(options?.signal);
|
|
1537
|
+
} catch (error) {
|
|
1538
|
+
await this.#memory.delete(table, key);
|
|
1539
|
+
throw error;
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
async #delete(table, key, options) {
|
|
1543
|
+
const previous = await this.#memory.read(table, key);
|
|
1544
|
+
if (previous === void 0) {
|
|
1545
|
+
checkAbort(options?.signal);
|
|
1546
|
+
return false;
|
|
1547
|
+
}
|
|
1548
|
+
await this.#memory.delete(table, key, options);
|
|
1549
|
+
try {
|
|
1550
|
+
await this.#serialize(options?.signal);
|
|
1551
|
+
} catch (error) {
|
|
1552
|
+
await this.#memory.write(table, key, previous);
|
|
1553
|
+
throw error;
|
|
1554
|
+
}
|
|
1555
|
+
return true;
|
|
1556
|
+
}
|
|
1557
|
+
async #clear(table) {
|
|
1558
|
+
const rollback = await this.#memory.snapshot([table]);
|
|
1559
|
+
await this.#memory.clear(table);
|
|
1560
|
+
try {
|
|
1561
|
+
await this.#serialize();
|
|
1562
|
+
} catch (error) {
|
|
1563
|
+
await rollback();
|
|
1564
|
+
throw error;
|
|
1565
|
+
}
|
|
1566
|
+
}
|
|
1567
|
+
async #stamp(metadata) {
|
|
1568
|
+
const previous = this.#metadata;
|
|
1569
|
+
this.#metadata = cloneDriverMetadata(metadata);
|
|
1570
|
+
try {
|
|
1571
|
+
await this.#serialize();
|
|
1572
|
+
} catch (error) {
|
|
1573
|
+
this.#metadata = previous;
|
|
1574
|
+
throw error;
|
|
1575
|
+
}
|
|
1223
1576
|
}
|
|
1224
|
-
async #serialize() {
|
|
1577
|
+
async #serialize(signal, memory = this.#memory, schema = this.#schema, metadata = this.#metadata) {
|
|
1578
|
+
const owned = metadata === void 0 ? void 0 : cloneDriverMetadata(metadata);
|
|
1225
1579
|
const tables = {};
|
|
1226
|
-
|
|
1580
|
+
checkAbort(signal);
|
|
1581
|
+
for (const table of schema) {
|
|
1227
1582
|
const rows = [];
|
|
1228
|
-
for await (const row of
|
|
1583
|
+
for await (const row of memory.scan(table.name)) {
|
|
1584
|
+
checkAbort(signal);
|
|
1585
|
+
rows.push(row);
|
|
1586
|
+
}
|
|
1229
1587
|
tables[table.name] = rows;
|
|
1230
1588
|
}
|
|
1589
|
+
checkAbort(signal);
|
|
1231
1590
|
this.#flushCount += 1;
|
|
1232
1591
|
const temp = `${this.#path}.${process.pid}.${this.#flushCount}.tmp`;
|
|
1233
|
-
const payload =
|
|
1234
|
-
|
|
1592
|
+
const payload = owned === void 0 ? { tables } : {
|
|
1593
|
+
metadata: owned,
|
|
1235
1594
|
tables
|
|
1236
1595
|
};
|
|
1596
|
+
let dispatched = false;
|
|
1237
1597
|
try {
|
|
1238
1598
|
await mkdir(dirname(this.#path), { recursive: true });
|
|
1239
|
-
|
|
1599
|
+
const serialized = JSON.stringify(payload, null, 2);
|
|
1600
|
+
checkAbort(signal);
|
|
1601
|
+
await writeFile(temp, serialized, {
|
|
1602
|
+
encoding: "utf-8",
|
|
1603
|
+
flush: true,
|
|
1604
|
+
signal
|
|
1605
|
+
});
|
|
1606
|
+
checkAbort(signal);
|
|
1607
|
+
dispatched = true;
|
|
1240
1608
|
await rename(temp, this.#path);
|
|
1241
1609
|
} catch (error) {
|
|
1242
|
-
|
|
1610
|
+
let cause = error;
|
|
1611
|
+
if (!dispatched) try {
|
|
1612
|
+
checkAbort(signal);
|
|
1613
|
+
} catch (abort) {
|
|
1614
|
+
cause = abort;
|
|
1615
|
+
}
|
|
1616
|
+
try {
|
|
1617
|
+
await rm(temp, { force: true });
|
|
1618
|
+
} catch (cleanup) {
|
|
1619
|
+
throw new DatabaseError("DRIVER", "Failed to persist and clean the database file", {
|
|
1620
|
+
path: this.#path,
|
|
1621
|
+
temp,
|
|
1622
|
+
cause,
|
|
1623
|
+
cleanup
|
|
1624
|
+
});
|
|
1625
|
+
}
|
|
1626
|
+
if (isDatabaseError(cause) && cause.code === "ABORTED") throw cause;
|
|
1243
1627
|
throw new DatabaseError("DRIVER", "Failed to persist the database file", {
|
|
1244
1628
|
path: this.#path,
|
|
1245
|
-
cause
|
|
1629
|
+
cause
|
|
1246
1630
|
});
|
|
1247
1631
|
}
|
|
1248
1632
|
}
|
|
@@ -1259,21 +1643,23 @@ var JSONDriver = class {
|
|
|
1259
1643
|
* raw `node:sqlite`. `open` issues `CREATE TABLE IF NOT EXISTS` with real typed
|
|
1260
1644
|
* columns (mapped from each {@link TableSchema}'s portable column types) and a
|
|
1261
1645
|
* `PRIMARY KEY`, plus a `CREATE INDEX IF NOT EXISTS` per declared index (both
|
|
1262
|
-
* reopen-safe), and readies a reserved `
|
|
1263
|
-
* `stamp()` read and write — **a user table named `
|
|
1646
|
+
* reopen-safe), and readies a reserved `_metadata` single-row table `metadata()` /
|
|
1647
|
+
* `stamp()` read and write — **a user table named `_metadata` collides with it**;
|
|
1264
1648
|
* avoid the name. Rows cross the boundary through the codecs in `helpers.ts`
|
|
1265
1649
|
* (`json` columns store / parse JSON text, a `boolean` stores `1` / `0`), so the
|
|
1266
1650
|
* typed layer above imposes the exact shape (AGENTS §14). `write` is an
|
|
1267
|
-
* `INSERT OR REPLACE` upsert
|
|
1268
|
-
*
|
|
1269
|
-
* `SQLiteError`
|
|
1270
|
-
*
|
|
1271
|
-
*
|
|
1272
|
-
* `
|
|
1273
|
-
*
|
|
1274
|
-
*
|
|
1275
|
-
*
|
|
1276
|
-
*
|
|
1651
|
+
* `INSERT OR REPLACE` upsert, while `insert` uses a plain `INSERT` and maps its
|
|
1652
|
+
* atomic primary-key constraint failure to `CONFLICT`; every other backend
|
|
1653
|
+
* `SQLiteError` is contained by the same `DatabaseError` boundary described
|
|
1654
|
+
* below. Querying, ordering, paging, and
|
|
1655
|
+
* aggregation is native: `records` / `stream` compile a `QueryInput`
|
|
1656
|
+
* to SQL with `compileQuerySQL`, and `aggregate` runs a SQL
|
|
1657
|
+
* `COUNT`/`SUM`/`AVG`/`MIN`/`MAX` (via `compileAggregateSQL`) over the same compiled
|
|
1658
|
+
* WHERE. `transaction` runs a callback inside native `BEGIN` / `COMMIT` /
|
|
1659
|
+
* `ROLLBACK`, passing a scoped storage capability that becomes invalid after
|
|
1660
|
+
* settlement. `migrate` runs the plan's projected DDL
|
|
1661
|
+
* ({@link import('../compilers.js').stepToSQL}) inside whichever native
|
|
1662
|
+
* transaction is active: joined into the active transaction callback
|
|
1277
1663
|
* when one exists (the core's versioned reconcile path wraps migrate + stamp
|
|
1278
1664
|
* in one native `BEGIN`, and node:sqlite rejects a nested `BEGIN`), or inside
|
|
1279
1665
|
* its own `database.transaction` otherwise — a mid-plan failure rolls back
|
|
@@ -1301,278 +1687,641 @@ var SQLiteDriver = class {
|
|
|
1301
1687
|
#options;
|
|
1302
1688
|
#database;
|
|
1303
1689
|
#schema = /* @__PURE__ */ new Map();
|
|
1690
|
+
#identities = /* @__PURE__ */ new Map();
|
|
1304
1691
|
#transaction;
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1692
|
+
#candidateSchema;
|
|
1693
|
+
#candidateIdentities;
|
|
1694
|
+
constructor(options = {}) {
|
|
1695
|
+
this.#path = options.path ?? ":memory:";
|
|
1696
|
+
this.#options = options;
|
|
1308
1697
|
}
|
|
1309
1698
|
async open(schema) {
|
|
1310
|
-
|
|
1699
|
+
this.#root();
|
|
1700
|
+
const owned = normalizeDriverSchema(schema);
|
|
1701
|
+
if (owned.some((table) => table.name === "_metadata")) throw new DatabaseError("VALIDATION", `A declared table cannot be named '${METADATA_TABLE}' — it is reserved for driver metadata`, { table: METADATA_TABLE });
|
|
1311
1702
|
this.#guard(() => {
|
|
1312
|
-
this.#database
|
|
1703
|
+
const current = this.#database;
|
|
1704
|
+
const previousIdentities = this.#identities;
|
|
1705
|
+
this.#database = void 0;
|
|
1706
|
+
this.#schema = /* @__PURE__ */ new Map();
|
|
1707
|
+
this.#identities = /* @__PURE__ */ new Map();
|
|
1708
|
+
current?.close();
|
|
1313
1709
|
const database = createSQLiteDatabase({
|
|
1314
1710
|
path: this.#path,
|
|
1315
1711
|
...this.#options.readonly !== void 0 ? { readonly: this.#options.readonly } : {},
|
|
1316
1712
|
...this.#options.timeout !== void 0 ? { timeout: this.#options.timeout } : {},
|
|
1317
|
-
...this.#options.
|
|
1713
|
+
...this.#options.references !== void 0 ? { foreignKeys: this.#options.references } : {}
|
|
1318
1714
|
});
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
database.
|
|
1325
|
-
|
|
1715
|
+
try {
|
|
1716
|
+
database.connect();
|
|
1717
|
+
for (const [name, value] of Object.entries(this.#options.pragmas ?? {})) database.pragma(name, value);
|
|
1718
|
+
const map = /* @__PURE__ */ new Map();
|
|
1719
|
+
const identities = /* @__PURE__ */ new Map();
|
|
1720
|
+
database.transaction(() => {
|
|
1721
|
+
this.#ensureMetadataTable(database);
|
|
1722
|
+
const stored = this.#readMetadata(database);
|
|
1723
|
+
const deployed = normalizeDriverSchema(stored?.schema ?? owned);
|
|
1724
|
+
const missing = /* @__PURE__ */ new Map();
|
|
1725
|
+
for (const table of deployed) {
|
|
1726
|
+
map.set(table.name, table);
|
|
1727
|
+
missing.set(table.name, this.#validateTable(database, table));
|
|
1728
|
+
}
|
|
1729
|
+
if (stored !== void 0) {
|
|
1730
|
+
for (const table of stored.schema) if (missing.get(table.name) === void 0) throw new DatabaseError("DRIVER", "Stored SQLite table is missing", {
|
|
1731
|
+
table: table.name,
|
|
1732
|
+
aspect: "missing"
|
|
1733
|
+
});
|
|
1734
|
+
}
|
|
1735
|
+
for (const table of deployed) {
|
|
1736
|
+
const absent = missing.get(table.name);
|
|
1737
|
+
if (absent === void 0) {
|
|
1738
|
+
database.exec(schemaToTable(table));
|
|
1739
|
+
for (const sql of schemaToIndexes(table)) database.exec(sql);
|
|
1740
|
+
} else for (const [index, group] of table.indexes.entries()) if (absent.includes(deriveSQLiteIndexName(table.name, group))) {
|
|
1741
|
+
const sql = schemaToIndexes(table)[index];
|
|
1742
|
+
if (sql !== void 0) database.exec(sql);
|
|
1743
|
+
}
|
|
1744
|
+
identities.set(table.name, previousIdentities.get(table.name) ?? {});
|
|
1745
|
+
}
|
|
1746
|
+
});
|
|
1747
|
+
this.#schema = map;
|
|
1748
|
+
this.#identities = identities;
|
|
1749
|
+
this.#database = database;
|
|
1750
|
+
} catch (error) {
|
|
1751
|
+
try {
|
|
1752
|
+
database.close();
|
|
1753
|
+
} catch {}
|
|
1754
|
+
this.#schema = /* @__PURE__ */ new Map();
|
|
1755
|
+
this.#identities = /* @__PURE__ */ new Map();
|
|
1756
|
+
throw error;
|
|
1326
1757
|
}
|
|
1327
|
-
database.exec("CREATE TABLE IF NOT EXISTS " + quote(META_TABLE) + " (\"id\" INTEGER, \"version\" INTEGER, \"schema\" TEXT, PRIMARY KEY (\"id\"))");
|
|
1328
|
-
this.#schema = map;
|
|
1329
|
-
this.#database = database;
|
|
1330
1758
|
});
|
|
1331
1759
|
}
|
|
1332
1760
|
async close() {
|
|
1333
|
-
this.#
|
|
1334
|
-
this.#
|
|
1761
|
+
this.#root();
|
|
1762
|
+
this.#guard(() => {
|
|
1763
|
+
this.#database?.close();
|
|
1764
|
+
this.#database = void 0;
|
|
1765
|
+
});
|
|
1335
1766
|
}
|
|
1336
1767
|
async read(table, key) {
|
|
1337
|
-
|
|
1338
|
-
return this.#
|
|
1339
|
-
const row = this.#require().prepare("SELECT * FROM " + quote(table) + " WHERE " + quote(schema.primary) + " = ?").get([this.#key(key, schema)]);
|
|
1340
|
-
return row === void 0 ? void 0 : decodeRow(row, schema);
|
|
1341
|
-
});
|
|
1768
|
+
this.#root();
|
|
1769
|
+
return this.#read(table, key);
|
|
1342
1770
|
}
|
|
1343
|
-
async write(table, key, row) {
|
|
1344
|
-
|
|
1345
|
-
this.#
|
|
1346
|
-
const encoded = encodeRow({
|
|
1347
|
-
...row,
|
|
1348
|
-
[schema.primary]: key
|
|
1349
|
-
}, schema);
|
|
1350
|
-
const names = schema.columns.map((column) => column.name);
|
|
1351
|
-
const values = extractValues(encoded, names, table);
|
|
1352
|
-
this.#require().prepare("INSERT OR REPLACE INTO " + quote(table) + " (" + names.map(quote).join(", ") + ") VALUES (" + names.map(() => "?").join(", ") + ")").run(values);
|
|
1353
|
-
});
|
|
1771
|
+
async write(table, key, row, options) {
|
|
1772
|
+
this.#root();
|
|
1773
|
+
await this.#write(table, key, row, options);
|
|
1354
1774
|
}
|
|
1355
|
-
async
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1775
|
+
async insert(table, key, row, options) {
|
|
1776
|
+
this.#root();
|
|
1777
|
+
await this.#insert(table, key, row, options);
|
|
1778
|
+
}
|
|
1779
|
+
async delete(table, key, options) {
|
|
1780
|
+
this.#root();
|
|
1781
|
+
return this.#delete(table, key, options);
|
|
1360
1782
|
}
|
|
1361
1783
|
async keys(table) {
|
|
1362
|
-
|
|
1363
|
-
return this.#
|
|
1364
|
-
const primary = quote(schema.primary);
|
|
1365
|
-
const rows = this.#require().prepare("SELECT " + primary + " FROM " + quote(table) + " ORDER BY " + primary).all();
|
|
1366
|
-
const keys = [];
|
|
1367
|
-
for (const row of rows) {
|
|
1368
|
-
const value = row[schema.primary];
|
|
1369
|
-
if (typeof value === "string" || typeof value === "number") keys.push(value);
|
|
1370
|
-
}
|
|
1371
|
-
return keys;
|
|
1372
|
-
});
|
|
1784
|
+
this.#root();
|
|
1785
|
+
return this.#keys(table);
|
|
1373
1786
|
}
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
const iterator = this.#guard(() => this.#require().prepare("SELECT * FROM " + quote(table) + " ORDER BY " + quote(schema.primary)).iterate())[Symbol.iterator]();
|
|
1377
|
-
while (true) {
|
|
1378
|
-
const step = this.#guard(() => iterator.next());
|
|
1379
|
-
if (step.done === true) return;
|
|
1380
|
-
yield this.#guard(() => decodeRow(step.value, schema));
|
|
1381
|
-
}
|
|
1787
|
+
scan(table) {
|
|
1788
|
+
return new DriverIterator(this.#scan(table)[Symbol.asyncIterator](), () => this.#root());
|
|
1382
1789
|
}
|
|
1383
1790
|
async clear(table) {
|
|
1384
|
-
this.#
|
|
1385
|
-
this.#
|
|
1386
|
-
this.#require().prepare("DELETE FROM " + quote(table)).run();
|
|
1387
|
-
});
|
|
1388
|
-
}
|
|
1389
|
-
async records(table, criteria) {
|
|
1390
|
-
const schema = this.#table(table);
|
|
1391
|
-
if (isExactCriteria(criteria, schema)) return this.#guard(() => {
|
|
1392
|
-
const { sql, params } = compileCriteria(criteria, schema);
|
|
1393
|
-
return this.#require().prepare("SELECT * FROM " + quote(table) + (sql === "" ? "" : " " + sql)).all(params).map((row) => decodeRow(row, schema));
|
|
1394
|
-
});
|
|
1395
|
-
const rows = [];
|
|
1396
|
-
for await (const row of this.scan(table)) rows.push(row);
|
|
1397
|
-
return applyCriteria(rows, criteria);
|
|
1791
|
+
this.#root();
|
|
1792
|
+
await this.#clear(table);
|
|
1398
1793
|
}
|
|
1399
|
-
async
|
|
1794
|
+
async records(table, input) {
|
|
1795
|
+
validatePage(input);
|
|
1796
|
+
this.#root();
|
|
1400
1797
|
const schema = this.#table(table);
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
const value = this.#require().prepare("SELECT COUNT(*) AS count FROM " + quote(table) + (sql === "" ? "" : " " + sql)).get(params)?.count;
|
|
1405
|
-
return typeof value === "number" || typeof value === "bigint" ? Number(value) : 0;
|
|
1798
|
+
if (matchesQueryExactly(input, schema)) return this.#guard(() => {
|
|
1799
|
+
const { sql, parameters } = compileQuerySQL(input, schema);
|
|
1800
|
+
return this.#require().prepare("SELECT * FROM " + quoteIdentifier(table) + (sql === "" ? "" : " " + sql)).all(parameters).map((row) => decodeRow(row, schema));
|
|
1406
1801
|
});
|
|
1407
1802
|
const rows = [];
|
|
1408
|
-
for await (const row of this
|
|
1409
|
-
return
|
|
1803
|
+
for await (const row of this.#scan(table)) rows.push(row);
|
|
1804
|
+
return applyQuery(rows, input);
|
|
1410
1805
|
}
|
|
1411
|
-
async aggregate(table, operation, column,
|
|
1806
|
+
async aggregate(table, operation, column, input) {
|
|
1807
|
+
validatePage(input);
|
|
1808
|
+
this.#root();
|
|
1412
1809
|
const schema = this.#table(table);
|
|
1413
|
-
const conditions =
|
|
1414
|
-
const conditionsExact = conditions.every((condition) =>
|
|
1415
|
-
const columnExact = operation
|
|
1810
|
+
const conditions = input.conditions ?? [];
|
|
1811
|
+
const conditionsExact = conditions.every((condition) => matchesConditionExactly(condition, schema));
|
|
1812
|
+
const columnExact = matchesAggregateExactly(operation, column, schema);
|
|
1416
1813
|
if (conditionsExact && columnExact) return this.#guard(() => {
|
|
1417
|
-
const { sql,
|
|
1418
|
-
const value = this.#require().prepare("SELECT " +
|
|
1814
|
+
const { sql, parameters } = compileWhere(conditions, schema);
|
|
1815
|
+
const value = this.#require().prepare("SELECT " + compileAggregateSQL(operation, column) + " AS value FROM " + quoteIdentifier(table) + (sql === "" ? "" : " " + sql)).get(parameters)?.value;
|
|
1419
1816
|
return value === null || value === void 0 ? void 0 : Number(value);
|
|
1420
1817
|
});
|
|
1421
1818
|
const rows = [];
|
|
1422
|
-
for await (const row of this
|
|
1819
|
+
for await (const row of this.#scan(table)) rows.push(row);
|
|
1423
1820
|
return computeAggregate(filterRows(rows, conditions), operation, column);
|
|
1424
1821
|
}
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
if (conditions.every((condition) => isExactCondition(condition, schema))) {
|
|
1429
|
-
const compiled = compileCriteria({
|
|
1430
|
-
conditions,
|
|
1431
|
-
...criteria.limit !== void 0 ? { limit: criteria.limit } : {},
|
|
1432
|
-
...criteria.offset !== void 0 ? { offset: criteria.offset } : {}
|
|
1433
|
-
}, schema);
|
|
1434
|
-
for (const row of this.#require().prepare("SELECT * FROM " + quote(table) + (compiled.sql === "" ? "" : " " + compiled.sql)).iterate(compiled.params)) yield decodeRow(row, schema);
|
|
1435
|
-
return;
|
|
1436
|
-
}
|
|
1437
|
-
const offset = criteria.offset ?? 0;
|
|
1438
|
-
const limit = criteria.limit;
|
|
1439
|
-
let skipped = 0;
|
|
1440
|
-
let yielded = 0;
|
|
1441
|
-
for await (const row of this.scan(table)) {
|
|
1442
|
-
if (limit !== void 0 && yielded >= limit) return;
|
|
1443
|
-
if (conditions.length > 0 && !matchesCriteria(row, conditions)) continue;
|
|
1444
|
-
if (skipped < offset) {
|
|
1445
|
-
skipped += 1;
|
|
1446
|
-
continue;
|
|
1447
|
-
}
|
|
1448
|
-
yield row;
|
|
1449
|
-
yielded += 1;
|
|
1450
|
-
}
|
|
1822
|
+
stream(table, input) {
|
|
1823
|
+
validatePage(input);
|
|
1824
|
+
return new DriverIterator(this.#stream(table, input)[Symbol.asyncIterator](), () => this.#root());
|
|
1451
1825
|
}
|
|
1452
1826
|
/**
|
|
1453
1827
|
* Begin a native transaction — real `BEGIN`, `COMMIT`, `ROLLBACK`.
|
|
1454
1828
|
*
|
|
1455
1829
|
* @remarks
|
|
1456
|
-
*
|
|
1457
|
-
*
|
|
1830
|
+
* The callback receives a scoped {@link StorageInterface}. Fulfillment
|
|
1831
|
+
* commits and returns its value; rejection rolls back and preserves the
|
|
1832
|
+
* original error. Root operations and nesting conflict while active, and a
|
|
1833
|
+
* captured capability conflicts after settlement.
|
|
1458
1834
|
*
|
|
1459
|
-
* @returns
|
|
1835
|
+
* @returns The callback's resolved value
|
|
1460
1836
|
*/
|
|
1461
|
-
async transaction() {
|
|
1837
|
+
async transaction(scope) {
|
|
1838
|
+
this.#root();
|
|
1462
1839
|
const database = this.#require();
|
|
1463
|
-
this.#guard(() => database.
|
|
1840
|
+
this.#guard(() => database.begin());
|
|
1464
1841
|
const token = {};
|
|
1465
1842
|
this.#transaction = token;
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1843
|
+
this.#candidateSchema = new Map(this.#schema);
|
|
1844
|
+
this.#candidateIdentities = new Map(this.#identities);
|
|
1845
|
+
try {
|
|
1846
|
+
let value;
|
|
1847
|
+
try {
|
|
1848
|
+
value = await scope(this.#capability(token));
|
|
1849
|
+
} catch (error) {
|
|
1850
|
+
this.#guard(() => database.rollback());
|
|
1851
|
+
throw error;
|
|
1852
|
+
}
|
|
1853
|
+
try {
|
|
1854
|
+
this.#guard(() => database.commit());
|
|
1855
|
+
} catch (error) {
|
|
1856
|
+
if (database.transacting) this.#guard(() => database.rollback());
|
|
1857
|
+
throw error;
|
|
1858
|
+
}
|
|
1859
|
+
const schema = this.#candidateSchema;
|
|
1860
|
+
const identities = this.#candidateIdentities;
|
|
1861
|
+
if (schema === void 0 || identities === void 0) throw new DatabaseError("CONFLICT", "Transaction scope has settled");
|
|
1862
|
+
this.#schema = schema;
|
|
1863
|
+
this.#identities = identities;
|
|
1864
|
+
return value;
|
|
1865
|
+
} finally {
|
|
1866
|
+
if (this.#transaction === token) {
|
|
1867
|
+
this.#transaction = void 0;
|
|
1868
|
+
this.#candidateSchema = void 0;
|
|
1869
|
+
this.#candidateIdentities = void 0;
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1470
1872
|
}
|
|
1471
1873
|
/**
|
|
1472
1874
|
* Apply a {@link Migration} plan by executing each step's projected DDL
|
|
1473
|
-
* ({@link import('../
|
|
1875
|
+
* ({@link import('../compilers.js').stepToSQL}).
|
|
1474
1876
|
*
|
|
1475
1877
|
* @remarks
|
|
1476
1878
|
* Atomicity is provided by whichever native transaction is active: when
|
|
1477
|
-
* this driver's own `transaction()`
|
|
1879
|
+
* this driver's own `transaction()` callback is active (the
|
|
1478
1880
|
* core's versioned reconcile / migrate path joins migrate + stamp under
|
|
1479
1881
|
* one native `BEGIN`), the plan's DDL runs directly inside that enclosing
|
|
1480
|
-
* transaction — a mid-plan failure
|
|
1481
|
-
*
|
|
1882
|
+
* transaction — a mid-plan failure rejects the callback and the driver
|
|
1883
|
+
* rolls it back. node:sqlite (and SQLite
|
|
1482
1884
|
* generally) rejects a nested `BEGIN`, so this driver must never open a
|
|
1483
1885
|
* second native transaction while one is already open. Otherwise (no
|
|
1484
1886
|
* enclosing transaction), `migrate` wraps the plan in its own native
|
|
1485
1887
|
* `database.transaction` — atomic on its own: a mid-plan failure rolls
|
|
1486
|
-
* back every DDL statement already applied by the plan. A
|
|
1487
|
-
*
|
|
1488
|
-
*
|
|
1489
|
-
*
|
|
1490
|
-
* active
|
|
1888
|
+
* back every DDL statement already applied by the plan. A scoped migration
|
|
1889
|
+
* uses one fixed internal savepoint literal because the published SQLite
|
|
1890
|
+
* wrapper intentionally exposes raw `exec` but no savepoint manager. That
|
|
1891
|
+
* savepoint contains a caught inner migration so the outer callback
|
|
1892
|
+
* transaction remains active and may continue safely. A step referencing a
|
|
1893
|
+
* table not in this driver's declared schema (and that is not itself a
|
|
1894
|
+
* `table.add`) throws `DatabaseError` `MIGRATION` before any DDL for that
|
|
1895
|
+
* step runs.
|
|
1491
1896
|
*
|
|
1492
|
-
* @param
|
|
1897
|
+
* @param input - The migration plan and optional metadata stamp to apply atomically
|
|
1493
1898
|
*/
|
|
1494
|
-
async migrate(
|
|
1899
|
+
async migrate(input) {
|
|
1900
|
+
this.#root();
|
|
1495
1901
|
const database = this.#require();
|
|
1496
|
-
const
|
|
1902
|
+
const owned = cloneMigrationInput(input);
|
|
1903
|
+
const projected = projectMigrationSchema([...this.#schema.values()], owned.plan.steps);
|
|
1904
|
+
const identities = this.#projectIdentities(this.#identities, owned.plan.steps);
|
|
1905
|
+
if (owned.metadata !== void 0 && !equalsValue(normalizeDriverSchema(owned.metadata.schema), projected)) throw new DatabaseError("MIGRATION", "Migration metadata schema does not match the plan", {
|
|
1906
|
+
projected,
|
|
1907
|
+
metadata: owned.metadata.schema
|
|
1908
|
+
});
|
|
1497
1909
|
this.#guard(() => {
|
|
1498
|
-
|
|
1499
|
-
|
|
1910
|
+
database.transaction(() => {
|
|
1911
|
+
this.#applyPlan(database, owned);
|
|
1912
|
+
if (owned.metadata !== void 0) this.#writeMetadata(database, owned.metadata);
|
|
1913
|
+
});
|
|
1500
1914
|
});
|
|
1501
|
-
this.#schema =
|
|
1915
|
+
this.#schema = new Map(projected.map((table) => [table.name, table]));
|
|
1916
|
+
this.#identities = identities;
|
|
1502
1917
|
}
|
|
1503
1918
|
/**
|
|
1504
|
-
* Read the persisted {@link
|
|
1919
|
+
* Read the persisted {@link DriverMetadata} from the reserved `_metadata` table.
|
|
1505
1920
|
*
|
|
1506
|
-
* @returns The last-stamped `
|
|
1921
|
+
* @returns The last-stamped `DriverMetadata`, or `undefined` when never stamped
|
|
1507
1922
|
* (or the stored row is malformed)
|
|
1508
1923
|
*/
|
|
1509
|
-
async
|
|
1510
|
-
|
|
1924
|
+
async metadata() {
|
|
1925
|
+
this.#root();
|
|
1926
|
+
return this.#metadata();
|
|
1927
|
+
}
|
|
1928
|
+
/**
|
|
1929
|
+
* Persist an owned metadata snapshot into the reserved `_metadata` table's
|
|
1930
|
+
* single row.
|
|
1931
|
+
*
|
|
1932
|
+
* @param metadata - The {@link DriverMetadata} to persist
|
|
1933
|
+
*/
|
|
1934
|
+
async stamp(metadata) {
|
|
1935
|
+
this.#root();
|
|
1936
|
+
await this.#stamp(metadata);
|
|
1937
|
+
}
|
|
1938
|
+
async snapshot(tables) {
|
|
1939
|
+
this.#root();
|
|
1940
|
+
const captured = this.#guard(() => {
|
|
1941
|
+
const database = this.#require();
|
|
1942
|
+
const names = tables === void 0 ? [...this.#schema.keys()] : [...new Set(tables)];
|
|
1943
|
+
const snapshots = /* @__PURE__ */ new Map();
|
|
1944
|
+
for (const name of names) {
|
|
1945
|
+
const schema = this.#schema.get(name);
|
|
1946
|
+
const identity = this.#identities.get(name);
|
|
1947
|
+
if (schema === void 0 || identity === void 0) continue;
|
|
1948
|
+
snapshots.set(name, {
|
|
1949
|
+
identity,
|
|
1950
|
+
rows: database.prepare("SELECT * FROM " + quoteIdentifier(name)).all().map((row) => decodeRow(row, schema)),
|
|
1951
|
+
schema
|
|
1952
|
+
});
|
|
1953
|
+
}
|
|
1954
|
+
return snapshots;
|
|
1955
|
+
});
|
|
1956
|
+
return async () => {
|
|
1957
|
+
this.#root();
|
|
1958
|
+
const replacements = /* @__PURE__ */ new Map();
|
|
1959
|
+
for (const [name, capture] of captured) {
|
|
1960
|
+
const schema = this.#schema.get(name);
|
|
1961
|
+
if (schema === void 0 || this.#identities.get(name) !== capture.identity) continue;
|
|
1962
|
+
const plan = planMigration([capture.schema], [schema]);
|
|
1963
|
+
const rows = migrateRows(capture.rows, plan.steps);
|
|
1964
|
+
if (rows.length !== capture.rows.length) throw new DatabaseError("MIGRATION", "Snapshot row count changed during migration", { table: name });
|
|
1965
|
+
const names = schema.columns.map((column) => column.name);
|
|
1966
|
+
const values = [];
|
|
1967
|
+
for (const [index, row] of rows.entries()) {
|
|
1968
|
+
const key = extractKey(row, schema.primary);
|
|
1969
|
+
if (!isKey(key)) throw new DatabaseError("MIGRATION", "Snapshot row has no usable primary key", {
|
|
1970
|
+
table: name,
|
|
1971
|
+
column: schema.primary,
|
|
1972
|
+
index
|
|
1973
|
+
});
|
|
1974
|
+
const encoded = encodeRow(bindRowKey(row, schema.primary, key), schema);
|
|
1975
|
+
values.push(extractValues(encoded, names, name));
|
|
1976
|
+
}
|
|
1977
|
+
replacements.set(name, {
|
|
1978
|
+
names,
|
|
1979
|
+
values
|
|
1980
|
+
});
|
|
1981
|
+
}
|
|
1982
|
+
this.#guard(() => {
|
|
1983
|
+
const current = this.#require();
|
|
1984
|
+
current.transaction(() => {
|
|
1985
|
+
for (const [name, replacement] of replacements) {
|
|
1986
|
+
current.exec("DELETE FROM " + quoteIdentifier(name));
|
|
1987
|
+
const statement = current.prepare("INSERT OR REPLACE INTO " + quoteIdentifier(name) + " (" + replacement.names.map(quoteIdentifier).join(", ") + ") VALUES (" + replacement.names.map(() => "?").join(", ") + ")");
|
|
1988
|
+
for (const values of replacement.values) statement.run(values);
|
|
1989
|
+
}
|
|
1990
|
+
});
|
|
1991
|
+
});
|
|
1992
|
+
};
|
|
1993
|
+
}
|
|
1994
|
+
async #read(table, key) {
|
|
1995
|
+
const schema = this.#table(table);
|
|
1996
|
+
return this.#guard(() => {
|
|
1997
|
+
const row = this.#require().prepare("SELECT * FROM " + quoteIdentifier(table) + " WHERE " + quoteIdentifier(schema.primary) + " = ?").get([this.#key(key, schema)]);
|
|
1998
|
+
return row === void 0 ? void 0 : decodeRow(row, schema);
|
|
1999
|
+
});
|
|
2000
|
+
}
|
|
2001
|
+
async #write(table, key, row, options) {
|
|
2002
|
+
const schema = this.#table(table);
|
|
2003
|
+
this.#guard(() => {
|
|
2004
|
+
const encoded = encodeRow(bindRowKey(row, schema.primary, key), schema);
|
|
2005
|
+
const names = schema.columns.map((column) => column.name);
|
|
2006
|
+
const values = extractValues(encoded, names, table);
|
|
2007
|
+
const statement = this.#require().prepare("INSERT OR REPLACE INTO " + quoteIdentifier(table) + " (" + names.map(quoteIdentifier).join(", ") + ") VALUES (" + names.map(() => "?").join(", ") + ")");
|
|
2008
|
+
checkAbort(options?.signal);
|
|
2009
|
+
statement.run(values);
|
|
2010
|
+
});
|
|
2011
|
+
}
|
|
2012
|
+
async #insert(table, key, row, options) {
|
|
2013
|
+
const schema = this.#table(table);
|
|
2014
|
+
this.#guard(() => {
|
|
2015
|
+
const encoded = encodeRow(bindRowKey(row, schema.primary, key), schema);
|
|
2016
|
+
const names = schema.columns.map((column) => column.name);
|
|
2017
|
+
const values = extractValues(encoded, names, table);
|
|
2018
|
+
const statement = this.#require().prepare("INSERT INTO " + quoteIdentifier(table) + " (" + names.map(quoteIdentifier).join(", ") + ") VALUES (" + names.map(() => "?").join(", ") + ")");
|
|
2019
|
+
checkAbort(options?.signal);
|
|
2020
|
+
statement.run(values);
|
|
2021
|
+
});
|
|
2022
|
+
}
|
|
2023
|
+
async #delete(table, key, options) {
|
|
2024
|
+
const schema = this.#table(table);
|
|
2025
|
+
return this.#guard(() => {
|
|
2026
|
+
const statement = this.#require().prepare("DELETE FROM " + quoteIdentifier(table) + " WHERE " + quoteIdentifier(schema.primary) + " = ?");
|
|
2027
|
+
checkAbort(options?.signal);
|
|
2028
|
+
return statement.run([this.#key(key, schema)]).changes > 0;
|
|
2029
|
+
});
|
|
2030
|
+
}
|
|
2031
|
+
async #keys(table) {
|
|
2032
|
+
const schema = this.#table(table);
|
|
2033
|
+
return this.#guard(() => {
|
|
2034
|
+
const primary = quoteIdentifier(schema.primary);
|
|
2035
|
+
const rows = this.#require().prepare("SELECT " + primary + " FROM " + quoteIdentifier(table) + " ORDER BY " + primary).all();
|
|
2036
|
+
const keys = [];
|
|
2037
|
+
for (const row of rows) {
|
|
2038
|
+
const value = row[schema.primary];
|
|
2039
|
+
if (typeof value === "string" || typeof value === "number") keys.push(value);
|
|
2040
|
+
}
|
|
2041
|
+
return keys;
|
|
2042
|
+
});
|
|
2043
|
+
}
|
|
2044
|
+
async *#scan(table) {
|
|
2045
|
+
const schema = this.#table(table);
|
|
2046
|
+
for await (const row of this.#iterate(schema, "SELECT * FROM " + quoteIdentifier(table) + " ORDER BY " + quoteIdentifier(schema.primary))) yield row;
|
|
2047
|
+
}
|
|
2048
|
+
async *#stream(table, input) {
|
|
2049
|
+
const schema = this.#table(table);
|
|
2050
|
+
const conditions = input.conditions ?? [];
|
|
2051
|
+
if (conditions.every((condition) => matchesConditionExactly(condition, schema))) {
|
|
2052
|
+
const compiled = compileQuerySQL({
|
|
2053
|
+
conditions,
|
|
2054
|
+
...input.limit !== void 0 ? { limit: input.limit } : {},
|
|
2055
|
+
...input.offset !== void 0 ? { offset: input.offset } : {}
|
|
2056
|
+
}, schema);
|
|
2057
|
+
for await (const row of this.#iterate(schema, "SELECT * FROM " + quoteIdentifier(table) + (compiled.sql === "" ? "" : " " + compiled.sql), compiled.parameters)) yield row;
|
|
2058
|
+
return;
|
|
2059
|
+
}
|
|
2060
|
+
const offset = input.offset ?? 0;
|
|
2061
|
+
const limit = input.limit;
|
|
2062
|
+
let skipped = 0;
|
|
2063
|
+
let yielded = 0;
|
|
2064
|
+
for await (const row of this.#scan(table)) {
|
|
2065
|
+
if (limit !== void 0 && yielded >= limit) return;
|
|
2066
|
+
if (conditions.length > 0 && !matchesQuery(row, conditions)) continue;
|
|
2067
|
+
if (skipped < offset) {
|
|
2068
|
+
skipped += 1;
|
|
2069
|
+
continue;
|
|
2070
|
+
}
|
|
2071
|
+
yield row;
|
|
2072
|
+
yielded += 1;
|
|
2073
|
+
}
|
|
2074
|
+
}
|
|
2075
|
+
async *#iterate(schema, sql, parameters = []) {
|
|
2076
|
+
const iterator = this.#guard(() => this.#require().prepare(sql).iterate(parameters)[Symbol.iterator]());
|
|
2077
|
+
try {
|
|
2078
|
+
while (true) {
|
|
2079
|
+
const step = this.#guard(() => iterator.next());
|
|
2080
|
+
if (step.done === true) return;
|
|
2081
|
+
yield this.#guard(() => decodeRow(step.value, schema));
|
|
2082
|
+
}
|
|
2083
|
+
} finally {
|
|
2084
|
+
if (iterator.return !== void 0) this.#guard(() => iterator.return?.());
|
|
2085
|
+
}
|
|
2086
|
+
}
|
|
2087
|
+
async #clear(table) {
|
|
2088
|
+
this.#table(table);
|
|
2089
|
+
this.#guard(() => {
|
|
2090
|
+
this.#require().prepare("DELETE FROM " + quoteIdentifier(table)).run();
|
|
2091
|
+
});
|
|
2092
|
+
}
|
|
2093
|
+
async #metadata() {
|
|
2094
|
+
return this.#guard(() => this.#readMetadata(this.#require()));
|
|
2095
|
+
}
|
|
2096
|
+
#ensureMetadataTable(database) {
|
|
2097
|
+
database.exec("CREATE TABLE IF NOT EXISTS " + quoteIdentifier(METADATA_TABLE) + " (\"id\" INTEGER, \"version\" INTEGER, \"schema\" TEXT, PRIMARY KEY (\"id\"))");
|
|
2098
|
+
}
|
|
2099
|
+
#validateTable(database, schema) {
|
|
2100
|
+
const object = database.prepare("SELECT \"type\" AS \"category\" FROM \"sqlite_schema\" WHERE \"name\" = ?").get([schema.name]);
|
|
2101
|
+
if (object === void 0) return void 0;
|
|
2102
|
+
if (object.category !== "table") throw new DatabaseError("DRIVER", "SQLite object is not a table", {
|
|
2103
|
+
table: schema.name,
|
|
2104
|
+
aspect: "object",
|
|
2105
|
+
actual: object.category
|
|
2106
|
+
});
|
|
2107
|
+
const trigger = database.prepare("SELECT \"name\" FROM \"sqlite_schema\" WHERE \"type\" = ? AND \"tbl_name\" = ? LIMIT 1").get(["trigger", schema.name]);
|
|
2108
|
+
if (trigger !== void 0) throw new DatabaseError("DRIVER", "SQLite table has an undeclared trigger", {
|
|
2109
|
+
table: schema.name,
|
|
2110
|
+
aspect: "trigger",
|
|
2111
|
+
actual: trigger.name
|
|
2112
|
+
});
|
|
2113
|
+
const columns = database.prepare("SELECT * FROM pragma_table_xinfo(?)").all([schema.name]);
|
|
2114
|
+
if (columns.length !== schema.columns.length) throw new DatabaseError("DRIVER", "SQLite table has different columns", {
|
|
2115
|
+
table: schema.name,
|
|
2116
|
+
aspect: "columns",
|
|
2117
|
+
expected: schema.columns.map((column) => column.name),
|
|
2118
|
+
actual: columns.map((column) => column.name)
|
|
2119
|
+
});
|
|
2120
|
+
for (const declared of schema.columns) {
|
|
2121
|
+
const column = columns.find((candidate) => candidate.name === declared.name);
|
|
2122
|
+
if (column === void 0) throw new DatabaseError("DRIVER", "SQLite table is missing a declared column", {
|
|
2123
|
+
table: schema.name,
|
|
2124
|
+
aspect: "column",
|
|
2125
|
+
column: declared.name
|
|
2126
|
+
});
|
|
2127
|
+
const expectedRequired = !declared.optional && !declared.nullable;
|
|
2128
|
+
const required = column.notnull === 1 || column.notnull === 1n;
|
|
2129
|
+
const expectedPrimary = declared.name === schema.primary ? 1 : 0;
|
|
2130
|
+
const primary = column.pk === expectedPrimary || column.pk === BigInt(expectedPrimary);
|
|
2131
|
+
const hidden = column.hidden === 0 || column.hidden === 0n;
|
|
2132
|
+
if (!matchesSQLiteAffinity(column.type, declared.storage) || required !== expectedRequired || !primary || !hidden) throw new DatabaseError("DRIVER", "SQLite column does not match its declaration", {
|
|
2133
|
+
table: schema.name,
|
|
2134
|
+
aspect: "column",
|
|
2135
|
+
column: declared.name,
|
|
2136
|
+
expected: declared,
|
|
2137
|
+
actual: column
|
|
2138
|
+
});
|
|
2139
|
+
}
|
|
2140
|
+
const indexes = database.prepare("SELECT * FROM pragma_index_list(?)").all([schema.name]);
|
|
2141
|
+
for (const index of indexes) if ((index.unique === 1 || index.unique === 1n) && index.origin !== "pk") throw new DatabaseError("DRIVER", "SQLite table has an undeclared unique constraint", {
|
|
2142
|
+
table: schema.name,
|
|
2143
|
+
aspect: "index",
|
|
2144
|
+
actual: index.name
|
|
2145
|
+
});
|
|
2146
|
+
const missing = [];
|
|
2147
|
+
for (const group of schema.indexes) {
|
|
2148
|
+
const name = deriveSQLiteIndexName(schema.name, group);
|
|
2149
|
+
const index = indexes.find((candidate) => candidate.name === name);
|
|
2150
|
+
if (index === void 0) {
|
|
2151
|
+
missing.push(name);
|
|
2152
|
+
continue;
|
|
2153
|
+
}
|
|
2154
|
+
const ordinary = index.unique === 0 || index.unique === 0n;
|
|
2155
|
+
const complete = index.partial === 0 || index.partial === 0n;
|
|
2156
|
+
if (!ordinary || !complete || index.origin !== "c") throw new DatabaseError("DRIVER", "SQLite index does not match its declaration", {
|
|
2157
|
+
table: schema.name,
|
|
2158
|
+
aspect: "index",
|
|
2159
|
+
index: name,
|
|
2160
|
+
actual: index
|
|
2161
|
+
});
|
|
2162
|
+
const entries = database.prepare("SELECT * FROM pragma_index_xinfo(?)").all([name]).filter((entry) => entry.key === 1 || entry.key === 1n);
|
|
2163
|
+
if (entries.length !== group.length) throw new DatabaseError("DRIVER", "SQLite index has different columns", {
|
|
2164
|
+
table: schema.name,
|
|
2165
|
+
aspect: "index",
|
|
2166
|
+
index: name,
|
|
2167
|
+
expected: group,
|
|
2168
|
+
actual: entries.map((entry) => entry.name)
|
|
2169
|
+
});
|
|
2170
|
+
for (const [position, column] of group.entries()) {
|
|
2171
|
+
const entry = entries.find((candidate) => candidate.seqno === position || candidate.seqno === BigInt(position));
|
|
2172
|
+
const stored = entry !== void 0 && (typeof entry.cid === "number" && Number.isInteger(entry.cid) && entry.cid >= 0 || typeof entry.cid === "bigint" && entry.cid >= 0n);
|
|
2173
|
+
if (entry === void 0 || entry.name !== column || !stored || entry.desc !== 0 && entry.desc !== 0n || entry.coll !== "BINARY") throw new DatabaseError("DRIVER", "SQLite index column does not match its declaration", {
|
|
2174
|
+
table: schema.name,
|
|
2175
|
+
aspect: "index",
|
|
2176
|
+
index: name,
|
|
2177
|
+
column,
|
|
2178
|
+
actual: entry
|
|
2179
|
+
});
|
|
2180
|
+
}
|
|
2181
|
+
}
|
|
2182
|
+
return missing;
|
|
2183
|
+
}
|
|
2184
|
+
#readMetadata(database) {
|
|
2185
|
+
const row = database.prepare("SELECT \"version\", \"schema\" FROM " + quoteIdentifier(METADATA_TABLE) + " WHERE \"id\" = 1").get();
|
|
1511
2186
|
if (row === void 0) return void 0;
|
|
1512
2187
|
const version = row.version;
|
|
1513
2188
|
const text = row.schema;
|
|
1514
|
-
if (typeof text !== "string")
|
|
1515
|
-
|
|
2189
|
+
if (typeof text !== "string") throw new DatabaseError("DRIVER", "Stored SQLite metadata schema is invalid", {
|
|
2190
|
+
table: METADATA_TABLE,
|
|
2191
|
+
aspect: "metadata"
|
|
2192
|
+
});
|
|
2193
|
+
if (typeof version !== "number" && typeof version !== "bigint") throw new DatabaseError("DRIVER", "Stored SQLite metadata version is invalid", {
|
|
2194
|
+
table: METADATA_TABLE,
|
|
2195
|
+
aspect: "metadata"
|
|
2196
|
+
});
|
|
1516
2197
|
let parsed;
|
|
1517
2198
|
try {
|
|
1518
2199
|
parsed = JSON.parse(text);
|
|
1519
|
-
} catch {
|
|
1520
|
-
|
|
2200
|
+
} catch (error) {
|
|
2201
|
+
throw new DatabaseError("DRIVER", "Stored SQLite metadata JSON is invalid", {
|
|
2202
|
+
table: METADATA_TABLE,
|
|
2203
|
+
aspect: "metadata",
|
|
2204
|
+
cause: error
|
|
2205
|
+
});
|
|
1521
2206
|
}
|
|
2207
|
+
if (!Array.isArray(parsed)) throw new DatabaseError("DRIVER", "Stored SQLite metadata schema is invalid", {
|
|
2208
|
+
table: METADATA_TABLE,
|
|
2209
|
+
aspect: "metadata"
|
|
2210
|
+
});
|
|
1522
2211
|
const candidate = {
|
|
1523
2212
|
version: Number(version),
|
|
1524
2213
|
schema: parsed
|
|
1525
2214
|
};
|
|
1526
|
-
|
|
1527
|
-
|
|
2215
|
+
try {
|
|
2216
|
+
return cloneDriverMetadata(candidate);
|
|
2217
|
+
} catch (error) {
|
|
2218
|
+
if (isDatabaseError(error) && error.code === "VALIDATION") throw new DatabaseError("DRIVER", "Stored SQLite metadata is invalid", {
|
|
2219
|
+
table: METADATA_TABLE,
|
|
2220
|
+
aspect: "metadata",
|
|
2221
|
+
cause: error
|
|
2222
|
+
});
|
|
2223
|
+
throw error;
|
|
2224
|
+
}
|
|
1528
2225
|
}
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
2226
|
+
async #stamp(metadata) {
|
|
2227
|
+
const database = this.#require();
|
|
2228
|
+
const owned = cloneDriverMetadata(metadata);
|
|
2229
|
+
this.#guard(() => this.#writeMetadata(database, owned));
|
|
2230
|
+
}
|
|
2231
|
+
#writeMetadata(database, metadata) {
|
|
2232
|
+
database.prepare("INSERT OR REPLACE INTO " + quoteIdentifier(METADATA_TABLE) + " (\"id\", \"version\", \"schema\") VALUES (1, ?, ?)").run([metadata.version, JSON.stringify(metadata.schema)]);
|
|
2233
|
+
}
|
|
2234
|
+
#capability(token) {
|
|
2235
|
+
return {
|
|
2236
|
+
read: this.#readTransaction.bind(this, token),
|
|
2237
|
+
write: this.#writeTransaction.bind(this, token),
|
|
2238
|
+
insert: this.#insertTransaction.bind(this, token),
|
|
2239
|
+
delete: this.#deleteTransaction.bind(this, token),
|
|
2240
|
+
keys: this.#keysTransaction.bind(this, token),
|
|
2241
|
+
scan: this.#scanTransaction.bind(this, token),
|
|
2242
|
+
clear: this.#clearTransaction.bind(this, token),
|
|
2243
|
+
migrate: this.#migrateTransaction.bind(this, token),
|
|
2244
|
+
metadata: this.#metadataTransaction.bind(this, token),
|
|
2245
|
+
stamp: this.#stampTransaction.bind(this, token)
|
|
2246
|
+
};
|
|
2247
|
+
}
|
|
2248
|
+
async #readTransaction(token, table, key) {
|
|
2249
|
+
this.#requireTransaction(token);
|
|
2250
|
+
return this.#read(table, key);
|
|
2251
|
+
}
|
|
2252
|
+
async #writeTransaction(token, table, key, row, options) {
|
|
2253
|
+
this.#requireTransaction(token);
|
|
2254
|
+
await this.#write(table, key, row, options);
|
|
2255
|
+
}
|
|
2256
|
+
async #insertTransaction(token, table, key, row, options) {
|
|
2257
|
+
this.#requireTransaction(token);
|
|
2258
|
+
await this.#insert(table, key, row, options);
|
|
2259
|
+
}
|
|
2260
|
+
async #deleteTransaction(token, table, key, options) {
|
|
2261
|
+
this.#requireTransaction(token);
|
|
2262
|
+
return this.#delete(table, key, options);
|
|
2263
|
+
}
|
|
2264
|
+
async #keysTransaction(token, table) {
|
|
2265
|
+
this.#requireTransaction(token);
|
|
2266
|
+
return this.#keys(table);
|
|
2267
|
+
}
|
|
2268
|
+
#scanTransaction(token, table) {
|
|
2269
|
+
return new DriverIterator(this.#scan(table)[Symbol.asyncIterator](), () => {
|
|
2270
|
+
this.#requireTransaction(token);
|
|
1538
2271
|
});
|
|
1539
2272
|
}
|
|
1540
|
-
async
|
|
2273
|
+
async #clearTransaction(token, table) {
|
|
2274
|
+
this.#requireTransaction(token);
|
|
2275
|
+
await this.#clear(table);
|
|
2276
|
+
}
|
|
2277
|
+
async #migrateTransaction(token, input) {
|
|
2278
|
+
this.#requireTransaction(token);
|
|
1541
2279
|
const database = this.#require();
|
|
1542
|
-
const
|
|
1543
|
-
const
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
}
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
2280
|
+
const owned = cloneMigrationInput(input);
|
|
2281
|
+
const candidate = this.#candidateSchema;
|
|
2282
|
+
const identities = this.#candidateIdentities;
|
|
2283
|
+
if (candidate === void 0 || identities === void 0) throw new DatabaseError("CONFLICT", "Transaction scope has settled");
|
|
2284
|
+
const projected = projectMigrationSchema([...candidate.values()], owned.plan.steps);
|
|
2285
|
+
const projectedIdentities = this.#projectIdentities(identities, owned.plan.steps);
|
|
2286
|
+
if (owned.metadata !== void 0 && !equalsValue(normalizeDriverSchema(owned.metadata.schema), projected)) throw new DatabaseError("MIGRATION", "Migration metadata schema does not match the plan", {
|
|
2287
|
+
projected,
|
|
2288
|
+
metadata: owned.metadata.schema
|
|
2289
|
+
});
|
|
2290
|
+
this.#guard(() => {
|
|
2291
|
+
database.exec("SAVEPOINT \"_orkestrel_migration\"");
|
|
2292
|
+
try {
|
|
2293
|
+
this.#applyPlan(database, owned);
|
|
2294
|
+
if (owned.metadata !== void 0) this.#writeMetadata(database, owned.metadata);
|
|
2295
|
+
database.exec("RELEASE SAVEPOINT \"_orkestrel_migration\"");
|
|
2296
|
+
} catch (error) {
|
|
2297
|
+
try {
|
|
2298
|
+
database.exec("ROLLBACK TO SAVEPOINT \"_orkestrel_migration\"");
|
|
2299
|
+
} finally {
|
|
2300
|
+
database.exec("RELEASE SAVEPOINT \"_orkestrel_migration\"");
|
|
1559
2301
|
}
|
|
1560
|
-
|
|
1561
|
-
|
|
2302
|
+
throw error;
|
|
2303
|
+
}
|
|
2304
|
+
});
|
|
2305
|
+
this.#candidateSchema = new Map(projected.map((table) => [table.name, table]));
|
|
2306
|
+
this.#candidateIdentities = projectedIdentities;
|
|
2307
|
+
}
|
|
2308
|
+
async #metadataTransaction(token) {
|
|
2309
|
+
this.#requireTransaction(token);
|
|
2310
|
+
return this.#metadata();
|
|
1562
2311
|
}
|
|
1563
|
-
async #
|
|
1564
|
-
|
|
1565
|
-
this.#
|
|
1566
|
-
this.#guard(() => database.exec("COMMIT"));
|
|
2312
|
+
async #stampTransaction(token, metadata) {
|
|
2313
|
+
this.#requireTransaction(token);
|
|
2314
|
+
await this.#stamp(metadata);
|
|
1567
2315
|
}
|
|
1568
|
-
|
|
1569
|
-
if (this.#transaction !== token) throw new DatabaseError("CONFLICT", "Transaction
|
|
1570
|
-
this.#transaction = void 0;
|
|
1571
|
-
this.#guard(() => database.exec("ROLLBACK"));
|
|
2316
|
+
#requireTransaction(token) {
|
|
2317
|
+
if (this.#transaction !== token) throw new DatabaseError("CONFLICT", "Transaction scope has settled");
|
|
1572
2318
|
}
|
|
1573
|
-
#
|
|
2319
|
+
#root() {
|
|
2320
|
+
if (this.#transaction !== void 0) throw new DatabaseError("CONFLICT", "A transaction is active on this driver");
|
|
2321
|
+
}
|
|
2322
|
+
#guard(operation) {
|
|
1574
2323
|
try {
|
|
1575
|
-
return
|
|
2324
|
+
return operation();
|
|
1576
2325
|
} catch (error) {
|
|
1577
2326
|
if (error instanceof DatabaseError) throw error;
|
|
1578
2327
|
if (isSQLiteError(error)) {
|
|
@@ -1601,28 +2350,30 @@ var SQLiteDriver = class {
|
|
|
1601
2350
|
if (this.#database === void 0) throw new DatabaseError("CLOSED", `SQLite database '${this.#path}' is not open`, { path: this.#path });
|
|
1602
2351
|
return this.#database;
|
|
1603
2352
|
}
|
|
2353
|
+
#projectIdentities(identities, steps) {
|
|
2354
|
+
const projected = new Map(identities);
|
|
2355
|
+
for (const step of steps) {
|
|
2356
|
+
if (step.operation === "table.add") projected.set(step.table.name, {});
|
|
2357
|
+
if (step.operation === "table.remove") projected.delete(step.table);
|
|
2358
|
+
}
|
|
2359
|
+
return projected;
|
|
2360
|
+
}
|
|
1604
2361
|
#table(name) {
|
|
1605
2362
|
this.#require();
|
|
1606
|
-
const schema = this.#schema.get(name);
|
|
2363
|
+
const schema = (this.#candidateSchema ?? this.#schema).get(name);
|
|
1607
2364
|
if (schema === void 0) throw new DatabaseError("NOT_FOUND", `Table '${name}' is not in the schema`, { table: name });
|
|
1608
2365
|
return schema;
|
|
1609
2366
|
}
|
|
1610
2367
|
#key(key, schema) {
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
else if (step.operation === "table.remove") schema.delete(step.table);
|
|
1621
|
-
else {
|
|
1622
|
-
const existing = schema.get(table);
|
|
1623
|
-
if (existing !== void 0) schema.set(table, stepToSchema(existing, step));
|
|
1624
|
-
}
|
|
1625
|
-
}
|
|
2368
|
+
return encodeValue(key, schema.columns.find((column) => column.name === schema.primary) ?? {
|
|
2369
|
+
name: schema.primary,
|
|
2370
|
+
storage: "text",
|
|
2371
|
+
optional: false,
|
|
2372
|
+
nullable: false
|
|
2373
|
+
});
|
|
2374
|
+
}
|
|
2375
|
+
#applyPlan(database, input) {
|
|
2376
|
+
for (const step of input.plan.steps) for (const sql of stepToSQL(step)) database.exec(sql);
|
|
1626
2377
|
}
|
|
1627
2378
|
};
|
|
1628
2379
|
//#endregion
|
|
@@ -1631,9 +2382,9 @@ var SQLiteDriver = class {
|
|
|
1631
2382
|
* Create a persistent JSON-file {@link DriverInterface} for the core database layer.
|
|
1632
2383
|
*
|
|
1633
2384
|
* @remarks
|
|
1634
|
-
* Pass it to `createDatabase` from `@orkestrel/database` to run the
|
|
1635
|
-
*
|
|
1636
|
-
* `Table` / `Query`
|
|
2385
|
+
* Pass it to `createDatabase` from `@orkestrel/database` to run the typed
|
|
2386
|
+
* database against a single JSON file instead of memory — the `Database` /
|
|
2387
|
+
* `Table` / `Query` API is unchanged; only where the bytes live changes.
|
|
1637
2388
|
* The driver is the reference `MemoryDriver` plus JSON-file persistence: `open` loads
|
|
1638
2389
|
* the file, every mutation flushes the whole store back, and querying runs through
|
|
1639
2390
|
* the core engine over `scan` (it is scan-only — no native `records` / `count` /
|
|
@@ -1663,19 +2414,20 @@ function createJSONDriver(path) {
|
|
|
1663
2414
|
* Create a trusted-mode SQLite {@link DriverInterface} for the core database layer.
|
|
1664
2415
|
*
|
|
1665
2416
|
* @remarks
|
|
1666
|
-
* Pass it to `createDatabase` from `@orkestrel/database` to run the
|
|
1667
|
-
*
|
|
1668
|
-
* `Query`
|
|
2417
|
+
* Pass it to `createDatabase` from `@orkestrel/database` to run the typed
|
|
2418
|
+
* database against a real SQLite database — the `Database` / `Table` /
|
|
2419
|
+
* `Query` API is unchanged; only where the bytes live changes. Built
|
|
1669
2420
|
* on the published `@orkestrel/sqlite` synchronous wrapper: `open` issues real
|
|
1670
2421
|
* typed `CREATE TABLE` / `CREATE INDEX` statements (reopen-safe) plus a reserved
|
|
1671
|
-
* `
|
|
2422
|
+
* `_metadata` table for `metadata()` / `stamp()` — avoid naming a table `_metadata`.
|
|
1672
2423
|
* Querying, paging, and aggregation run natively (`records` / `count` /
|
|
1673
2424
|
* `aggregate` / `stream`); `transaction` and `migrate` use real `BEGIN` /
|
|
1674
2425
|
* `COMMIT` / `ROLLBACK`, so `migrate` is atomic even mid-plan.
|
|
1675
2426
|
*
|
|
1676
|
-
* @param options -
|
|
1677
|
-
*
|
|
1678
|
-
*
|
|
2427
|
+
* @param options - The {@link SQLiteDriverOptions} bag (`path`, `readonly`,
|
|
2428
|
+
* `timeout`, `references`, `pragmas`); `references` directly enables or
|
|
2429
|
+
* disables foreign-key enforcement, and omission retains the upstream
|
|
2430
|
+
* default; omit the whole bag for an in-memory database
|
|
1679
2431
|
* @returns A {@link DriverInterface} backed by SQLite
|
|
1680
2432
|
*
|
|
1681
2433
|
* @example
|
|
@@ -1685,20 +2437,19 @@ function createJSONDriver(path) {
|
|
|
1685
2437
|
* import { createSQLiteDriver } from '@orkestrel/database/server'
|
|
1686
2438
|
*
|
|
1687
2439
|
* const db = createDatabase({
|
|
1688
|
-
* driver: createSQLiteDriver('data/app.sqlite'),
|
|
2440
|
+
* driver: createSQLiteDriver({ path: 'data/app.sqlite' }),
|
|
1689
2441
|
* tables: { users: { id: stringShape(), name: stringShape() } },
|
|
1690
2442
|
* })
|
|
1691
2443
|
* await db.table('users').set({ id: 'u1', name: 'Ada' }) // persisted to app.sqlite
|
|
1692
2444
|
*
|
|
1693
|
-
* // Or with options:
|
|
2445
|
+
* // Or with additional options:
|
|
1694
2446
|
* createSQLiteDriver({ path: 'data/app.sqlite', pragmas: { journal_mode: 'WAL' } })
|
|
1695
2447
|
* ```
|
|
1696
2448
|
*/
|
|
1697
|
-
function createSQLiteDriver(options
|
|
1698
|
-
|
|
1699
|
-
return new SQLiteDriver(resolved.path ?? ":memory:", resolved);
|
|
2449
|
+
function createSQLiteDriver(options) {
|
|
2450
|
+
return new SQLiteDriver(options);
|
|
1700
2451
|
}
|
|
1701
2452
|
//#endregion
|
|
1702
|
-
export {
|
|
2453
|
+
export { EXACT_COLUMN_STORAGE, EXACT_RANGE_COLUMN_STORAGE, JSONDriver, METADATA_TABLE, SQLiteDriver, compileAggregateSQL, compileColumnSQL, compileConditionSQL, compileFieldSQL, compileJSONTypeSQL, compileOrder, compilePage, compileQuerySQL, compileWhere, createJSONDriver, createSQLiteDriver, decodeRow, decodeValue, deriveSQLiteIndexName, encodeRow, encodeValue, escapeLike, extractValues, findColumnStorage, inferValueStorage, matchesAggregateExactly, matchesConditionExactly, matchesDeclaredStorage, matchesOrderExactly, matchesQueryExactly, matchesSQLiteAffinity, quoteIdentifier, schemaToIndexes, schemaToTable, stepToSQL };
|
|
1703
2454
|
|
|
1704
2455
|
//# sourceMappingURL=index.js.map
|