mikser-io 9.47.0 → 9.48.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.
@@ -601,8 +601,21 @@ clearChangeSets(['req-42'])
601
601
  | `withChangeSet({ changeSet, summary, principal }, fn)` | run `fn` with a set in effect |
602
602
  | `currentChangeSet()` | the set in effect, or null |
603
603
  | `recordChangeSetWrite({ changeSet, summary, principal, uri, operation, undoOf })` | attach one path to a set |
604
- | `pendingChangeSets()` | sets with unconsumed writes, oldest first |
605
- | `clearChangeSets(ids)` | drop what a consumer has committed |
604
+ | `listChangeSets({ limit })` | the log, newest first |
605
+ | `findChangeSet(id)` | resolve one id |
606
+ | `pendingChangeSets()` | sets no consumer has recorded yet, oldest first |
607
+ | `markChangeSetsRecorded(ids, recordedAs)` | mark recorded, and say what as |
608
+
609
+ The log is **durable** and survives a restart: nothing else can reconstruct
610
+ which writes belonged to one request. Not the files, which show the result and
611
+ not the grouping — and not a consumer's own history, which may not exist yet,
612
+ or at all. It keeps the most recent 200 sets.
613
+
614
+ `recordedAs` is what a consumer recorded the set as — a commit sha. Its absence
615
+ is meaningful: the set is real and listable, but there is nothing to revert
616
+ from yet. `mikser_undo` reports that as `not-yet-committed`, which is a
617
+ different answer from `unknown-change-set` and sends a reader somewhere
618
+ different.
606
619
 
607
620
  ### Ambient, not threaded
608
621
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mikser-io",
3
- "version": "9.47.0",
3
+ "version": "9.48.0",
4
4
  "description": "<p align=\"center\"> <img src=\"mikser-lockup-stacked.svg\" alt=\"mikser\" width=\"198\" /> </p>",
5
5
  "main": "index.js",
6
6
  "exports": {
package/src/changeset.js CHANGED
@@ -27,6 +27,43 @@
27
27
  import path from 'node:path'
28
28
  import { AsyncLocalStorage } from 'node:async_hooks'
29
29
  import runtime from './runtime.js'
30
+ import { registerSchema } from './database/index.js'
31
+
32
+ // The log is DURABLE. It records which writes belonged to which request, and
33
+ // nothing can reconstruct that: not the files, which show the result and not
34
+ // the grouping, and not a consumer's own history, which may not exist yet or
35
+ // at all. Losing it turns every id already handed to an agent into a dangling
36
+ // handle.
37
+ registerSchema('change_sets', `
38
+ CREATE TABLE IF NOT EXISTS mikser_change_sets (
39
+ id TEXT PRIMARY KEY,
40
+ summary TEXT,
41
+ principal TEXT,
42
+ undo_of TEXT,
43
+ created_at INTEGER NOT NULL,
44
+ -- Set when a consumer has durably recorded the set somewhere of its
45
+ -- own — a commit, a snapshot. Until then the set is real and listable
46
+ -- but there is nothing to revert FROM, which is a different answer
47
+ -- from "no such change set".
48
+ recorded_at INTEGER,
49
+ recorded_as TEXT
50
+ );
51
+ CREATE INDEX IF NOT EXISTS idx_mikser_change_sets_created
52
+ ON mikser_change_sets (created_at DESC);
53
+
54
+ CREATE TABLE IF NOT EXISTS mikser_change_set_paths (
55
+ change_set TEXT NOT NULL,
56
+ path TEXT NOT NULL,
57
+ operation TEXT NOT NULL,
58
+ entity_id TEXT,
59
+ PRIMARY KEY (change_set, path)
60
+ );
61
+ `, { durable: true })
62
+
63
+ // How many sets to keep. An undo log is only useful while the change is
64
+ // recent enough to be worth taking back, and unbounded growth in a durable
65
+ // table is a leak nothing cleans up.
66
+ const KEEP_SETS = 200
30
67
 
31
68
  // The change set in effect for the current call.
32
69
  //
@@ -54,9 +91,87 @@ export function currentChangeSet() {
54
91
  return changeSetContext.getStore() ?? null
55
92
  }
56
93
 
57
- function store() {
58
- runtime.changeSets ??= new Map()
59
- return runtime.changeSets
94
+ // The database when there is one, memory when there is not.
95
+ //
96
+ // A write can happen before the engine opens its database — a plugin acting at
97
+ // load time, a unit test — and losing the attribution then would be worse than
98
+ // keeping it somewhere weaker. Both back ends answer the same questions, so no
99
+ // caller has to know which is in play.
100
+ const memory = new Map()
101
+
102
+ function db() {
103
+ // Read off the runtime rather than calling useDatabase(): this module is
104
+ // reached from utils.js, which loads before the database module can be
105
+ // imported without closing a cycle.
106
+ const handle = runtime.database?.handle
107
+ return handle?.prepare ? handle : null
108
+ }
109
+
110
+ function persist(handle, set, rel, operation, entityId) {
111
+ handle.prepare(`
112
+ INSERT INTO mikser_change_sets (id, summary, principal, undo_of, created_at)
113
+ VALUES (@id, @summary, @principal, @undoOf, @createdAt)
114
+ ON CONFLICT(id) DO UPDATE SET
115
+ summary = COALESCE(mikser_change_sets.summary, excluded.summary),
116
+ principal = COALESCE(mikser_change_sets.principal, excluded.principal),
117
+ undo_of = COALESCE(mikser_change_sets.undo_of, excluded.undo_of)
118
+ `).run({
119
+ id: set.id, summary: set.summary, principal: set.principal,
120
+ undoOf: set.undoOf, createdAt: set.startedAt,
121
+ })
122
+ handle.prepare(`
123
+ INSERT INTO mikser_change_set_paths (change_set, path, operation, entity_id)
124
+ VALUES (?, ?, ?, ?)
125
+ ON CONFLICT(change_set, path) DO UPDATE SET operation = excluded.operation
126
+ `).run(set.id, rel, operation, entityId ?? null)
127
+ prune(handle)
128
+ }
129
+
130
+ function prune(handle) {
131
+ handle.prepare(`
132
+ DELETE FROM mikser_change_set_paths WHERE change_set IN (
133
+ SELECT id FROM mikser_change_sets
134
+ ORDER BY created_at DESC LIMIT -1 OFFSET ?
135
+ )
136
+ `).run(KEEP_SETS)
137
+ handle.prepare(`
138
+ DELETE FROM mikser_change_sets WHERE id IN (
139
+ SELECT id FROM mikser_change_sets ORDER BY created_at DESC LIMIT -1 OFFSET ?
140
+ )
141
+ `).run(KEEP_SETS)
142
+ }
143
+
144
+ function rowsToSets(handle, rows) {
145
+ const stmt = handle.prepare(
146
+ 'SELECT path, operation FROM mikser_change_set_paths WHERE change_set = ? ORDER BY path')
147
+ return rows.map(row => {
148
+ const paths = stmt.all(row.id)
149
+ return {
150
+ id: row.id,
151
+ summary: row.summary,
152
+ principal: row.principal,
153
+ undoOf: row.undo_of,
154
+ startedAt: row.created_at,
155
+ recordedAt: row.recorded_at ?? null,
156
+ recordedAs: row.recorded_as ?? null,
157
+ paths: paths.map(p => p.path),
158
+ deletions: paths.filter(p => p.operation === 'delete').map(p => p.path),
159
+ }
160
+ })
161
+ }
162
+
163
+ function memorySets(filter = () => true) {
164
+ return [...memory.values()].filter(set => set.paths.size).filter(filter).map(set => ({
165
+ id: set.id,
166
+ summary: set.summary,
167
+ principal: set.principal,
168
+ undoOf: set.undoOf,
169
+ startedAt: set.startedAt,
170
+ recordedAt: set.recordedAt ?? null,
171
+ recordedAs: set.recordedAs ?? null,
172
+ paths: [...set.paths.keys()],
173
+ deletions: [...set.paths.entries()].filter(([, op]) => op === 'delete').map(([p]) => p),
174
+ }))
60
175
  }
61
176
 
62
177
  // Relative to the working folder, POSIX-separated.
@@ -78,7 +193,9 @@ function relativeToWorkingFolder(uri) {
78
193
  // nothing downstream will ever know it as well — a reader choosing what to
79
194
  // undo needs "changed the hero text on the devices page", not a file count.
80
195
  // First one wins: later writes in the same set are the same request.
81
- export function recordChangeSetWrite({ changeSet, summary, principal, uri, operation = 'write', undoOf } = {}) {
196
+ export function recordChangeSetWrite({
197
+ changeSet, summary, principal, uri, operation = 'write', undoOf, entityId,
198
+ } = {}) {
82
199
  // An explicit id always wins; otherwise take whatever set is in effect.
83
200
  // A write with neither stays unclaimed, which is the correct outcome for
84
201
  // an API or human write that no request owns.
@@ -94,8 +211,7 @@ export function recordChangeSetWrite({ changeSet, summary, principal, uri, opera
94
211
  // produce a selector that quietly matches nothing.
95
212
  if (!rel) return null
96
213
 
97
- const sets = store()
98
- let set = sets.get(changeSet)
214
+ let set = memory.get(changeSet)
99
215
  if (!set) {
100
216
  set = {
101
217
  id: changeSet,
@@ -108,43 +224,98 @@ export function recordChangeSetWrite({ changeSet, summary, principal, uri, opera
108
224
  startedAt: Date.now(),
109
225
  paths: new Map(),
110
226
  }
111
- sets.set(changeSet, set)
227
+ memory.set(changeSet, set)
112
228
  }
113
229
  if (!set.summary && summary) set.summary = summary
114
230
  if (!set.principal && principal) set.principal = principal
115
231
  if (!set.undoOf && undoOf) set.undoOf = undoOf
116
232
  set.paths.set(rel, operation)
233
+
234
+ const handle = db()
235
+ if (handle) {
236
+ try { persist(handle, set, rel, operation, entityId) } catch { /* memory still holds it */ }
237
+ }
117
238
  return set.id
118
239
  }
119
240
 
120
- // Every set with writes not yet consumed, oldest first — the order the work
121
- // actually happened in, which is the order a consumer should record it in.
241
+ // Sets a consumer has not yet durably recorded, oldest first — the order the
242
+ // work actually happened in, which is the order it should be recorded in.
122
243
  export function pendingChangeSets() {
123
- return [...store().values()]
124
- .filter(set => set.paths.size)
125
- .sort((a, b) => a.startedAt - b.startedAt)
126
- .map(set => ({
127
- id: set.id,
128
- summary: set.summary,
129
- principal: set.principal,
130
- undoOf: set.undoOf,
131
- startedAt: set.startedAt,
132
- paths: [...set.paths.keys()],
133
- deletions: [...set.paths.entries()].filter(([, op]) => op === 'delete').map(([p]) => p),
134
- }))
244
+ const handle = db()
245
+ if (handle) {
246
+ try {
247
+ const rows = handle.prepare(`
248
+ SELECT * FROM mikser_change_sets WHERE recorded_at IS NULL ORDER BY created_at ASC
249
+ `).all()
250
+ return rowsToSets(handle, rows).filter(set => set.paths.length)
251
+ } catch { /* fall through to memory */ }
252
+ }
253
+ return memorySets(set => !set.recordedAt).sort((a, b) => a.startedAt - b.startedAt)
135
254
  }
136
255
 
137
- // Drop sets a consumer has dealt with.
138
- //
139
- // Called after a consumer has durably recorded the paths, not after they are
140
- // written: a crash in between loses the attribution but not the work, which
141
- // then reaches the consumer as an unclaimed write. That is the right way
142
- // round — attribution is a convenience, the bytes are not.
143
- export function clearChangeSets(ids = []) {
144
- const sets = store()
145
- for (const id of ids) sets.delete(id)
256
+ // The log an agent reads: every set, newest first, whether or not a consumer
257
+ // has recorded it anywhere.
258
+ export function listChangeSets({ limit = 20 } = {}) {
259
+ const handle = db()
260
+ if (handle) {
261
+ try {
262
+ const rows = handle.prepare(`
263
+ SELECT * FROM mikser_change_sets ORDER BY created_at DESC LIMIT ?
264
+ `).all(Math.max(1, Math.min(limit, 200)))
265
+ return rowsToSets(handle, rows)
266
+ } catch { /* fall through to memory */ }
267
+ }
268
+ return memorySets().sort((a, b) => b.startedAt - a.startedAt).slice(0, limit)
269
+ }
270
+
271
+ export function findChangeSet(id) {
272
+ if (!id) return null
273
+ const handle = db()
274
+ if (handle) {
275
+ try {
276
+ const row = handle.prepare('SELECT * FROM mikser_change_sets WHERE id = ?').get(id)
277
+ return row ? rowsToSets(handle, [row])[0] : null
278
+ } catch { /* fall through to memory */ }
279
+ }
280
+ return memorySets(set => set.id === id)[0] ?? null
281
+ }
282
+
283
+ // Mark sets a consumer has durably recorded, and say what it recorded them AS
284
+ // — a commit sha, a snapshot id. That reference is what an undo reverts from,
285
+ // and its absence is why "recorded but not yet committed" is a different
286
+ // answer from "no such change set".
287
+ export function markChangeSetsRecorded(ids = [], recordedAs = null) {
288
+ const at = Date.now()
289
+ for (const id of ids) {
290
+ const set = memory.get(id)
291
+ if (set) { set.recordedAt = at; set.recordedAs = recordedAs }
292
+ }
293
+ const handle = db()
294
+ if (!handle) return
295
+ try {
296
+ const stmt = handle.prepare(
297
+ 'UPDATE mikser_change_sets SET recorded_at = ?, recorded_as = ? WHERE id = ?')
298
+ for (const id of ids) stmt.run(at, recordedAs, id)
299
+ } catch { /* memory still holds it */ }
300
+ }
301
+
302
+ // Kept as the name consumers already call. Marking recorded is what "done
303
+ // with it" means now — the set stays in the log so it can still be undone.
304
+ export function clearChangeSets(ids = [], recordedAs = null) {
305
+ markChangeSetsRecorded(ids, recordedAs)
146
306
  }
147
307
 
148
308
  export function forgetAllChangeSets() {
149
- store().clear()
309
+ memory.clear()
310
+ const handle = db()
311
+ if (!handle) return
312
+ try {
313
+ handle.exec('DELETE FROM mikser_change_set_paths; DELETE FROM mikser_change_sets;')
314
+ } catch { /* nothing to clear */ }
150
315
  }
316
+
317
+ // Published on the runtime so the write primitives in utils.js can record
318
+ // without importing this module. utils.js loads early — before the database
319
+ // module can be imported here without closing a cycle — and an import purely
320
+ // to reach one function is what would close it.
321
+ runtime.recordChangeSetWrite = recordChangeSetWrite
package/src/utils.js CHANGED
@@ -11,7 +11,6 @@ import yaml from 'yaml'
11
11
  import { contentType } from 'mime-types'
12
12
  import runtime from './runtime.js'
13
13
  import { trackedInfo, untrack, recordReads } from './track.js'
14
- import { recordChangeSetWrite } from './changeset.js'
15
14
 
16
15
  // Stable content fingerprint for entities — used by manifest snapshots,
17
16
  // engine mutation tracking, and the layouts dispatcher's hash-aware
@@ -794,7 +793,7 @@ export async function writeEntity(entity, patch = {}) {
794
793
  // The other file-writing primitive. A rename cascade rewrites every
795
794
  // referring file through here, which is the largest fan-out any single
796
795
  // request has and therefore the one most worth being able to take back.
797
- recordChangeSetWrite({ uri: entity.uri })
796
+ runtime.recordChangeSetWrite?.({ uri: entity.uri })
798
797
 
799
798
  return entity.uri
800
799
  }
@@ -1114,14 +1113,14 @@ export function useCollection(runtime, name) {
1114
1113
  // of change sets still produces undoable work — the alternative is
1115
1114
  // every writer remembering, and the one that forgets is the one
1116
1115
  // whose edit cannot be taken back.
1117
- recordChangeSetWrite({ uri })
1116
+ runtime.recordChangeSetWrite?.({ uri })
1118
1117
  return uri
1119
1118
  },
1120
1119
 
1121
1120
  async remove(relativePath) {
1122
1121
  const uri = resolveWithin(relativePath)
1123
1122
  await unlink(uri)
1124
- recordChangeSetWrite({ uri, operation: 'delete' })
1123
+ runtime.recordChangeSetWrite?.({ uri, operation: 'delete' })
1125
1124
  },
1126
1125
  }
1127
1126
  }