@dxos/feed-store 0.8.4-main.a4bbb77 → 0.8.4-main.abd8ff62ef

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.
Files changed (37) hide show
  1. package/dist/lib/browser/{chunk-4RW534M7.mjs → chunk-MB63GMGR.mjs} +76 -237
  2. package/dist/lib/browser/chunk-MB63GMGR.mjs.map +7 -0
  3. package/dist/lib/browser/index.mjs +63 -255
  4. package/dist/lib/browser/index.mjs.map +3 -3
  5. package/dist/lib/browser/meta.json +1 -1
  6. package/dist/lib/browser/testing/index.mjs +32 -80
  7. package/dist/lib/browser/testing/index.mjs.map +3 -3
  8. package/dist/lib/node-esm/{chunk-D4DVCY7Y.mjs → chunk-VZUET36D.mjs} +76 -237
  9. package/dist/lib/node-esm/chunk-VZUET36D.mjs.map +7 -0
  10. package/dist/lib/node-esm/index.mjs +63 -255
  11. package/dist/lib/node-esm/index.mjs.map +3 -3
  12. package/dist/lib/node-esm/meta.json +1 -1
  13. package/dist/lib/node-esm/testing/index.mjs +32 -80
  14. package/dist/lib/node-esm/testing/index.mjs.map +3 -3
  15. package/dist/types/src/feed-factory.d.ts.map +1 -1
  16. package/dist/types/src/feed-iterator.d.ts.map +1 -1
  17. package/dist/types/src/feed-queue.d.ts.map +1 -1
  18. package/dist/types/src/feed-set-iterator.d.ts.map +1 -1
  19. package/dist/types/src/feed-store.d.ts.map +1 -1
  20. package/dist/types/src/feed-wrapper.d.ts +1 -1
  21. package/dist/types/src/feed-wrapper.d.ts.map +1 -1
  22. package/dist/types/src/feed-writer.d.ts.map +1 -1
  23. package/dist/types/src/testing/mocks.d.ts.map +1 -1
  24. package/dist/types/src/testing/test-builder.d.ts.map +1 -1
  25. package/dist/types/src/testing/test-generator.d.ts +1 -1
  26. package/dist/types/src/testing/test-generator.d.ts.map +1 -1
  27. package/dist/types/tsconfig.tsbuildinfo +1 -1
  28. package/package.json +23 -26
  29. package/src/feed-queue.ts +0 -1
  30. package/src/feed-set-iterator.test.ts +6 -6
  31. package/src/feed-store.node.test.ts +2 -2
  32. package/src/feed-wrapper.test.ts +9 -10
  33. package/src/feed-wrapper.ts +0 -1
  34. package/src/testing/test-builder.ts +0 -1
  35. package/src/testing/test-generator.ts +4 -4
  36. package/dist/lib/browser/chunk-4RW534M7.mjs.map +0 -7
  37. package/dist/lib/node-esm/chunk-D4DVCY7Y.mjs.map +0 -7
@@ -9,23 +9,24 @@ import { StackTrace, inspectObject } from "@dxos/debug";
9
9
  import { assertArgument, invariant } from "@dxos/invariant";
10
10
  import { log } from "@dxos/log";
11
11
  import { arrayToBuffer, rangeFromTo } from "@dxos/util";
12
- function _define_property(obj, key, value) {
13
- if (key in obj) {
14
- Object.defineProperty(obj, key, {
15
- value,
16
- enumerable: true,
17
- configurable: true,
18
- writable: true
19
- });
20
- } else {
21
- obj[key] = value;
22
- }
23
- return obj;
24
- }
25
12
  var __dxlog_file = "/__w/dxos/dxos/packages/common/feed-store/src/feed-wrapper.ts";
26
- var _inspect_custom = inspect.custom;
27
13
  var FeedWrapper = class {
28
- [_inspect_custom]() {
14
+ _key;
15
+ _storageDirectory;
16
+ _hypercore;
17
+ _pendingWrites = /* @__PURE__ */ new Set();
18
+ // Pending while writes are happening. Resolves when there are no pending writes.
19
+ _writeLock = new Trigger();
20
+ _closed = false;
21
+ constructor(hypercore2, _key, _storageDirectory) {
22
+ this._key = _key;
23
+ this._storageDirectory = _storageDirectory;
24
+ assertArgument(hypercore2, "hypercore");
25
+ this._hypercore = hypercore2;
26
+ invariant(this._key, void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 27, S: this, A: ["this._key", ""] });
27
+ this._writeLock.wake();
28
+ }
29
+ [inspect.custom]() {
29
30
  return inspectObject(this);
30
31
  }
31
32
  toJSON() {
@@ -67,21 +68,8 @@ var FeedWrapper = class {
67
68
  log("write", {
68
69
  feed: this._key,
69
70
  seq: this._hypercore.length
70
- }, {
71
- F: __dxlog_file,
72
- L: 100,
73
- S: this,
74
- C: (f, a) => f(...a)
75
- });
76
- invariant(!this._closed, "Feed closed", {
77
- F: __dxlog_file,
78
- L: 101,
79
- S: this,
80
- A: [
81
- "!this._closed",
82
- "'Feed closed'"
83
- ]
84
- });
71
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 74, S: this });
72
+ invariant(!this._closed, "Feed closed", { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 78, S: this, A: ["!this._closed", "'Feed closed'"] });
85
73
  const stackTrace = new StackTrace();
86
74
  try {
87
75
  this._pendingWrites.add(stackTrace);
@@ -103,24 +91,11 @@ var FeedWrapper = class {
103
91
  }
104
92
  async appendWithReceipt(data) {
105
93
  const seq = await this.append(data);
106
- invariant(seq < this.length, "Invalid seq after write", {
107
- F: __dxlog_file,
108
- L: 132,
109
- S: this,
110
- A: [
111
- "seq < this.length",
112
- "'Invalid seq after write'"
113
- ]
114
- });
94
+ invariant(seq < this.length, "Invalid seq after write", { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 103, S: this, A: ["seq < this.length", "'Invalid seq after write'"] });
115
95
  log("write complete", {
116
96
  feed: this._key,
117
97
  seq
118
- }, {
119
- F: __dxlog_file,
120
- L: 133,
121
- S: this,
122
- C: (f, a) => f(...a)
123
- });
98
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 104, S: this });
124
99
  const receipt = {
125
100
  feedKey: this.key,
126
101
  seq
@@ -161,6 +136,18 @@ var FeedWrapper = class {
161
136
  _close(...args) {
162
137
  return promisify(this._hypercore.close.bind(this._hypercore))(...args);
163
138
  }
139
+ close = async () => {
140
+ if (this._pendingWrites.size) {
141
+ log.warn("Closing feed with pending writes", {
142
+ feed: this._key,
143
+ count: this._pendingWrites.size,
144
+ pendingWrites: Array.from(this._pendingWrites.values()).map((stack) => stack.getStack())
145
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 149, S: this });
146
+ }
147
+ this._closed = true;
148
+ await this.flushToDisk();
149
+ await this._close();
150
+ };
164
151
  has(start, end) {
165
152
  return this._hypercore.has(start, end);
166
153
  }
@@ -202,15 +189,7 @@ var FeedWrapper = class {
202
189
  * Clear and check for integrity.
203
190
  */
204
191
  async safeClear(from, to) {
205
- invariant(from >= 0 && from < to && to <= this.length, "Invalid range", {
206
- F: __dxlog_file,
207
- L: 250,
208
- S: this,
209
- A: [
210
- "from >= 0 && from < to && to <= this.length",
211
- "'Invalid range'"
212
- ]
213
- });
192
+ invariant(from >= 0 && from < to && to <= this.length, "Invalid range", { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 198, S: this, A: ["from >= 0 && from < to && to <= this.length", "'Invalid range'"] });
214
193
  const CHECK_MESSAGES = 20;
215
194
  const checkBegin = to;
216
195
  const checkEnd = Math.min(checkBegin + CHECK_MESSAGES, this.length);
@@ -233,51 +212,22 @@ var FeedWrapper = class {
233
212
  }
234
213
  }
235
214
  }
236
- constructor(hypercore2, _key, _storageDirectory) {
237
- _define_property(this, "_key", void 0);
238
- _define_property(this, "_storageDirectory", void 0);
239
- _define_property(this, "_hypercore", void 0);
240
- _define_property(this, "_pendingWrites", void 0);
241
- _define_property(this, "_writeLock", void 0);
242
- _define_property(this, "_closed", void 0);
243
- _define_property(this, "close", void 0);
244
- this._key = _key;
245
- this._storageDirectory = _storageDirectory;
246
- this._pendingWrites = /* @__PURE__ */ new Set();
247
- this._writeLock = new Trigger();
248
- this._closed = false;
249
- this.close = async () => {
250
- if (this._pendingWrites.size) {
251
- log.warn("Closing feed with pending writes", {
252
- feed: this._key,
253
- count: this._pendingWrites.size,
254
- pendingWrites: Array.from(this._pendingWrites.values()).map((stack) => stack.getStack())
255
- }, {
256
- F: __dxlog_file,
257
- L: 187,
258
- S: this,
259
- C: (f, a) => f(...a)
260
- });
261
- }
262
- this._closed = true;
263
- await this.flushToDisk();
264
- await this._close();
265
- };
266
- assertArgument(hypercore2, "hypercore");
267
- this._hypercore = hypercore2;
268
- invariant(this._key, void 0, {
269
- F: __dxlog_file,
270
- L: 41,
271
- S: this,
272
- A: [
273
- "this._key",
274
- ""
275
- ]
276
- });
277
- this._writeLock.wake();
278
- }
279
215
  };
280
216
  var BatchedReadStream = class extends Readable {
217
+ _feed;
218
+ _batch;
219
+ _cursor;
220
+ _reading = false;
221
+ constructor(feed, opts = {}) {
222
+ super({
223
+ objectMode: true
224
+ });
225
+ invariant(opts.live === true, "Only live mode supported", { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 231, S: this, A: ["opts.live === true", "'Only live mode supported'"] });
226
+ invariant(opts.batch !== void 0 && opts.batch > 1, void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 232, S: this, A: ["opts.batch !== undefined && opts.batch > 1", ""] });
227
+ this._feed = feed;
228
+ this._batch = opts.batch;
229
+ this._cursor = opts.start ?? 0;
230
+ }
281
231
  _open(cb) {
282
232
  this._feed.ready(cb);
283
233
  }
@@ -321,32 +271,6 @@ var BatchedReadStream = class extends Readable {
321
271
  }
322
272
  });
323
273
  }
324
- constructor(feed, opts = {}) {
325
- super({
326
- objectMode: true
327
- }), _define_property(this, "_feed", void 0), _define_property(this, "_batch", void 0), _define_property(this, "_cursor", void 0), _define_property(this, "_reading", false);
328
- invariant(opts.live === true, "Only live mode supported", {
329
- F: __dxlog_file,
330
- L: 292,
331
- S: this,
332
- A: [
333
- "opts.live === true",
334
- "'Only live mode supported'"
335
- ]
336
- });
337
- invariant(opts.batch !== void 0 && opts.batch > 1, void 0, {
338
- F: __dxlog_file,
339
- L: 293,
340
- S: this,
341
- A: [
342
- "opts.batch !== undefined && opts.batch > 1",
343
- ""
344
- ]
345
- });
346
- this._feed = feed;
347
- this._batch = opts.batch;
348
- this._cursor = opts.start ?? 0;
349
- }
350
274
  };
351
275
 
352
276
  // src/feed-factory.ts
@@ -355,21 +279,19 @@ import { subtleCrypto } from "@dxos/crypto";
355
279
  import { failUndefined } from "@dxos/debug";
356
280
  import { createCrypto, hypercore } from "@dxos/hypercore";
357
281
  import { log as log2 } from "@dxos/log";
358
- function _define_property2(obj, key, value) {
359
- if (key in obj) {
360
- Object.defineProperty(obj, key, {
361
- value,
362
- enumerable: true,
363
- configurable: true,
364
- writable: true
365
- });
366
- } else {
367
- obj[key] = value;
368
- }
369
- return obj;
370
- }
371
282
  var __dxlog_file2 = "/__w/dxos/dxos/packages/common/feed-store/src/feed-factory.ts";
372
283
  var FeedFactory = class {
284
+ _root;
285
+ _signer;
286
+ _hypercoreOptions;
287
+ constructor({ root, signer, hypercore: hypercore2 }) {
288
+ log2("FeedFactory", {
289
+ options: hypercore2
290
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file2, L: 17, S: this });
291
+ this._root = root ?? failUndefined();
292
+ this._signer = signer;
293
+ this._hypercoreOptions = hypercore2;
294
+ }
373
295
  get storageRoot() {
374
296
  return this._root;
375
297
  }
@@ -378,12 +300,7 @@ var FeedFactory = class {
378
300
  throw new Error("Signer required to create writable feeds.");
379
301
  }
380
302
  if (options?.secretKey) {
381
- log2.warn("Secret key ignored due to signer.", void 0, {
382
- F: __dxlog_file2,
383
- L: 58,
384
- S: this,
385
- C: (f, a) => f(...a)
386
- });
303
+ log2.warn("Secret key ignored due to signer.", void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file2, L: 32, S: this });
387
304
  }
388
305
  const key = await subtleCrypto.digest("SHA-256", Buffer.from(publicKey.toHex()));
389
306
  const opts = defaultsDeep({}, this._hypercoreOptions, {
@@ -397,33 +314,12 @@ var FeedFactory = class {
397
314
  const { type, native } = storageDir.getOrCreateFile(filename);
398
315
  log2("created", {
399
316
  path: `${type}:${this._root.path}/${publicKey.truncate()}/${filename}`
400
- }, {
401
- F: __dxlog_file2,
402
- L: 82,
403
- S: this,
404
- C: (f, a) => f(...a)
405
- });
317
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file2, L: 46, S: this });
406
318
  return native;
407
319
  };
408
320
  const core = hypercore(makeStorage, Buffer.from(key), opts);
409
321
  return new FeedWrapper(core, publicKey, storageDir);
410
322
  }
411
- constructor({ root, signer, hypercore: hypercore2 }) {
412
- _define_property2(this, "_root", void 0);
413
- _define_property2(this, "_signer", void 0);
414
- _define_property2(this, "_hypercoreOptions", void 0);
415
- log2("FeedFactory", {
416
- options: hypercore2
417
- }, {
418
- F: __dxlog_file2,
419
- L: 43,
420
- S: this,
421
- C: (f, a) => f(...a)
422
- });
423
- this._root = root ?? failUndefined();
424
- this._signer = signer;
425
- this._hypercoreOptions = hypercore2;
426
- }
427
323
  };
428
324
 
429
325
  // src/feed-store.ts
@@ -433,21 +329,16 @@ import { invariant as invariant2 } from "@dxos/invariant";
433
329
  import { PublicKey } from "@dxos/keys";
434
330
  import { log as log3 } from "@dxos/log";
435
331
  import { ComplexMap, defaultMap } from "@dxos/util";
436
- function _define_property3(obj, key, value) {
437
- if (key in obj) {
438
- Object.defineProperty(obj, key, {
439
- value,
440
- enumerable: true,
441
- configurable: true,
442
- writable: true
443
- });
444
- } else {
445
- obj[key] = value;
446
- }
447
- return obj;
448
- }
449
332
  var __dxlog_file3 = "/__w/dxos/dxos/packages/common/feed-store/src/feed-store.ts";
450
333
  var FeedStore = class {
334
+ _feeds = new ComplexMap(PublicKey.hash);
335
+ _mutexes = new ComplexMap(PublicKey.hash);
336
+ _factory;
337
+ _closed = false;
338
+ feedOpened = new Event();
339
+ constructor({ factory }) {
340
+ this._factory = factory ?? failUndefined2();
341
+ }
451
342
  get size() {
452
343
  return this._feeds.size;
453
344
  }
@@ -467,30 +358,9 @@ var FeedStore = class {
467
358
  async openFeed(feedKey, { writable, sparse } = {}) {
468
359
  log3("opening feed", {
469
360
  feedKey
470
- }, {
471
- F: __dxlog_file3,
472
- L: 55,
473
- S: this,
474
- C: (f, a) => f(...a)
475
- });
476
- invariant2(feedKey, void 0, {
477
- F: __dxlog_file3,
478
- L: 56,
479
- S: this,
480
- A: [
481
- "feedKey",
482
- ""
483
- ]
484
- });
485
- invariant2(!this._closed, "Feed store is closed", {
486
- F: __dxlog_file3,
487
- L: 57,
488
- S: this,
489
- A: [
490
- "!this._closed",
491
- "'Feed store is closed'"
492
- ]
493
- });
361
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 36, S: this });
362
+ invariant2(feedKey, void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 39, S: this, A: ["feedKey", ""] });
363
+ invariant2(!this._closed, "Feed store is closed", { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 40, S: this, A: ["!this._closed", "'Feed store is closed'"] });
494
364
  const mutex = defaultMap(this._mutexes, feedKey, () => new Mutex());
495
365
  return mutex.executeSynchronized(async () => {
496
366
  let feed = this.getFeed(feedKey);
@@ -513,12 +383,7 @@ var FeedStore = class {
513
383
  this.feedOpened.emit(feed);
514
384
  log3("opened", {
515
385
  feedKey
516
- }, {
517
- F: __dxlog_file3,
518
- L: 85,
519
- S: this,
520
- C: (f, a) => f(...a)
521
- });
386
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 63, S: this });
522
387
  return feed;
523
388
  });
524
389
  }
@@ -526,40 +391,14 @@ var FeedStore = class {
526
391
  * Close all feeds.
527
392
  */
528
393
  async close() {
529
- log3("closing...", void 0, {
530
- F: __dxlog_file3,
531
- L: 94,
532
- S: this,
533
- C: (f, a) => f(...a)
534
- });
394
+ log3("closing...", void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 72, S: this });
535
395
  this._closed = true;
536
396
  await Promise.all(Array.from(this._feeds.values()).map(async (feed) => {
537
397
  await feed.close();
538
- invariant2(feed.closed, void 0, {
539
- F: __dxlog_file3,
540
- L: 99,
541
- S: this,
542
- A: [
543
- "feed.closed",
544
- ""
545
- ]
546
- });
398
+ invariant2(feed.closed, void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 76, S: this, A: ["feed.closed", ""] });
547
399
  }));
548
400
  this._feeds.clear();
549
- log3("closed", void 0, {
550
- F: __dxlog_file3,
551
- L: 108,
552
- S: this,
553
- C: (f, a) => f(...a)
554
- });
555
- }
556
- constructor({ factory }) {
557
- _define_property3(this, "_feeds", new ComplexMap(PublicKey.hash));
558
- _define_property3(this, "_mutexes", new ComplexMap(PublicKey.hash));
559
- _define_property3(this, "_factory", void 0);
560
- _define_property3(this, "_closed", false);
561
- _define_property3(this, "feedOpened", new Event());
562
- this._factory = factory ?? failUndefined2();
401
+ log3("closed", void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 83, S: this });
563
402
  }
564
403
  };
565
404
 
@@ -568,4 +407,4 @@ export {
568
407
  FeedFactory,
569
408
  FeedStore
570
409
  };
571
- //# sourceMappingURL=chunk-4RW534M7.mjs.map
410
+ //# sourceMappingURL=chunk-MB63GMGR.mjs.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/feed-wrapper.ts", "../../../src/feed-factory.ts", "../../../src/feed-store.ts"],
4
+ "sourcesContent": ["//\n// Copyright 2022 DXOS.org\n//\n\nimport { inspect } from 'node:util';\nimport { promisify } from 'node:util';\nimport { Readable, Transform } from 'streamx';\n\nimport { Trigger } from '@dxos/async';\nimport { StackTrace, inspectObject } from '@dxos/debug';\nimport type { Hypercore, HypercoreProperties, ReadStreamOptions } from '@dxos/hypercore';\nimport { assertArgument, invariant } from '@dxos/invariant';\nimport { type PublicKey } from '@dxos/keys';\nimport { log } from '@dxos/log';\nimport { type Directory } from '@dxos/random-access-storage';\nimport { arrayToBuffer, rangeFromTo } from '@dxos/util';\nimport type { GetOptions, Proof } from '@dxos/vendor-hypercore/hypercore';\n\nimport { type FeedWriter, type WriteReceipt } from './feed-writer';\n\n/**\n * Async feed wrapper.\n */\nexport class FeedWrapper<T extends {}> {\n private _hypercore: Hypercore<T>;\n private readonly _pendingWrites = new Set<StackTrace>();\n\n // Pending while writes are happening. Resolves when there are no pending writes.\n private readonly _writeLock = new Trigger();\n\n private _closed = false;\n\n constructor(\n hypercore: Hypercore<T>,\n private _key: PublicKey, // TODO(burdon): Required since currently patching the key inside factory.\n private _storageDirectory: Directory,\n ) {\n assertArgument(hypercore, 'hypercore');\n this._hypercore = hypercore;\n invariant(this._key);\n this._writeLock.wake();\n }\n\n [inspect.custom](): string {\n return inspectObject(this);\n }\n\n toJSON(): { feedKey: PublicKey; length: number; opened: boolean; closed: boolean } {\n return {\n feedKey: this._key,\n length: this.properties.length,\n opened: this.properties.opened,\n closed: this.properties.closed,\n };\n }\n\n get key(): PublicKey {\n return this._key;\n }\n\n get core(): Hypercore<T> {\n return this._hypercore;\n }\n\n // TODO(burdon): Create proxy.\n get properties(): HypercoreProperties {\n return this._hypercore;\n }\n\n createReadableStream(opts?: ReadStreamOptions): Readable {\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const self = this;\n const transform = new Transform({\n transform(data: any, cb: (err?: Error | null, data?: any) => void) {\n // Delay until write is complete.\n void self._writeLock.wait().then(() => {\n this.push(data);\n cb();\n });\n },\n });\n const readStream =\n opts?.batch !== undefined && opts?.batch > 1\n ? new BatchedReadStream(this._hypercore, opts)\n : this._hypercore.createReadStream(opts);\n\n readStream.pipe(transform, (err: any) => {\n // Ignore errors.\n // We might get \"Writable stream closed prematurely\" error.\n // Its okay since the pipeline is closed and does not expect more messages.\n });\n\n return transform;\n }\n\n createFeedWriter(): FeedWriter<T> {\n return {\n write: async (data: T, { afterWrite } = {}) => {\n log('write', { feed: this._key, seq: this._hypercore.length });\n invariant(!this._closed, 'Feed closed');\n const stackTrace = new StackTrace();\n\n try {\n // Pending writes pause the read stream.\n this._pendingWrites.add(stackTrace);\n if (this._pendingWrites.size === 1) {\n this._writeLock.reset();\n }\n\n const receipt = await this.appendWithReceipt(data);\n\n // TODO(dmaretskyi): Removing this will make user-intiated writes faster but might result in a data-loss.\n await this.flushToDisk();\n\n await afterWrite?.(receipt);\n\n return receipt;\n } finally {\n // Unblock the read stream after the write (and callback) is complete.\n this._pendingWrites.delete(stackTrace);\n if (this._pendingWrites.size === 0) {\n this._writeLock.wake();\n }\n }\n },\n };\n }\n\n async appendWithReceipt(data: T): Promise<WriteReceipt> {\n const seq = await this.append(data);\n invariant(seq < this.length, 'Invalid seq after write');\n log('write complete', { feed: this._key, seq });\n const receipt: WriteReceipt = {\n feedKey: this.key,\n seq,\n };\n return receipt;\n }\n\n /**\n * Flush pending changes to disk.\n * Calling this is not required unless you want to explicitly wait for data to be written.\n */\n async flushToDisk(): Promise<void> {\n await this._storageDirectory.flush();\n }\n\n get opened(): boolean {\n return this._hypercore.opened;\n }\n\n get closed(): boolean {\n return this._hypercore.closed;\n }\n\n get readable(): boolean {\n return this._hypercore.readable;\n }\n\n get length(): number {\n return this._hypercore.length;\n }\n\n get byteLength(): number {\n return this._hypercore.byteLength;\n }\n\n on(...args: any[]) {\n return (this._hypercore as any).on(...args);\n }\n\n off(...args: any[]) {\n return (this._hypercore as any).off(...args);\n }\n\n open(...args: Parameters<Hypercore<T>['open']>) {\n return promisify(this._hypercore.open.bind(this._hypercore) as any)(...args);\n }\n\n _close(...args: Parameters<Hypercore<T>['close']>) {\n return promisify(this._hypercore.close.bind(this._hypercore) as any)(...args);\n }\n\n close = async () => {\n if (this._pendingWrites.size) {\n log.warn('Closing feed with pending writes', {\n feed: this._key,\n count: this._pendingWrites.size,\n pendingWrites: Array.from(this._pendingWrites.values()).map((stack) => stack.getStack()),\n });\n }\n this._closed = true;\n await this.flushToDisk();\n await this._close();\n };\n\n has(start: number, end?: number) {\n return this._hypercore.has(start, end);\n }\n\n get(index: number, options?: GetOptions) {\n return promisify(this._hypercore.get.bind(this._hypercore) as any)(index, options);\n }\n\n // TODO(dmaretskyi): Type better\n append(data: any | any[]): Promise<number> {\n return promisify(this._hypercore.append.bind(this._hypercore))(data);\n }\n\n /**\n * Will not resolve if `end` parameter is not specified and the feed is not closed.\n */\n download(...args: Parameters<Hypercore<T>['download']>) {\n return this._hypercore.download(...args);\n }\n\n undownload(...args: Parameters<Hypercore<T>['undownload']>) {\n return this._hypercore.undownload(...args);\n }\n\n setDownloading(...args: Parameters<Hypercore<T>['setDownloading']>) {\n return this._hypercore.setDownloading(...args);\n }\n\n replicate(...args: Parameters<Hypercore<T>['replicate']>) {\n return this._hypercore.replicate(...args);\n }\n\n clear(start: number, end?: number) {\n return promisify(this._hypercore.clear.bind(this._hypercore))(start, end);\n }\n\n proof(index: number, options?: any) {\n return promisify(this._hypercore.proof.bind(this._hypercore))(index);\n }\n\n put(index: number, data: T, proof: Proof) {\n return promisify(this._hypercore.put.bind(this._hypercore))(index, data, proof);\n }\n\n putBuffer(index: number, data: Buffer | Uint8Array, proof: Proof, peer: null): Promise<void> {\n return promisify((this._hypercore as any)._putBuffer.bind(this._hypercore) as any)(index, data, proof, peer);\n }\n\n /**\n * Clear and check for integrity.\n */\n async safeClear(from: number, to: number): Promise<void> {\n invariant(from >= 0 && from < to && to <= this.length, 'Invalid range');\n\n const CHECK_MESSAGES = 20;\n const checkBegin = to;\n const checkEnd = Math.min(checkBegin + CHECK_MESSAGES, this.length);\n\n const messagesBefore = await Promise.all(\n rangeFromTo(checkBegin, checkEnd).map((idx) =>\n this.get(idx, {\n valueEncoding: { decode: (x: Uint8Array) => x } as any,\n }),\n ),\n );\n\n await this.clear(from, to);\n\n const messagesAfter = await Promise.all(\n rangeFromTo(checkBegin, checkEnd).map((idx) =>\n this.get(idx, {\n valueEncoding: { decode: (x: Uint8Array) => x } as any,\n }),\n ),\n );\n\n for (let i = 0; i < messagesBefore.length; i++) {\n const before = arrayToBuffer(messagesBefore[i]);\n const after = arrayToBuffer(messagesAfter[i]);\n if (!before.equals(after)) {\n throw new Error('Feed corruption on clear. There has likely been a data loss.');\n }\n }\n }\n}\n\nclass BatchedReadStream extends Readable {\n private readonly _feed: Hypercore<any>;\n private readonly _batch: number;\n private _cursor: number;\n private _reading = false;\n\n constructor(feed: Hypercore<any>, opts: ReadStreamOptions = {}) {\n super({ objectMode: true });\n invariant(opts.live === true, 'Only live mode supported');\n invariant(opts.batch !== undefined && opts.batch > 1);\n this._feed = feed;\n this._batch = opts.batch;\n this._cursor = opts.start ?? 0;\n }\n\n override _open(cb: (err: Error | null) => void): void {\n this._feed.ready(cb);\n }\n\n override _read(cb: (err: Error | null) => void): void {\n if (this._reading) {\n return;\n }\n\n if (this._feed.bitfield!.total(this._cursor, this._cursor + this._batch) === this._batch) {\n this._batchedRead(cb);\n } else {\n this._nonBatchedRead(cb);\n }\n }\n\n private _nonBatchedRead(cb: (err: Error | null) => void): void {\n this._feed.get(this._cursor, { wait: true }, (err, data) => {\n if (err) {\n cb(err);\n } else {\n this._cursor++;\n this._reading = false;\n this.push(data);\n cb(null);\n }\n });\n }\n\n private _batchedRead(cb: (err: Error | null) => void): void {\n this._feed.getBatch(this._cursor, this._cursor + this._batch, { wait: true }, (err, data) => {\n if (err) {\n cb(err);\n } else {\n this._cursor += data.length;\n this._reading = false;\n for (const item of data) {\n this.push(item);\n }\n cb(null);\n }\n });\n }\n}\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport defaultsDeep from 'lodash.defaultsdeep';\n\nimport { type Signer, subtleCrypto } from '@dxos/crypto';\nimport { failUndefined } from '@dxos/debug';\nimport type { HypercoreOptions } from '@dxos/hypercore';\nimport { createCrypto, hypercore } from '@dxos/hypercore';\nimport { type PublicKey } from '@dxos/keys';\nimport { log } from '@dxos/log';\nimport { type Directory } from '@dxos/random-access-storage';\n\nimport { FeedWrapper } from './feed-wrapper';\n\nexport type FeedFactoryOptions = {\n root: Directory;\n signer?: Signer;\n hypercore?: HypercoreOptions;\n};\n\nexport type FeedOptions = HypercoreOptions & {\n writable?: boolean;\n /**\n * Optional hook called before data is written after being verified.\n * Called for writes done by this peer as well as for data replicated from other peers.\n * NOTE: The callback must be invoked to complete the write operation.\n * @param peer Always null in hypercore@9.12.0.\n */\n onwrite?: (index: number, data: any, peer: null, cb: (err: Error | null) => void) => void;\n};\n\n/**\n * Hypercore factory.\n */\nexport class FeedFactory<T extends {}> {\n private readonly _root: Directory;\n private readonly _signer?: Signer;\n private readonly _hypercoreOptions?: HypercoreOptions;\n\n constructor({ root, signer, hypercore }: FeedFactoryOptions) {\n log('FeedFactory', { options: hypercore });\n this._root = root ?? failUndefined();\n this._signer = signer;\n this._hypercoreOptions = hypercore;\n }\n\n get storageRoot() {\n return this._root;\n }\n\n async createFeed(publicKey: PublicKey, options?: FeedOptions): Promise<FeedWrapper<T>> {\n if (options?.writable && !this._signer) {\n throw new Error('Signer required to create writable feeds.');\n }\n if (options?.secretKey) {\n log.warn('Secret key ignored due to signer.');\n }\n\n // Required due to hypercore's 32-byte key limit.\n const key = await subtleCrypto.digest('SHA-256', Buffer.from(publicKey.toHex()));\n\n const opts = defaultsDeep(\n {\n // sparse: false,\n // stats: false,\n },\n this._hypercoreOptions,\n {\n secretKey: this._signer && options?.writable ? Buffer.from('secret') : undefined,\n crypto: this._signer ? createCrypto(this._signer, publicKey) : undefined,\n onwrite: options?.onwrite,\n noiseKeyPair: {}, // We're not using noise.\n },\n options,\n );\n\n const storageDir = this._root.createDirectory(publicKey.toHex());\n const makeStorage = (filename: string) => {\n const { type, native } = storageDir.getOrCreateFile(filename);\n log('created', {\n path: `${type}:${this._root.path}/${publicKey.truncate()}/${filename}`,\n });\n\n return native;\n };\n\n const core = hypercore(makeStorage, Buffer.from(key), opts);\n return new FeedWrapper(core, publicKey, storageDir);\n }\n}\n", "//\n// Copyright 2019 DXOS.org\n//\n\nimport { Event, Mutex } from '@dxos/async';\nimport { failUndefined } from '@dxos/debug';\nimport { invariant } from '@dxos/invariant';\nimport { PublicKey } from '@dxos/keys';\nimport { log } from '@dxos/log';\nimport { ComplexMap, defaultMap } from '@dxos/util';\n\nimport { type FeedFactory, type FeedOptions } from './feed-factory';\nimport { type FeedWrapper } from './feed-wrapper';\n\nexport interface FeedStoreOptions<T extends {}> {\n factory: FeedFactory<T>;\n}\n\n/**\n * Persistent hypercore store.\n */\nexport class FeedStore<T extends {}> {\n private readonly _feeds: ComplexMap<PublicKey, FeedWrapper<T>> = new ComplexMap(PublicKey.hash);\n private readonly _mutexes = new ComplexMap<PublicKey, Mutex>(PublicKey.hash);\n private readonly _factory: FeedFactory<T>;\n\n private _closed = false;\n\n readonly feedOpened = new Event<FeedWrapper<T>>();\n\n constructor({ factory }: FeedStoreOptions<T>) {\n this._factory = factory ?? failUndefined();\n }\n\n get size() {\n return this._feeds.size;\n }\n\n get feeds() {\n return Array.from(this._feeds.values());\n }\n\n /**\n * Get the open feed if it exists.\n */\n getFeed(publicKey: PublicKey): FeedWrapper<T> | undefined {\n return this._feeds.get(publicKey);\n }\n\n /**\n * Gets or opens a feed.\n * The feed is readonly unless a secret key is provided.\n */\n async openFeed(feedKey: PublicKey, { writable, sparse }: FeedOptions = {}): Promise<FeedWrapper<T>> {\n log('opening feed', { feedKey });\n invariant(feedKey);\n invariant(!this._closed, 'Feed store is closed');\n\n const mutex = defaultMap(this._mutexes, feedKey, () => new Mutex());\n\n return mutex.executeSynchronized(async () => {\n let feed = this.getFeed(feedKey);\n if (feed) {\n // TODO(burdon): Need to check that there's another instance being used (create test and break this).\n // TODO(burdon): Remove from store if feed is closed externally? (remove wrapped open/close methods?)\n if (writable && !feed.properties.writable) {\n throw new Error(`Read-only feed is already open: ${feedKey.truncate()}`);\n } else if ((sparse ?? false) !== feed.properties.sparse) {\n throw new Error(\n `Feed already open with different sparse setting: ${feedKey.truncate()} [${sparse} !== ${\n feed.properties.sparse\n }]`,\n );\n } else {\n await feed.open();\n return feed;\n }\n }\n\n feed = await this._factory.createFeed(feedKey, { writable, sparse });\n this._feeds.set(feed.key, feed);\n\n await feed.open();\n this.feedOpened.emit(feed);\n log('opened', { feedKey });\n return feed;\n });\n }\n\n /**\n * Close all feeds.\n */\n async close(): Promise<void> {\n log('closing...');\n this._closed = true;\n await Promise.all(\n Array.from(this._feeds.values()).map(async (feed) => {\n await feed.close();\n invariant(feed.closed);\n // TODO(burdon): SpaceProxy still being initialized.\n // SpaceProxy.initialize => Database.createItem => ... => FeedWrapper.append\n // Uncaught Error: Closed [random-access-storage/index.js:181:38]\n // await sleep(100);\n }),\n );\n\n this._feeds.clear();\n log('closed');\n }\n}\n"],
5
+ "mappings": "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",
6
+ "names": ["inspect", "promisify", "Readable", "Transform", "Trigger", "StackTrace", "inspectObject", "assertArgument", "invariant", "log", "arrayToBuffer", "rangeFromTo", "_hypercore", "_pendingWrites", "_writeLock", "hypercore", "_key", "_storageDirectory", "wake", "custom", "toJSON", "feedKey", "length", "opened", "properties", "closed", "key", "core", "createReadableStream", "transform", "self", "cb", "readStream", "createFeedWriter", "seq", "stackTrace", "reset", "receipt", "flushToDisk", "readable", "byteLength", "open", "args", "_close", "close", "feed", "count", "pendingWrites", "_closed", "start", "index", "options", "append", "undownload", "setDownloading", "replicate", "clear", "proof", "data", "putBuffer", "CHECK_MESSAGES", "checkBegin", "to", "checkEnd", "min", "messagesBefore", "valueEncoding", "x", "messagesAfter", "i", "after", "before", "equals", "Error", "_batch", "_cursor", "_reading", "objectMode", "live", "opts", "_open", "_read", "_nonBatchedRead", "err", "push", "_batchedRead", "wait", "item", "defaultsDeep", "subtleCrypto", "failUndefined", "createCrypto", "hypercore", "log", "__dxlog_file", "_signer", "_hypercoreOptions", "options", "hypercore", "log", "root", "signer", "storageRoot", "createFeed", "secretKey", "crypto", "createCrypto", "onwrite", "noiseKeyPair", "storageDir", "makeStorage", "native", "getOrCreateFile", "filename", "path", "type", "truncate", "core", "Event", "Mutex", "failUndefined", "invariant", "PublicKey", "log", "ComplexMap", "defaultMap", "__dxlog_file", "_mutexes", "_factory", "_closed", "feedOpened", "factory", "size", "feeds", "feedKey", "mutex", "executeSynchronized", "feed", "getFeed", "sparse", "properties", "Error", "emit", "from", "_feeds", "close", "closed"]
7
+ }