@bjornpagen/bumbledb 0.1.0 → 0.2.0
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/COOKBOOK.md +1394 -0
- package/README.md +4 -0
- package/dist/closed.d.ts +60 -37
- package/dist/closed.d.ts.map +1 -1
- package/dist/closed.js +159 -40
- package/dist/closed.js.map +1 -1
- package/dist/count.d.ts +64 -17
- package/dist/count.d.ts.map +1 -1
- package/dist/count.js +37 -14
- package/dist/count.js.map +1 -1
- package/dist/db.d.ts +15 -7
- package/dist/db.d.ts.map +1 -1
- package/dist/db.js +13 -5
- package/dist/db.js.map +1 -1
- package/dist/exhume.d.ts +12 -11
- package/dist/exhume.d.ts.map +1 -1
- package/dist/exhume.js +7 -6
- package/dist/exhume.js.map +1 -1
- package/dist/face.d.ts +79 -19
- package/dist/face.d.ts.map +1 -1
- package/dist/face.js +14 -15
- package/dist/face.js.map +1 -1
- package/dist/fields.d.ts +158 -129
- package/dist/fields.d.ts.map +1 -1
- package/dist/fields.js +80 -81
- package/dist/fields.js.map +1 -1
- package/dist/index.d.ts +21 -21
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -12
- package/dist/index.js.map +1 -1
- package/dist/lower.d.ts +6 -3
- package/dist/lower.d.ts.map +1 -1
- package/dist/lower.js +48 -17
- package/dist/lower.js.map +1 -1
- package/dist/marshal.d.ts +36 -21
- package/dist/marshal.d.ts.map +1 -1
- package/dist/marshal.js +41 -25
- package/dist/marshal.js.map +1 -1
- package/dist/native.js +2 -2
- package/dist/query/atom.d.ts +332 -174
- package/dist/query/atom.d.ts.map +1 -1
- package/dist/query/atom.js +72 -172
- package/dist/query/atom.js.map +1 -1
- package/dist/query/lower.d.ts +295 -107
- package/dist/query/lower.d.ts.map +1 -1
- package/dist/query/lower.js +860 -388
- package/dist/query/lower.js.map +1 -1
- package/dist/query/predicate.d.ts +69 -88
- package/dist/query/predicate.d.ts.map +1 -1
- package/dist/query/predicate.js +118 -72
- package/dist/query/predicate.js.map +1 -1
- package/dist/query/run.d.ts +19 -16
- package/dist/query/run.d.ts.map +1 -1
- package/dist/query/run.js +31 -24
- package/dist/query/run.js.map +1 -1
- package/dist/query/scope.d.ts +139 -123
- package/dist/query/scope.d.ts.map +1 -1
- package/dist/query/scope.js +71 -115
- package/dist/query/scope.js.map +1 -1
- package/dist/query/select.d.ts +102 -80
- package/dist/query/select.d.ts.map +1 -1
- package/dist/query/select.js +39 -34
- package/dist/query/select.js.map +1 -1
- package/dist/relation.d.ts +33 -36
- package/dist/relation.d.ts.map +1 -1
- package/dist/relation.js +15 -16
- package/dist/relation.js.map +1 -1
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +19 -8
- package/dist/schema.js.map +1 -1
- package/dist/spec.d.ts +6 -5
- package/dist/spec.d.ts.map +1 -1
- package/dist/spec.js.map +1 -1
- package/dist/statements.d.ts +56 -31
- package/dist/statements.d.ts.map +1 -1
- package/dist/statements.js +38 -13
- package/dist/statements.js.map +1 -1
- package/package.json +4 -3
- package/src/closed.ts +271 -93
- package/src/count.ts +112 -18
- package/src/db.ts +22 -12
- package/src/exhume.ts +12 -11
- package/src/face.ts +114 -22
- package/src/fields.ts +261 -217
- package/src/index.ts +50 -59
- package/src/lower.ts +62 -20
- package/src/marshal.ts +48 -30
- package/src/native.ts +2 -2
- package/src/query/atom.ts +480 -376
- package/src/query/lower.ts +1341 -542
- package/src/query/predicate.ts +198 -161
- package/src/query/run.ts +35 -25
- package/src/query/scope.ts +188 -218
- package/src/query/select.ts +168 -93
- package/src/relation.ts +38 -44
- package/src/schema.ts +22 -12
- package/src/spec.ts +6 -5
- package/src/statements.ts +69 -26
- package/dist/brand.d.ts +0 -59
- package/dist/brand.d.ts.map +0 -1
- package/dist/brand.js +0 -47
- package/dist/brand.js.map +0 -1
- package/src/brand.ts +0 -82
package/dist/marshal.d.ts
CHANGED
|
@@ -1,21 +1,33 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* The marshal layer
|
|
3
|
-
*
|
|
4
|
-
*
|
|
2
|
+
* The marshal layer: fact object ⇄ positional `FactValue[]` by field
|
|
3
|
+
* ordinal, schema-directed, in ONE place only. The write side lowers named
|
|
4
|
+
* host objects to rows in the relation's field-declaration order
|
|
5
5
|
* (declaration order = ordinal ids, the macro's law); the read side decodes
|
|
6
|
-
* rows back to named objects
|
|
7
|
-
* is
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
6
|
+
* rows back to named objects of BARE structural values — the marshal
|
|
7
|
+
* boundary is pure both ways. CAST-FREE, LITERALLY: with structural values
|
|
8
|
+
* there is no brand to assert on the way out (the historical "one
|
|
9
|
+
* sanctioned marshal cast" died with the brand era), so product code
|
|
10
|
+
* carries zero casts — the only trusted seams are the completeness
|
|
11
|
+
* PREDICATES below, which verify the checkable half (every declared field
|
|
12
|
+
* present) and rely on the store as the proof carrier for the rest: a row
|
|
13
|
+
* the engine admitted IS a legal fact of its relation (the same trust
|
|
14
|
+
* direction as Rust's typed readback). Shape mismatches here are genuine
|
|
15
|
+
* failures and THROW typed; they are never domain data.
|
|
11
16
|
*/
|
|
12
|
-
import type {
|
|
17
|
+
import type { AnyField } from "#fields.ts";
|
|
13
18
|
import type { FactValue } from "#native.ts";
|
|
14
19
|
import type { AnyRelation, Fact, FreshKeys, RelationData } from "#relation.ts";
|
|
20
|
+
/**
|
|
21
|
+
* The fresh-mark probe: `true` exactly for a `.fresh`-marked u64 descriptor
|
|
22
|
+
* (the S1 kernel's one structural mark — an unmarked u64's `fresh` property
|
|
23
|
+
* holds the MARKED descriptor, so the probe compares against the literal
|
|
24
|
+
* `true`, never truthiness).
|
|
25
|
+
*/
|
|
26
|
+
declare function isFreshField(field: AnyField): boolean;
|
|
15
27
|
/**
|
|
16
28
|
* The inferred object type `tx.insert` returns: one property per
|
|
17
|
-
* fresh-marked field of `R`, carrying the minted (or resupplied)
|
|
18
|
-
*
|
|
29
|
+
* fresh-marked field of `R`, carrying the minted (or resupplied) id as a
|
|
30
|
+
* bare `bigint`. A relation with no fresh field returns the empty object.
|
|
19
31
|
*/
|
|
20
32
|
type Minted<R extends AnyRelation> = {
|
|
21
33
|
[K in FreshKeys<R>]: Fact<R>[K];
|
|
@@ -28,7 +40,8 @@ type Minted<R extends AnyRelation> = {
|
|
|
28
40
|
* relation's primary key is always its fresh field. When `R` carries a
|
|
29
41
|
* fresh field the type demands exactly that field; otherwise the primary
|
|
30
42
|
* key lives in the schema's statement list, which the type system cannot
|
|
31
|
-
* see (
|
|
43
|
+
* see (the schema's statement list is not carried in the schema's type,
|
|
44
|
+
* only in the KeyStatement values themselves), so the type admits any partial fact
|
|
32
45
|
* and the projection is verified at runtime — a missing key field throws
|
|
33
46
|
* naming the projection.
|
|
34
47
|
*/
|
|
@@ -43,11 +56,12 @@ type KeyFact<R extends AnyRelation> = [FreshKeys<R>] extends [never] ? Partial<F
|
|
|
43
56
|
declare function recordOf(fact: object): Record<string, unknown>;
|
|
44
57
|
/**
|
|
45
58
|
* Marshals one host cell at its field position to the natural wire value,
|
|
46
|
-
* schema-directed by the field's structural
|
|
47
|
-
* are
|
|
48
|
-
* values;
|
|
59
|
+
* schema-directed by the field descriptor's structural kind (never
|
|
60
|
+
* guessed). Values are bare, so the runtime values ARE the wire's natural
|
|
61
|
+
* JS values; widths and domain labels are the engine's own judgment at the
|
|
62
|
+
* write boundary.
|
|
49
63
|
*/
|
|
50
|
-
declare function cellOf(context: string, field:
|
|
64
|
+
declare function cellOf(context: string, field: AnyField, value: unknown): FactValue;
|
|
51
65
|
/**
|
|
52
66
|
* Marshals one complete fact object to its positional row, in field
|
|
53
67
|
* declaration order (= ordinal ids). Every declared field must be present;
|
|
@@ -65,15 +79,16 @@ declare function keyRowOf(relation: RelationData, projection: readonly string[],
|
|
|
65
79
|
/**
|
|
66
80
|
* The insert-return trusted seam: the collected fresh cells of one insert
|
|
67
81
|
* (minted by the engine or resupplied by the caller) are the relation's
|
|
68
|
-
*
|
|
82
|
+
* fresh ids as bare bigints — same presence-only direction as
|
|
83
|
+
* {@link isCompleteFact}.
|
|
69
84
|
*/
|
|
70
85
|
declare function isMintedFresh<R extends AnyRelation>(relation: R, minted: Readonly<Record<string, FactValue>>): minted is Readonly<Record<string, FactValue>> & Minted<R>;
|
|
71
86
|
/**
|
|
72
|
-
* Unmarshals one positional row to the relation's named,
|
|
73
|
-
*
|
|
74
|
-
* declaration order.
|
|
87
|
+
* Unmarshals one positional row to the relation's named, frozen fact object
|
|
88
|
+
* of bare structural values — the inverse of {@link rowOf},
|
|
89
|
+
* ordinal-directed by the same declaration order.
|
|
75
90
|
*/
|
|
76
91
|
declare function factOf<R extends AnyRelation>(relation: R, row: readonly FactValue[]): Fact<R>;
|
|
77
92
|
export type { KeyFact, Minted };
|
|
78
|
-
export { cellOf, factOf, isMintedFresh, keyRowOf, recordOf, rowOf };
|
|
93
|
+
export { cellOf, factOf, isFreshField, isMintedFresh, keyRowOf, recordOf, rowOf };
|
|
79
94
|
//# sourceMappingURL=marshal.d.ts.map
|
package/dist/marshal.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"marshal.d.ts","sourceRoot":"","sources":["../src/marshal.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"marshal.d.ts","sourceRoot":"","sources":["../src/marshal.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAC1C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AAC3C,OAAO,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,cAAc,CAAA;AAE9E;;;;;GAKG;AACH,iBAAS,YAAY,CAAC,KAAK,EAAE,QAAQ,GAAG,OAAO,CAE9C;AAED;;;;GAIG;AACH,KAAK,MAAM,CAAC,CAAC,SAAS,WAAW,IAAI;KAAG,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,CAAA;AAExE;;;;;;;;;;;;GAYG;AACH,KAAK,OAAO,CAAC,CAAC,SAAS,WAAW,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GACjE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAChB;KAAG,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,CAAA;AAmBtC;;;;GAIG;AACH,iBAAS,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAEvD;AAED;;;;;;GAMG;AACH,iBAAS,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,GAAG,SAAS,CA4C3E;AAED;;;;;GAKG;AACH,iBAAS,KAAK,CAAC,QAAQ,EAAE,YAAY,EAAE,IAAI,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,GAAG,SAAS,EAAE,CAQ3F;AAED;;;;;GAKG;AACH,iBAAS,QAAQ,CAChB,QAAQ,EAAE,YAAY,EACtB,UAAU,EAAE,SAAS,MAAM,EAAE,EAC7B,GAAG,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,GACpC,SAAS,EAAE,CAgBb;AAiBD;;;;;GAKG;AACH,iBAAS,aAAa,CAAC,CAAC,SAAS,WAAW,EAC3C,QAAQ,EAAE,CAAC,EACX,MAAM,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,GACzC,MAAM,IAAI,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAI3D;AAED;;;;GAIG;AACH,iBAAS,MAAM,CAAC,CAAC,SAAS,WAAW,EAAE,QAAQ,EAAE,CAAC,EAAE,GAAG,EAAE,SAAS,SAAS,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAoBtF;AAED,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,CAAA;AAC/B,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAA"}
|
package/dist/marshal.js
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* The marshal layer
|
|
3
|
-
*
|
|
4
|
-
*
|
|
2
|
+
* The marshal layer: fact object ⇄ positional `FactValue[]` by field
|
|
3
|
+
* ordinal, schema-directed, in ONE place only. The write side lowers named
|
|
4
|
+
* host objects to rows in the relation's field-declaration order
|
|
5
5
|
* (declaration order = ordinal ids, the macro's law); the read side decodes
|
|
6
|
-
* rows back to named objects
|
|
7
|
-
* is
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
6
|
+
* rows back to named objects of BARE structural values — the marshal
|
|
7
|
+
* boundary is pure both ways. CAST-FREE, LITERALLY: with structural values
|
|
8
|
+
* there is no brand to assert on the way out (the historical "one
|
|
9
|
+
* sanctioned marshal cast" died with the brand era), so product code
|
|
10
|
+
* carries zero casts — the only trusted seams are the completeness
|
|
11
|
+
* PREDICATES below, which verify the checkable half (every declared field
|
|
12
|
+
* present) and rely on the store as the proof carrier for the rest: a row
|
|
13
|
+
* the engine admitted IS a legal fact of its relation (the same trust
|
|
14
|
+
* direction as Rust's typed readback). Shape mismatches here are genuine
|
|
15
|
+
* failures and THROW typed; they are never domain data.
|
|
11
16
|
*/
|
|
12
17
|
import * as errors from "@superbuilders/errors";
|
|
18
|
+
/**
|
|
19
|
+
* The fresh-mark probe: `true` exactly for a `.fresh`-marked u64 descriptor
|
|
20
|
+
* (the S1 kernel's one structural mark — an unmarked u64's `fresh` property
|
|
21
|
+
* holds the MARKED descriptor, so the probe compares against the literal
|
|
22
|
+
* `true`, never truthiness).
|
|
23
|
+
*/
|
|
24
|
+
function isFreshField(field) {
|
|
25
|
+
return "fresh" in field && field.fresh === true;
|
|
26
|
+
}
|
|
13
27
|
/** The typed shape refusal of the row marshaler — a genuine failure, never data. */
|
|
14
28
|
function cellShapeError(context, expected, value) {
|
|
15
29
|
return errors.new(`${context}: expected ${expected}, got ${typeof value}`);
|
|
@@ -33,12 +47,13 @@ function recordOf(fact) {
|
|
|
33
47
|
}
|
|
34
48
|
/**
|
|
35
49
|
* Marshals one host cell at its field position to the natural wire value,
|
|
36
|
-
* schema-directed by the field's structural
|
|
37
|
-
* are
|
|
38
|
-
* values;
|
|
50
|
+
* schema-directed by the field descriptor's structural kind (never
|
|
51
|
+
* guessed). Values are bare, so the runtime values ARE the wire's natural
|
|
52
|
+
* JS values; widths and domain labels are the engine's own judgment at the
|
|
53
|
+
* write boundary.
|
|
39
54
|
*/
|
|
40
55
|
function cellOf(context, field, value) {
|
|
41
|
-
switch (field.
|
|
56
|
+
switch (field.kind) {
|
|
42
57
|
case "bool": {
|
|
43
58
|
if (typeof value !== "boolean") {
|
|
44
59
|
throw cellShapeError(context, "boolean", value);
|
|
@@ -52,7 +67,7 @@ function cellOf(context, field, value) {
|
|
|
52
67
|
}
|
|
53
68
|
return value;
|
|
54
69
|
}
|
|
55
|
-
case "
|
|
70
|
+
case "str": {
|
|
56
71
|
if (typeof value !== "string") {
|
|
57
72
|
throw cellShapeError(context, "string", value);
|
|
58
73
|
}
|
|
@@ -68,7 +83,7 @@ function cellOf(context, field, value) {
|
|
|
68
83
|
}
|
|
69
84
|
return value;
|
|
70
85
|
}
|
|
71
|
-
case "
|
|
86
|
+
case "bytes": {
|
|
72
87
|
if (!(value instanceof Uint8Array)) {
|
|
73
88
|
throw cellShapeError(context, "Uint8Array", value);
|
|
74
89
|
}
|
|
@@ -120,11 +135,11 @@ function keyRowOf(relation, projection, key) {
|
|
|
120
135
|
}
|
|
121
136
|
/**
|
|
122
137
|
* The read-side trusted seam: a decoded row carrying every declared field
|
|
123
|
-
* IS a fact of its relation — the engine admitted
|
|
124
|
-
*
|
|
125
|
-
*
|
|
138
|
+
* IS a fact of its relation — the engine admitted the row, and the values
|
|
139
|
+
* are BARE structural values, so nothing is asserted beyond presence (no
|
|
140
|
+
* brand exists to re-derive; the store is the proof carrier).
|
|
126
141
|
*/
|
|
127
|
-
function
|
|
142
|
+
function isCompleteFact(relation, decoded) {
|
|
128
143
|
return relation.data.fields.every(function present(declared) {
|
|
129
144
|
return decoded[declared.name] !== undefined;
|
|
130
145
|
});
|
|
@@ -132,17 +147,18 @@ function isBrandedFact(relation, decoded) {
|
|
|
132
147
|
/**
|
|
133
148
|
* The insert-return trusted seam: the collected fresh cells of one insert
|
|
134
149
|
* (minted by the engine or resupplied by the caller) are the relation's
|
|
135
|
-
*
|
|
150
|
+
* fresh ids as bare bigints — same presence-only direction as
|
|
151
|
+
* {@link isCompleteFact}.
|
|
136
152
|
*/
|
|
137
153
|
function isMintedFresh(relation, minted) {
|
|
138
154
|
return relation.data.fields.every(function presentWhenFresh(declared) {
|
|
139
|
-
return !declared.field
|
|
155
|
+
return !isFreshField(declared.field) || minted[declared.name] !== undefined;
|
|
140
156
|
});
|
|
141
157
|
}
|
|
142
158
|
/**
|
|
143
|
-
* Unmarshals one positional row to the relation's named,
|
|
144
|
-
*
|
|
145
|
-
* declaration order.
|
|
159
|
+
* Unmarshals one positional row to the relation's named, frozen fact object
|
|
160
|
+
* of bare structural values — the inverse of {@link rowOf},
|
|
161
|
+
* ordinal-directed by the same declaration order.
|
|
146
162
|
*/
|
|
147
163
|
function factOf(relation, row) {
|
|
148
164
|
const data = relation.data;
|
|
@@ -158,10 +174,10 @@ function factOf(relation, row) {
|
|
|
158
174
|
decoded[declared.name] = cell;
|
|
159
175
|
});
|
|
160
176
|
Object.freeze(decoded);
|
|
161
|
-
if (!
|
|
177
|
+
if (!isCompleteFact(relation, decoded)) {
|
|
162
178
|
throw errors.new(`relation ${data.name}: decoded row is not a complete fact`);
|
|
163
179
|
}
|
|
164
180
|
return decoded;
|
|
165
181
|
}
|
|
166
|
-
export { cellOf, factOf, isMintedFresh, keyRowOf, recordOf, rowOf };
|
|
182
|
+
export { cellOf, factOf, isFreshField, isMintedFresh, keyRowOf, recordOf, rowOf };
|
|
167
183
|
//# sourceMappingURL=marshal.js.map
|
package/dist/marshal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"marshal.js","sourceRoot":"","sources":["../src/marshal.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"marshal.js","sourceRoot":"","sources":["../src/marshal.ts"],"names":[],"mappings":"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"}
|
package/dist/native.js
CHANGED
|
@@ -15,8 +15,8 @@ const SHIPPED_PLATFORMS = "darwin-arm64";
|
|
|
15
15
|
* It resolves the per-platform binary package by name (see
|
|
16
16
|
* {@link loadNativeBinding}); the addon never crosses as a relative path.
|
|
17
17
|
* createRequire is the only unflagged Node-API addon loader in ESM, and this
|
|
18
|
-
* file is the package's single sanctioned FFI boundary
|
|
19
|
-
*
|
|
18
|
+
* file is the package's single sanctioned FFI boundary (the arch-split
|
|
19
|
+
* packaging ruling).
|
|
20
20
|
*/
|
|
21
21
|
const requireNative = createRequire(import.meta.url);
|
|
22
22
|
/**
|