@dxos/feed-store 0.8.3 → 0.8.4-main.1c7ec43d41

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 (49) hide show
  1. package/dist/lib/browser/{chunk-WS47OKDO.mjs → chunk-MB63GMGR.mjs} +112 -197
  2. package/dist/lib/browser/chunk-MB63GMGR.mjs.map +7 -0
  3. package/dist/lib/browser/index.mjs +62 -202
  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 +19 -21
  7. package/dist/lib/browser/testing/index.mjs.map +3 -3
  8. package/dist/lib/node-esm/{chunk-AO5I2BX3.mjs → chunk-VZUET36D.mjs} +112 -197
  9. package/dist/lib/node-esm/chunk-VZUET36D.mjs.map +7 -0
  10. package/dist/lib/node-esm/index.mjs +62 -202
  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 +19 -21
  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 +18 -19
  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/index.d.ts +1 -1
  24. package/dist/types/src/index.d.ts.map +1 -1
  25. package/dist/types/src/testing/mocks.d.ts.map +1 -1
  26. package/dist/types/src/testing/test-builder.d.ts +2 -2
  27. package/dist/types/src/testing/test-builder.d.ts.map +1 -1
  28. package/dist/types/src/testing/test-generator.d.ts +2 -2
  29. package/dist/types/src/testing/test-generator.d.ts.map +1 -1
  30. package/dist/types/tsconfig.tsbuildinfo +1 -1
  31. package/package.json +26 -26
  32. package/src/feed-queue.test.ts +1 -1
  33. package/src/feed-queue.ts +4 -2
  34. package/src/feed-set-iterator.test.ts +6 -6
  35. package/src/feed-store.node.test.ts +5 -5
  36. package/src/feed-wrapper.test.ts +45 -12
  37. package/src/feed-wrapper.ts +74 -35
  38. package/src/index.ts +1 -1
  39. package/src/testing/test-builder.ts +3 -4
  40. package/src/testing/test-generator.ts +5 -6
  41. package/dist/lib/browser/chunk-WS47OKDO.mjs.map +0 -7
  42. package/dist/lib/node/chunk-YOYJCS5J.cjs +0 -523
  43. package/dist/lib/node/chunk-YOYJCS5J.cjs.map +0 -7
  44. package/dist/lib/node/index.cjs +0 -593
  45. package/dist/lib/node/index.cjs.map +0 -7
  46. package/dist/lib/node/meta.json +0 -1
  47. package/dist/lib/node/testing/index.cjs +0 -173
  48. package/dist/lib/node/testing/index.cjs.map +0 -7
  49. package/dist/lib/node-esm/chunk-AO5I2BX3.mjs.map +0 -7
@@ -1,73 +1,29 @@
1
1
  import "@dxos/node-std/globals";
2
2
 
3
- // packages/common/feed-store/src/feed-wrapper.ts
3
+ // src/feed-wrapper.ts
4
4
  import { inspect } from "@dxos/node-std/util";
5
+ import { promisify } from "@dxos/node-std/util";
5
6
  import { Readable, Transform } from "streamx";
6
7
  import { Trigger } from "@dxos/async";
7
- import { inspectObject, StackTrace } from "@dxos/debug";
8
- import { invariant } from "@dxos/invariant";
8
+ import { StackTrace, inspectObject } from "@dxos/debug";
9
+ import { assertArgument, invariant } from "@dxos/invariant";
9
10
  import { log } from "@dxos/log";
10
- import { arrayToBuffer, createBinder, rangeFromTo } from "@dxos/util";
11
- var __dxlog_file = "/home/runner/work/dxos/dxos/packages/common/feed-store/src/feed-wrapper.ts";
11
+ import { arrayToBuffer, rangeFromTo } from "@dxos/util";
12
+ var __dxlog_file = "/__w/dxos/dxos/packages/common/feed-store/src/feed-wrapper.ts";
12
13
  var FeedWrapper = class {
13
- constructor(_hypercore, _key, _storageDirectory) {
14
- this._hypercore = _hypercore;
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) {
15
22
  this._key = _key;
16
23
  this._storageDirectory = _storageDirectory;
17
- this._pendingWrites = /* @__PURE__ */ new Set();
18
- this._binder = createBinder(this._hypercore);
19
- this._writeLock = new Trigger();
20
- this._closed = false;
21
- this.on = this._binder.fn(this._hypercore.on);
22
- this.off = this._binder.fn(this._hypercore.off);
23
- this.open = this._binder.async(this._hypercore.open);
24
- this._close = this._binder.async(this._hypercore.close);
25
- this.close = async () => {
26
- if (this._pendingWrites.size) {
27
- log.warn("Closing feed with pending writes", {
28
- feed: this._key,
29
- count: this._pendingWrites.size,
30
- pendingWrites: Array.from(this._pendingWrites.values()).map((stack) => stack.getStack())
31
- }, {
32
- F: __dxlog_file,
33
- L: 173,
34
- S: this,
35
- C: (f, a) => f(...a)
36
- });
37
- }
38
- this._closed = true;
39
- await this.flushToDisk();
40
- await this._close();
41
- };
42
- this.has = this._binder.fn(this._hypercore.has);
43
- this.get = this._binder.async(this._hypercore.get);
44
- this.append = this._binder.async(this._hypercore.append);
45
- this.download = this._binder.fn(this._hypercore.download);
46
- this.undownload = this._binder.fn(this._hypercore.undownload);
47
- this.setDownloading = this._binder.fn(this._hypercore.setDownloading);
48
- this.replicate = this._binder.fn(this._hypercore.replicate);
49
- this.clear = this._binder.async(this._hypercore.clear);
50
- this.proof = this._binder.async(this._hypercore.proof);
51
- this.put = this._binder.async(this._hypercore.put);
52
- this.putBuffer = this._binder.async(this._hypercore._putBuffer);
53
- invariant(this._hypercore, void 0, {
54
- F: __dxlog_file,
55
- L: 37,
56
- S: this,
57
- A: [
58
- "this._hypercore",
59
- ""
60
- ]
61
- });
62
- invariant(this._key, void 0, {
63
- F: __dxlog_file,
64
- L: 38,
65
- S: this,
66
- A: [
67
- "this._key",
68
- ""
69
- ]
70
- });
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", ""] });
71
27
  this._writeLock.wake();
72
28
  }
73
29
  [inspect.custom]() {
@@ -112,21 +68,8 @@ var FeedWrapper = class {
112
68
  log("write", {
113
69
  feed: this._key,
114
70
  seq: this._hypercore.length
115
- }, {
116
- F: __dxlog_file,
117
- L: 97,
118
- S: this,
119
- C: (f, a) => f(...a)
120
- });
121
- invariant(!this._closed, "Feed closed", {
122
- F: __dxlog_file,
123
- L: 98,
124
- S: this,
125
- A: [
126
- "!this._closed",
127
- "'Feed closed'"
128
- ]
129
- });
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'"] });
130
73
  const stackTrace = new StackTrace();
131
74
  try {
132
75
  this._pendingWrites.add(stackTrace);
@@ -148,24 +91,11 @@ var FeedWrapper = class {
148
91
  }
149
92
  async appendWithReceipt(data) {
150
93
  const seq = await this.append(data);
151
- invariant(seq < this.length, "Invalid seq after write", {
152
- F: __dxlog_file,
153
- L: 129,
154
- S: this,
155
- A: [
156
- "seq < this.length",
157
- "'Invalid seq after write'"
158
- ]
159
- });
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'"] });
160
95
  log("write complete", {
161
96
  feed: this._key,
162
97
  seq
163
- }, {
164
- F: __dxlog_file,
165
- L: 130,
166
- S: this,
167
- C: (f, a) => f(...a)
168
- });
98
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file, L: 104, S: this });
169
99
  const receipt = {
170
100
  feedKey: this.key,
171
101
  seq
@@ -194,19 +124,72 @@ var FeedWrapper = class {
194
124
  get byteLength() {
195
125
  return this._hypercore.byteLength;
196
126
  }
127
+ on(...args) {
128
+ return this._hypercore.on(...args);
129
+ }
130
+ off(...args) {
131
+ return this._hypercore.off(...args);
132
+ }
133
+ open(...args) {
134
+ return promisify(this._hypercore.open.bind(this._hypercore))(...args);
135
+ }
136
+ _close(...args) {
137
+ return promisify(this._hypercore.close.bind(this._hypercore))(...args);
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
+ };
151
+ has(start, end) {
152
+ return this._hypercore.has(start, end);
153
+ }
154
+ get(index, options) {
155
+ return promisify(this._hypercore.get.bind(this._hypercore))(index, options);
156
+ }
157
+ // TODO(dmaretskyi): Type better
158
+ append(data) {
159
+ return promisify(this._hypercore.append.bind(this._hypercore))(data);
160
+ }
161
+ /**
162
+ * Will not resolve if `end` parameter is not specified and the feed is not closed.
163
+ */
164
+ download(...args) {
165
+ return this._hypercore.download(...args);
166
+ }
167
+ undownload(...args) {
168
+ return this._hypercore.undownload(...args);
169
+ }
170
+ setDownloading(...args) {
171
+ return this._hypercore.setDownloading(...args);
172
+ }
173
+ replicate(...args) {
174
+ return this._hypercore.replicate(...args);
175
+ }
176
+ clear(start, end) {
177
+ return promisify(this._hypercore.clear.bind(this._hypercore))(start, end);
178
+ }
179
+ proof(index, options) {
180
+ return promisify(this._hypercore.proof.bind(this._hypercore))(index);
181
+ }
182
+ put(index, data, proof) {
183
+ return promisify(this._hypercore.put.bind(this._hypercore))(index, data, proof);
184
+ }
185
+ putBuffer(index, data, proof, peer) {
186
+ return promisify(this._hypercore._putBuffer.bind(this._hypercore))(index, data, proof, peer);
187
+ }
197
188
  /**
198
189
  * Clear and check for integrity.
199
190
  */
200
191
  async safeClear(from, to) {
201
- invariant(from >= 0 && from < to && to <= this.length, "Invalid range", {
202
- F: __dxlog_file,
203
- L: 210,
204
- S: this,
205
- A: [
206
- "from >= 0 && from < to && to <= this.length",
207
- "'Invalid range'"
208
- ]
209
- });
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'"] });
210
193
  const CHECK_MESSAGES = 20;
211
194
  const checkBegin = to;
212
195
  const checkEnd = Math.min(checkBegin + CHECK_MESSAGES, this.length);
@@ -231,29 +214,16 @@ var FeedWrapper = class {
231
214
  }
232
215
  };
233
216
  var BatchedReadStream = class extends Readable {
217
+ _feed;
218
+ _batch;
219
+ _cursor;
220
+ _reading = false;
234
221
  constructor(feed, opts = {}) {
235
222
  super({
236
223
  objectMode: true
237
224
  });
238
- this._reading = false;
239
- invariant(opts.live === true, "Only live mode supported", {
240
- F: __dxlog_file,
241
- L: 252,
242
- S: this,
243
- A: [
244
- "opts.live === true",
245
- "'Only live mode supported'"
246
- ]
247
- });
248
- invariant(opts.batch !== void 0 && opts.batch > 1, void 0, {
249
- F: __dxlog_file,
250
- L: 253,
251
- S: this,
252
- A: [
253
- "opts.batch !== undefined && opts.batch > 1",
254
- ""
255
- ]
256
- });
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", ""] });
257
227
  this._feed = feed;
258
228
  this._batch = opts.batch;
259
229
  this._cursor = opts.start ?? 0;
@@ -303,23 +273,21 @@ var BatchedReadStream = class extends Readable {
303
273
  }
304
274
  };
305
275
 
306
- // packages/common/feed-store/src/feed-factory.ts
276
+ // src/feed-factory.ts
307
277
  import defaultsDeep from "lodash.defaultsdeep";
308
278
  import { subtleCrypto } from "@dxos/crypto";
309
279
  import { failUndefined } from "@dxos/debug";
310
280
  import { createCrypto, hypercore } from "@dxos/hypercore";
311
281
  import { log as log2 } from "@dxos/log";
312
- var __dxlog_file2 = "/home/runner/work/dxos/dxos/packages/common/feed-store/src/feed-factory.ts";
282
+ var __dxlog_file2 = "/__w/dxos/dxos/packages/common/feed-store/src/feed-factory.ts";
313
283
  var FeedFactory = class {
284
+ _root;
285
+ _signer;
286
+ _hypercoreOptions;
314
287
  constructor({ root, signer, hypercore: hypercore2 }) {
315
288
  log2("FeedFactory", {
316
289
  options: hypercore2
317
- }, {
318
- F: __dxlog_file2,
319
- L: 43,
320
- S: this,
321
- C: (f, a) => f(...a)
322
- });
290
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file2, L: 17, S: this });
323
291
  this._root = root ?? failUndefined();
324
292
  this._signer = signer;
325
293
  this._hypercoreOptions = hypercore2;
@@ -332,12 +300,7 @@ var FeedFactory = class {
332
300
  throw new Error("Signer required to create writable feeds.");
333
301
  }
334
302
  if (options?.secretKey) {
335
- log2.warn("Secret key ignored due to signer.", void 0, {
336
- F: __dxlog_file2,
337
- L: 58,
338
- S: this,
339
- C: (f, a) => f(...a)
340
- });
303
+ log2.warn("Secret key ignored due to signer.", void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file2, L: 32, S: this });
341
304
  }
342
305
  const key = await subtleCrypto.digest("SHA-256", Buffer.from(publicKey.toHex()));
343
306
  const opts = defaultsDeep({}, this._hypercoreOptions, {
@@ -351,12 +314,7 @@ var FeedFactory = class {
351
314
  const { type, native } = storageDir.getOrCreateFile(filename);
352
315
  log2("created", {
353
316
  path: `${type}:${this._root.path}/${publicKey.truncate()}/${filename}`
354
- }, {
355
- F: __dxlog_file2,
356
- L: 82,
357
- S: this,
358
- C: (f, a) => f(...a)
359
- });
317
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file2, L: 46, S: this });
360
318
  return native;
361
319
  };
362
320
  const core = hypercore(makeStorage, Buffer.from(key), opts);
@@ -364,20 +322,21 @@ var FeedFactory = class {
364
322
  }
365
323
  };
366
324
 
367
- // packages/common/feed-store/src/feed-store.ts
325
+ // src/feed-store.ts
368
326
  import { Event, Mutex } from "@dxos/async";
369
327
  import { failUndefined as failUndefined2 } from "@dxos/debug";
370
328
  import { invariant as invariant2 } from "@dxos/invariant";
371
329
  import { PublicKey } from "@dxos/keys";
372
330
  import { log as log3 } from "@dxos/log";
373
331
  import { ComplexMap, defaultMap } from "@dxos/util";
374
- var __dxlog_file3 = "/home/runner/work/dxos/dxos/packages/common/feed-store/src/feed-store.ts";
332
+ var __dxlog_file3 = "/__w/dxos/dxos/packages/common/feed-store/src/feed-store.ts";
375
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();
376
339
  constructor({ factory }) {
377
- this._feeds = new ComplexMap(PublicKey.hash);
378
- this._mutexes = new ComplexMap(PublicKey.hash);
379
- this._closed = false;
380
- this.feedOpened = new Event();
381
340
  this._factory = factory ?? failUndefined2();
382
341
  }
383
342
  get size() {
@@ -399,30 +358,9 @@ var FeedStore = class {
399
358
  async openFeed(feedKey, { writable, sparse } = {}) {
400
359
  log3("opening feed", {
401
360
  feedKey
402
- }, {
403
- F: __dxlog_file3,
404
- L: 55,
405
- S: this,
406
- C: (f, a) => f(...a)
407
- });
408
- invariant2(feedKey, void 0, {
409
- F: __dxlog_file3,
410
- L: 56,
411
- S: this,
412
- A: [
413
- "feedKey",
414
- ""
415
- ]
416
- });
417
- invariant2(!this._closed, "Feed store is closed", {
418
- F: __dxlog_file3,
419
- L: 57,
420
- S: this,
421
- A: [
422
- "!this._closed",
423
- "'Feed store is closed'"
424
- ]
425
- });
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'"] });
426
364
  const mutex = defaultMap(this._mutexes, feedKey, () => new Mutex());
427
365
  return mutex.executeSynchronized(async () => {
428
366
  let feed = this.getFeed(feedKey);
@@ -445,12 +383,7 @@ var FeedStore = class {
445
383
  this.feedOpened.emit(feed);
446
384
  log3("opened", {
447
385
  feedKey
448
- }, {
449
- F: __dxlog_file3,
450
- L: 85,
451
- S: this,
452
- C: (f, a) => f(...a)
453
- });
386
+ }, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 63, S: this });
454
387
  return feed;
455
388
  });
456
389
  }
@@ -458,32 +391,14 @@ var FeedStore = class {
458
391
  * Close all feeds.
459
392
  */
460
393
  async close() {
461
- log3("closing...", void 0, {
462
- F: __dxlog_file3,
463
- L: 94,
464
- S: this,
465
- C: (f, a) => f(...a)
466
- });
394
+ log3("closing...", void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 72, S: this });
467
395
  this._closed = true;
468
396
  await Promise.all(Array.from(this._feeds.values()).map(async (feed) => {
469
397
  await feed.close();
470
- invariant2(feed.closed, void 0, {
471
- F: __dxlog_file3,
472
- L: 99,
473
- S: this,
474
- A: [
475
- "feed.closed",
476
- ""
477
- ]
478
- });
398
+ invariant2(feed.closed, void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 76, S: this, A: ["feed.closed", ""] });
479
399
  }));
480
400
  this._feeds.clear();
481
- log3("closed", void 0, {
482
- F: __dxlog_file3,
483
- L: 108,
484
- S: this,
485
- C: (f, a) => f(...a)
486
- });
401
+ log3("closed", void 0, { "~LogMeta": "~LogMeta", F: __dxlog_file3, L: 83, S: this });
487
402
  }
488
403
  };
489
404
 
@@ -492,4 +407,4 @@ export {
492
407
  FeedFactory,
493
408
  FeedStore
494
409
  };
495
- //# sourceMappingURL=chunk-WS47OKDO.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
+ }