@dxos/echo-pipeline 0.1.55 → 0.1.56-main.09ca29d

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 (33) hide show
  1. package/dist/lib/browser/{chunk-4VJRJ4SY.mjs → chunk-7RPTJNLX.mjs} +469 -163
  2. package/dist/lib/browser/chunk-7RPTJNLX.mjs.map +7 -0
  3. package/dist/lib/browser/index.mjs +1 -1
  4. package/dist/lib/browser/meta.json +1 -1
  5. package/dist/lib/browser/testing/index.mjs +1 -1
  6. package/dist/lib/node/index.cjs +468 -162
  7. package/dist/lib/node/index.cjs.map +3 -3
  8. package/dist/lib/node/meta.json +1 -1
  9. package/dist/lib/node/testing/index.cjs +456 -150
  10. package/dist/lib/node/testing/index.cjs.map +3 -3
  11. package/dist/types/src/common/feeds.d.ts.map +1 -1
  12. package/dist/types/src/db-host/data-service-host.d.ts.map +1 -1
  13. package/dist/types/src/db-host/data-service.d.ts.map +1 -1
  14. package/dist/types/src/metadata/metadata-store.d.ts.map +1 -1
  15. package/dist/types/src/pipeline/message-selector.d.ts.map +1 -1
  16. package/dist/types/src/pipeline/pipeline.d.ts.map +1 -1
  17. package/dist/types/src/space/auth.d.ts.map +1 -1
  18. package/dist/types/src/space/data-pipeline.d.ts.map +1 -1
  19. package/dist/types/src/space/space-protocol.d.ts.map +1 -1
  20. package/dist/types/src/space/space.d.ts.map +1 -1
  21. package/package.json +31 -31
  22. package/src/common/feeds.ts +1 -2
  23. package/src/db-host/data-service-host.ts +1 -2
  24. package/src/db-host/data-service.ts +1 -2
  25. package/src/metadata/metadata-store.ts +1 -1
  26. package/src/pipeline/message-selector.ts +1 -2
  27. package/src/pipeline/pipeline.ts +1 -2
  28. package/src/space/auth.ts +1 -2
  29. package/src/space/data-pipeline.ts +1 -2
  30. package/src/space/space-protocol.ts +3 -2
  31. package/src/space/space.test.ts +8 -8
  32. package/src/space/space.ts +1 -2
  33. package/dist/lib/browser/chunk-4VJRJ4SY.mjs.map +0 -7
@@ -7,23 +7,40 @@ var codec = schema.getCodecForType("dxos.echo.feed.FeedMessage");
7
7
  var valueEncoding = createCodecEncoding(codec);
8
8
 
9
9
  // packages/core/echo/echo-pipeline/src/common/feeds.ts
10
- import invariant from "tiny-invariant";
10
+ import { invariant } from "@dxos/invariant";
11
+ var __dxlog_file = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/common/feeds.ts";
11
12
  var createMappedFeedWriter = (mapper, writer) => {
12
- invariant(mapper);
13
- invariant(writer);
13
+ invariant(mapper, void 0, {
14
+ F: __dxlog_file,
15
+ L: 16,
16
+ S: void 0,
17
+ A: [
18
+ "mapper",
19
+ ""
20
+ ]
21
+ });
22
+ invariant(writer, void 0, {
23
+ F: __dxlog_file,
24
+ L: 17,
25
+ S: void 0,
26
+ A: [
27
+ "writer",
28
+ ""
29
+ ]
30
+ });
14
31
  return {
15
32
  write: async (data, options) => await writer.write(await mapper(data), options)
16
33
  };
17
34
  };
18
35
 
19
36
  // packages/core/echo/echo-pipeline/src/db-host/data-service-host.ts
20
- import invariant2 from "tiny-invariant";
21
37
  import { Stream } from "@dxos/codec-protobuf";
22
38
  import { Context } from "@dxos/context";
23
39
  import { tagMutationsInBatch, setMetadataOnObject } from "@dxos/echo-db";
40
+ import { invariant as invariant2 } from "@dxos/invariant";
24
41
  import { log } from "@dxos/log";
25
42
  import { ComplexMap } from "@dxos/util";
26
- var __dxlog_file = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/db-host/data-service-host.ts";
43
+ var __dxlog_file2 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/db-host/data-service-host.ts";
27
44
  var DataServiceHost = class {
28
45
  constructor(_itemManager, _itemDemuxer, _writeStream) {
29
46
  this._itemManager = _itemManager;
@@ -52,13 +69,21 @@ var DataServiceHost = class {
52
69
  this._itemDemuxer.mutation.on(ctx, (message) => {
53
70
  var _a;
54
71
  const { batch, meta } = message;
55
- invariant2(!meta.clientTag, "Unexpected client tag in mutation message");
72
+ invariant2(!meta.clientTag, "Unexpected client tag in mutation message", {
73
+ F: __dxlog_file2,
74
+ L: 61,
75
+ S: this,
76
+ A: [
77
+ "!(meta as any).clientTag",
78
+ "'Unexpected client tag in mutation message'"
79
+ ]
80
+ });
56
81
  log("message", {
57
82
  batch,
58
83
  meta
59
84
  }, {
60
- F: __dxlog_file,
61
- L: 63,
85
+ F: __dxlog_file2,
86
+ L: 62,
62
87
  S: this,
63
88
  C: (f, a) => f(...a)
64
89
  });
@@ -85,14 +110,30 @@ var DataServiceHost = class {
85
110
  }
86
111
  async write(request) {
87
112
  var _a, _b;
88
- invariant2(!this._ctx.disposed, "Cannot write to closed DataServiceHost");
89
- invariant2(this._writeStream, "Cannot write mutations in readonly mode");
113
+ invariant2(!this._ctx.disposed, "Cannot write to closed DataServiceHost", {
114
+ F: __dxlog_file2,
115
+ L: 88,
116
+ S: this,
117
+ A: [
118
+ "!this._ctx.disposed",
119
+ "'Cannot write to closed DataServiceHost'"
120
+ ]
121
+ });
122
+ invariant2(this._writeStream, "Cannot write mutations in readonly mode", {
123
+ F: __dxlog_file2,
124
+ L: 89,
125
+ S: this,
126
+ A: [
127
+ "this._writeStream",
128
+ "'Cannot write mutations in readonly mode'"
129
+ ]
130
+ });
90
131
  log("write", {
91
132
  clientTag: request.clientTag,
92
133
  objectCount: (_b = (_a = request.batch.objects) == null ? void 0 : _a.length) != null ? _b : 0
93
134
  }, {
94
- F: __dxlog_file,
95
- L: 92,
135
+ F: __dxlog_file2,
136
+ L: 91,
96
137
  S: this,
97
138
  C: (f, a) => f(...a)
98
139
  });
@@ -105,8 +146,8 @@ var DataServiceHost = class {
105
146
  feedKey: receipt2.feedKey,
106
147
  seq: receipt2.seq
107
148
  }, {
108
- F: __dxlog_file,
109
- L: 101,
149
+ F: __dxlog_file2,
150
+ L: 100,
110
151
  S: this,
111
152
  C: (f, a) => f(...a)
112
153
  });
@@ -273,12 +314,12 @@ var SnapshotStore = class {
273
314
  };
274
315
 
275
316
  // packages/core/echo/echo-pipeline/src/db-host/data-service.ts
276
- import invariant3 from "tiny-invariant";
277
317
  import { raise } from "@dxos/debug";
318
+ import { invariant as invariant3 } from "@dxos/invariant";
278
319
  import { PublicKey as PublicKey2 } from "@dxos/keys";
279
320
  import { log as log2 } from "@dxos/log";
280
321
  import { ComplexMap as ComplexMap2 } from "@dxos/util";
281
- var __dxlog_file2 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/db-host/data-service.ts";
322
+ var __dxlog_file3 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/db-host/data-service.ts";
282
323
  var DataServiceSubscriptions = class {
283
324
  constructor() {
284
325
  this._spaces = new ComplexMap2(PublicKey2.hash);
@@ -290,12 +331,20 @@ var DataServiceSubscriptions = class {
290
331
  log2("Registering space", {
291
332
  spaceKey
292
333
  }, {
293
- F: __dxlog_file2,
294
- L: 31,
334
+ F: __dxlog_file3,
335
+ L: 30,
295
336
  S: this,
296
337
  C: (f, a) => f(...a)
297
338
  });
298
- invariant3(!this._spaces.has(spaceKey));
339
+ invariant3(!this._spaces.has(spaceKey), void 0, {
340
+ F: __dxlog_file3,
341
+ L: 31,
342
+ S: this,
343
+ A: [
344
+ "!this._spaces.has(spaceKey)",
345
+ ""
346
+ ]
347
+ });
299
348
  await host.open();
300
349
  this._spaces.set(spaceKey, host);
301
350
  }
@@ -303,8 +352,8 @@ var DataServiceSubscriptions = class {
303
352
  log2("Unregistering space", {
304
353
  spaceKey
305
354
  }, {
306
- F: __dxlog_file2,
307
- L: 38,
355
+ F: __dxlog_file3,
356
+ L: 37,
308
357
  S: this,
309
358
  C: (f, a) => f(...a)
310
359
  });
@@ -322,14 +371,38 @@ var DataServiceImpl = class {
322
371
  }
323
372
  subscribe(request) {
324
373
  var _a;
325
- invariant3(request.spaceKey);
374
+ invariant3(request.spaceKey, void 0, {
375
+ F: __dxlog_file3,
376
+ L: 56,
377
+ S: this,
378
+ A: [
379
+ "request.spaceKey",
380
+ ""
381
+ ]
382
+ });
326
383
  const host = (_a = this._subscriptions.getDataService(request.spaceKey)) != null ? _a : raise(new Error(`space not found: ${request.spaceKey}`));
327
384
  return host.subscribe();
328
385
  }
329
386
  write(request) {
330
387
  var _a;
331
- invariant3(request.spaceKey);
332
- invariant3(request.batch);
388
+ invariant3(request.spaceKey, void 0, {
389
+ F: __dxlog_file3,
390
+ L: 63,
391
+ S: this,
392
+ A: [
393
+ "request.spaceKey",
394
+ ""
395
+ ]
396
+ });
397
+ invariant3(request.batch, void 0, {
398
+ F: __dxlog_file3,
399
+ L: 64,
400
+ S: this,
401
+ A: [
402
+ "request.batch",
403
+ ""
404
+ ]
405
+ });
333
406
  const host = (_a = this._subscriptions.getDataService(request.spaceKey)) != null ? _a : raise(new Error(`space not found: ${request.spaceKey}`));
334
407
  return host.write(request);
335
408
  }
@@ -337,9 +410,9 @@ var DataServiceImpl = class {
337
410
 
338
411
  // packages/core/echo/echo-pipeline/src/metadata/metadata-store.ts
339
412
  import CRC32 from "crc-32";
340
- import invariant4 from "tiny-invariant";
341
413
  import { synchronized, Event } from "@dxos/async";
342
414
  import { DataCorruptionError } from "@dxos/errors";
415
+ import { invariant as invariant4 } from "@dxos/invariant";
343
416
  import { log as log3 } from "@dxos/log";
344
417
  import { STORAGE_VERSION, schema as schema4 } from "@dxos/protocols";
345
418
  import { SpaceState } from "@dxos/protocols/proto/dxos/client/services";
@@ -354,7 +427,7 @@ function _ts_decorate2(decorators, target, key, desc) {
354
427
  r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
355
428
  return c > 3 && r && Object.defineProperty(target, key, r), r;
356
429
  }
357
- var __dxlog_file3 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/metadata/metadata-store.ts";
430
+ var __dxlog_file4 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/metadata/metadata-store.ts";
358
431
  var emptyEchoMetadata = () => ({
359
432
  version: STORAGE_VERSION,
360
433
  spaces: [],
@@ -401,7 +474,7 @@ var MetadataStore = class {
401
474
  size: dataSize,
402
475
  checksum
403
476
  }, {
404
- F: __dxlog_file3,
477
+ F: __dxlog_file4,
405
478
  L: 72,
406
479
  S: this,
407
480
  C: (f, a) => f(...a)
@@ -423,7 +496,7 @@ var MetadataStore = class {
423
496
  log3.error("failed to load metadata", {
424
497
  err
425
498
  }, {
426
- F: __dxlog_file3,
499
+ F: __dxlog_file4,
427
500
  L: 92,
428
501
  S: this,
429
502
  C: (f, a) => f(...a)
@@ -455,7 +528,7 @@ var MetadataStore = class {
455
528
  size: encoded.length,
456
529
  checksum
457
530
  }, {
458
- F: __dxlog_file3,
531
+ F: __dxlog_file4,
459
532
  L: 124,
460
533
  S: this,
461
534
  C: (f, a) => f(...a)
@@ -470,7 +543,15 @@ var MetadataStore = class {
470
543
  return this._metadata.identity.haloSpace;
471
544
  }
472
545
  const space = this.spaces.find((space2) => space2.key === spaceKey);
473
- invariant4(space, "Space not found");
546
+ invariant4(space, "Space not found", {
547
+ F: __dxlog_file4,
548
+ L: 137,
549
+ S: this,
550
+ A: [
551
+ "space",
552
+ "'Space not found'"
553
+ ]
554
+ });
474
555
  return space;
475
556
  }
476
557
  /**
@@ -478,7 +559,7 @@ var MetadataStore = class {
478
559
  */
479
560
  async clear() {
480
561
  log3("clearing all metadata", void 0, {
481
- F: __dxlog_file3,
562
+ F: __dxlog_file4,
482
563
  L: 145,
483
564
  S: this,
484
565
  C: (f, a) => f(...a)
@@ -490,13 +571,29 @@ var MetadataStore = class {
490
571
  return this._metadata.identity;
491
572
  }
492
573
  async setIdentityRecord(record) {
493
- invariant4(!this._metadata.identity, "Cannot overwrite existing identity in metadata");
574
+ invariant4(!this._metadata.identity, "Cannot overwrite existing identity in metadata", {
575
+ F: __dxlog_file4,
576
+ L: 155,
577
+ S: this,
578
+ A: [
579
+ "!this._metadata.identity",
580
+ "'Cannot overwrite existing identity in metadata'"
581
+ ]
582
+ });
494
583
  this._metadata.identity = record;
495
584
  await this._save();
496
585
  }
497
586
  async addSpace(record) {
498
587
  var _a, _b, _c;
499
- invariant4(!((_a = this._metadata.spaces) != null ? _a : []).find((space) => space.key === record.key), "Cannot overwrite existing space in metadata");
588
+ invariant4(!((_a = this._metadata.spaces) != null ? _a : []).find((space) => space.key === record.key), "Cannot overwrite existing space in metadata", {
589
+ F: __dxlog_file4,
590
+ L: 162,
591
+ S: this,
592
+ A: [
593
+ "!(this._metadata.spaces ?? []).find((space) => space.key === record.key)",
594
+ "'Cannot overwrite existing space in metadata'"
595
+ ]
596
+ });
500
597
  ((_c = (_b = this._metadata).spaces) != null ? _c : _b.spaces = []).push(record);
501
598
  await this._save();
502
599
  }
@@ -546,7 +643,7 @@ function _ts_decorate3(decorators, target, key, desc) {
546
643
  r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
547
644
  return c > 3 && r && Object.defineProperty(target, key, r), r;
548
645
  }
549
- var __dxlog_file4 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/pipeline/timeframe-clock.ts";
646
+ var __dxlog_file5 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/pipeline/timeframe-clock.ts";
550
647
  var mapTimeframeToFeedIndexes = (timeframe) => timeframe.frames().map(([feedKey, index]) => ({
551
648
  feedKey,
552
649
  index
@@ -605,7 +702,7 @@ var TimeframeClock = class {
605
702
  target,
606
703
  current: this._timeframe
607
704
  }, {
608
- F: __dxlog_file4,
705
+ F: __dxlog_file5,
609
706
  L: 73,
610
707
  S: this,
611
708
  C: (f, a) => f(...a)
@@ -616,7 +713,7 @@ var TimeframeClock = class {
616
713
  current: this._timeframe,
617
714
  deps: Timeframe.dependencies(target, this._timeframe)
618
715
  }, {
619
- F: __dxlog_file4,
716
+ F: __dxlog_file5,
620
717
  L: 75,
621
718
  S: this,
622
719
  C: (f, a) => f(...a)
@@ -630,32 +727,40 @@ _ts_decorate3([
630
727
  ], TimeframeClock.prototype, "waitUntilReached", null);
631
728
 
632
729
  // packages/core/echo/echo-pipeline/src/pipeline/pipeline.ts
633
- import invariant6 from "tiny-invariant";
634
730
  import { Event as Event3, sleep, synchronized as synchronized2, Trigger } from "@dxos/async";
635
731
  import { Context as Context2, rejectOnDispose } from "@dxos/context";
636
732
  import { failUndefined } from "@dxos/debug";
637
733
  import { FeedSetIterator } from "@dxos/feed-store";
734
+ import { invariant as invariant6 } from "@dxos/invariant";
638
735
  import { PublicKey as PublicKey3 } from "@dxos/keys";
639
736
  import { log as log6 } from "@dxos/log";
640
737
  import { Timeframe as Timeframe2 } from "@dxos/timeframe";
641
738
  import { ComplexMap as ComplexMap3 } from "@dxos/util";
642
739
 
643
740
  // packages/core/echo/echo-pipeline/src/pipeline/message-selector.ts
644
- import invariant5 from "tiny-invariant";
741
+ import { invariant as invariant5 } from "@dxos/invariant";
645
742
  import { log as log5 } from "@dxos/log";
646
- var __dxlog_file5 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/pipeline/message-selector.ts";
743
+ var __dxlog_file6 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/pipeline/message-selector.ts";
647
744
  var createMessageSelector = (timeframeClock) => {
648
745
  return (messages) => {
649
746
  for (let i = 0; i < messages.length; i++) {
650
747
  const { data: { timeframe } } = messages[i];
651
- invariant5(timeframe);
748
+ invariant5(timeframe, void 0, {
749
+ F: __dxlog_file6,
750
+ L: 25,
751
+ S: void 0,
752
+ A: [
753
+ "timeframe",
754
+ ""
755
+ ]
756
+ });
652
757
  if (!timeframeClock.hasGaps(timeframe)) {
653
758
  return i;
654
759
  }
655
760
  }
656
761
  log5("Skipping...", void 0, {
657
- F: __dxlog_file5,
658
- L: 34,
762
+ F: __dxlog_file6,
763
+ L: 33,
659
764
  S: void 0,
660
765
  C: (f, a) => f(...a)
661
766
  });
@@ -673,7 +778,7 @@ function _ts_decorate4(decorators, target, key, desc) {
673
778
  r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
674
779
  return c > 3 && r && Object.defineProperty(target, key, r), r;
675
780
  }
676
- var __dxlog_file6 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/pipeline/pipeline.ts";
781
+ var __dxlog_file7 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/pipeline/pipeline.ts";
677
782
  var PipelineState = class {
678
783
  // prettier-ignore
679
784
  constructor(_feeds, _timeframeClock) {
@@ -730,8 +835,8 @@ var PipelineState = class {
730
835
  current: this.timeframe,
731
836
  target: this.targetTimeframe
732
837
  }, {
733
- F: __dxlog_file6,
734
- L: 126,
838
+ F: __dxlog_file7,
839
+ L: 125,
735
840
  S: this,
736
841
  C: (f, a) => f(...a)
737
842
  });
@@ -761,8 +866,8 @@ var PipelineState = class {
761
866
  target: this.targetTimeframe,
762
867
  dependencies: Timeframe2.dependencies(this.targetTimeframe, this.timeframe)
763
868
  }, {
764
- F: __dxlog_file6,
765
- L: 153,
869
+ F: __dxlog_file7,
870
+ L: 152,
766
871
  S: this,
767
872
  C: (f, a) => f(...a)
768
873
  });
@@ -791,7 +896,15 @@ var Pipeline = class {
791
896
  return this._state;
792
897
  }
793
898
  get writer() {
794
- invariant6(this._writer, "Writer not set.");
899
+ invariant6(this._writer, "Writer not set.", {
900
+ F: __dxlog_file7,
901
+ L: 230,
902
+ S: this,
903
+ A: [
904
+ "this._writer",
905
+ "'Writer not set.'"
906
+ ]
907
+ });
795
908
  return this._writer;
796
909
  }
797
910
  hasFeed(feedKey) {
@@ -810,8 +923,24 @@ var Pipeline = class {
810
923
  this._setFeedDownloadState(feed);
811
924
  }
812
925
  setWriteFeed(feed) {
813
- invariant6(!this._writer, "Writer already set.");
814
- invariant6(feed.properties.writable, "Feed must be writable.");
926
+ invariant6(!this._writer, "Writer already set.", {
927
+ F: __dxlog_file7,
928
+ L: 253,
929
+ S: this,
930
+ A: [
931
+ "!this._writer",
932
+ "'Writer already set.'"
933
+ ]
934
+ });
935
+ invariant6(feed.properties.writable, "Feed must be writable.", {
936
+ F: __dxlog_file7,
937
+ L: 254,
938
+ S: this,
939
+ A: [
940
+ "feed.properties.writable",
941
+ "'Feed must be writable.'"
942
+ ]
943
+ });
815
944
  this._writer = createMappedFeedWriter((payload) => ({
816
945
  timeframe: this._timeframeClock.timeframe,
817
946
  payload
@@ -819,8 +948,8 @@ var Pipeline = class {
819
948
  }
820
949
  async start() {
821
950
  log6("starting...", void 0, {
822
- F: __dxlog_file6,
823
- L: 268,
951
+ F: __dxlog_file7,
952
+ L: 267,
824
953
  S: this,
825
954
  C: (f, a) => f(...a)
826
955
  });
@@ -828,8 +957,8 @@ var Pipeline = class {
828
957
  await this._feedSetIterator.open();
829
958
  this._isStarted = true;
830
959
  log6("started", void 0, {
831
- F: __dxlog_file6,
832
- L: 272,
960
+ F: __dxlog_file7,
961
+ L: 271,
833
962
  S: this,
834
963
  C: (f, a) => f(...a)
835
964
  });
@@ -837,8 +966,8 @@ var Pipeline = class {
837
966
  async stop() {
838
967
  var _a;
839
968
  log6("stopping...", void 0, {
840
- F: __dxlog_file6,
841
- L: 277,
969
+ F: __dxlog_file7,
970
+ L: 276,
842
971
  S: this,
843
972
  C: (f, a) => f(...a)
844
973
  });
@@ -850,8 +979,8 @@ var Pipeline = class {
850
979
  this._state._reachedTargetPromise = void 0;
851
980
  this._isStarted = false;
852
981
  log6("stopped", void 0, {
853
- F: __dxlog_file6,
854
- L: 285,
982
+ F: __dxlog_file7,
983
+ L: 284,
855
984
  S: this,
856
985
  C: (f, a) => f(...a)
857
986
  });
@@ -861,7 +990,15 @@ var Pipeline = class {
861
990
  * The pipeline will start processing messages AFTER this timeframe.
862
991
  */
863
992
  async setCursor(timeframe) {
864
- invariant6(!this._isStarted || this._isPaused, "Invalid state.");
993
+ invariant6(!this._isStarted || this._isPaused, "Invalid state.", {
994
+ F: __dxlog_file7,
995
+ L: 293,
996
+ S: this,
997
+ A: [
998
+ "!this._isStarted || this._isPaused",
999
+ "'Invalid state.'"
1000
+ ]
1001
+ });
865
1002
  this._state._startTimeframe = timeframe;
866
1003
  this._timeframeClock.setTimeframe(timeframe);
867
1004
  for (const feed of this._feeds.values()) {
@@ -877,7 +1014,15 @@ var Pipeline = class {
877
1014
  * Calling pause while processing will cause a deadlock.
878
1015
  */
879
1016
  async pause() {
880
- invariant6(this._isStarted, "Pipeline is not open.");
1017
+ invariant6(this._isStarted, "Pipeline is not open.", {
1018
+ F: __dxlog_file7,
1019
+ L: 315,
1020
+ S: this,
1021
+ A: [
1022
+ "this._isStarted",
1023
+ "'Pipeline is not open.'"
1024
+ ]
1025
+ });
881
1026
  if (this._isPaused) {
882
1027
  return;
883
1028
  }
@@ -886,8 +1031,24 @@ var Pipeline = class {
886
1031
  this._isPaused = true;
887
1032
  }
888
1033
  async unpause() {
889
- invariant6(this._isStarted, "Pipeline is not open.");
890
- invariant6(this._isPaused, "Pipeline is not paused.");
1034
+ invariant6(this._isStarted, "Pipeline is not open.", {
1035
+ F: __dxlog_file7,
1036
+ L: 327,
1037
+ S: this,
1038
+ A: [
1039
+ "this._isStarted",
1040
+ "'Pipeline is not open.'"
1041
+ ]
1042
+ });
1043
+ invariant6(this._isPaused, "Pipeline is not paused.", {
1044
+ F: __dxlog_file7,
1045
+ L: 328,
1046
+ S: this,
1047
+ A: [
1048
+ "this._isPaused",
1049
+ "'Pipeline is not paused.'"
1050
+ ]
1051
+ });
891
1052
  this._pauseTrigger.wake();
892
1053
  this._isPaused = false;
893
1054
  }
@@ -896,15 +1057,39 @@ var Pipeline = class {
896
1057
  * Updates the timeframe clock after the message has bee processed.
897
1058
  */
898
1059
  async *consume() {
899
- invariant6(!this._isOpen, "Pipeline is already being consumed.");
1060
+ invariant6(!this._isOpen, "Pipeline is already being consumed.", {
1061
+ F: __dxlog_file7,
1062
+ L: 339,
1063
+ S: this,
1064
+ A: [
1065
+ "!this._isOpen",
1066
+ "'Pipeline is already being consumed.'"
1067
+ ]
1068
+ });
900
1069
  this._isOpen = true;
901
- invariant6(this._feedSetIterator, "Iterator not initialized.");
1070
+ invariant6(this._feedSetIterator, "Iterator not initialized.", {
1071
+ F: __dxlog_file7,
1072
+ L: 342,
1073
+ S: this,
1074
+ A: [
1075
+ "this._feedSetIterator",
1076
+ "'Iterator not initialized.'"
1077
+ ]
1078
+ });
902
1079
  let lastFeedSetIterator = this._feedSetIterator;
903
1080
  let iterable = lastFeedSetIterator[Symbol.asyncIterator]();
904
1081
  while (!this._isStopping) {
905
1082
  await this._pauseTrigger.wait();
906
1083
  if (lastFeedSetIterator !== this._feedSetIterator) {
907
- invariant6(this._feedSetIterator, "Iterator not initialized.");
1084
+ invariant6(this._feedSetIterator, "Iterator not initialized.", {
1085
+ F: __dxlog_file7,
1086
+ L: 351,
1087
+ S: this,
1088
+ A: [
1089
+ "this._feedSetIterator",
1090
+ "'Iterator not initialized.'"
1091
+ ]
1092
+ });
908
1093
  lastFeedSetIterator = this._feedSetIterator;
909
1094
  iterable = lastFeedSetIterator[Symbol.asyncIterator]();
910
1095
  }
@@ -926,8 +1111,8 @@ var Pipeline = class {
926
1111
  const seq = (_a = timeframe.get(feed.key)) != null ? _a : 0;
927
1112
  feed.undownload({
928
1113
  callback: () => log6("undownload", void 0, {
929
- F: __dxlog_file6,
930
- L: 376,
1114
+ F: __dxlog_file7,
1115
+ L: 375,
931
1116
  S: this,
932
1117
  C: (f, a) => f(...a)
933
1118
  })
@@ -939,8 +1124,8 @@ var Pipeline = class {
939
1124
  log6("failed to download feed", {
940
1125
  err
941
1126
  }, {
942
- F: __dxlog_file6,
943
- L: 378,
1127
+ F: __dxlog_file7,
1128
+ L: 377,
944
1129
  S: this,
945
1130
  C: (f, a) => f(...a)
946
1131
  });
@@ -953,8 +1138,8 @@ var Pipeline = class {
953
1138
  });
954
1139
  this._feedSetIterator.stalled.on((iterator) => {
955
1140
  log6.warn(`Stalled after ${iterator.options.stallTimeout}ms with ${iterator.size} feeds.`, void 0, {
956
- F: __dxlog_file6,
957
- L: 389,
1141
+ F: __dxlog_file7,
1142
+ L: 388,
958
1143
  S: this,
959
1144
  C: (f, a) => f(...a)
960
1145
  });
@@ -982,14 +1167,14 @@ _ts_decorate4([
982
1167
  ], Pipeline.prototype, "unpause", null);
983
1168
 
984
1169
  // packages/core/echo/echo-pipeline/src/space/auth.ts
985
- import invariant7 from "tiny-invariant";
986
1170
  import { runInContext, scheduleTask } from "@dxos/async";
987
1171
  import { Context as Context3 } from "@dxos/context";
988
1172
  import { randomBytes } from "@dxos/crypto";
1173
+ import { invariant as invariant7 } from "@dxos/invariant";
989
1174
  import { log as log7 } from "@dxos/log";
990
1175
  import { schema as schema5 } from "@dxos/protocols";
991
1176
  import { RpcExtension } from "@dxos/teleport";
992
- var __dxlog_file7 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/space/auth.ts";
1177
+ var __dxlog_file8 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/space/auth.ts";
993
1178
  var AuthExtension = class extends RpcExtension {
994
1179
  constructor(_authParams) {
995
1180
  super({
@@ -1005,8 +1190,8 @@ var AuthExtension = class extends RpcExtension {
1005
1190
  this._ctx = new Context3({
1006
1191
  onError: (err) => {
1007
1192
  log7.catch(err, void 0, {
1008
- F: __dxlog_file7,
1009
- L: 29,
1193
+ F: __dxlog_file8,
1194
+ L: 28,
1010
1195
  S: this,
1011
1196
  C: (f, a) => f(...a)
1012
1197
  });
@@ -1027,8 +1212,8 @@ var AuthExtension = class extends RpcExtension {
1027
1212
  };
1028
1213
  } catch (err) {
1029
1214
  log7.error("failed to generate auth credentials", err, {
1030
- F: __dxlog_file7,
1031
- L: 56,
1215
+ F: __dxlog_file8,
1216
+ L: 55,
1032
1217
  S: this,
1033
1218
  C: (f, a) => f(...a)
1034
1219
  });
@@ -1046,14 +1231,30 @@ var AuthExtension = class extends RpcExtension {
1046
1231
  const { credential } = await this.rpc.AuthService.authenticate({
1047
1232
  challenge
1048
1233
  });
1049
- invariant7((credential == null ? void 0 : credential.length) > 0, "invalid credential");
1234
+ invariant7((credential == null ? void 0 : credential.length) > 0, "invalid credential", {
1235
+ F: __dxlog_file8,
1236
+ L: 69,
1237
+ S: this,
1238
+ A: [
1239
+ "credential?.length > 0",
1240
+ "'invalid credential'"
1241
+ ]
1242
+ });
1050
1243
  const success = await this._authParams.verifier(challenge, credential);
1051
- invariant7(success, "credential not verified");
1244
+ invariant7(success, "credential not verified", {
1245
+ F: __dxlog_file8,
1246
+ L: 71,
1247
+ S: this,
1248
+ A: [
1249
+ "success",
1250
+ "'credential not verified'"
1251
+ ]
1252
+ });
1052
1253
  runInContext(this._ctx, () => this._authParams.onAuthSuccess());
1053
1254
  } catch (err) {
1054
1255
  log7("auth failed", err, {
1055
- F: __dxlog_file7,
1056
- L: 75,
1256
+ F: __dxlog_file8,
1257
+ L: 74,
1057
1258
  S: this,
1058
1259
  C: (f, a) => f(...a)
1059
1260
  });
@@ -1069,12 +1270,12 @@ var AuthExtension = class extends RpcExtension {
1069
1270
  };
1070
1271
 
1071
1272
  // packages/core/echo/echo-pipeline/src/space/data-pipeline.ts
1072
- import invariant8 from "tiny-invariant";
1073
1273
  import { Event as Event4, scheduleTask as scheduleTask2, synchronized as synchronized3, trackLeaks as trackLeaks2 } from "@dxos/async";
1074
1274
  import { Context as Context4 } from "@dxos/context";
1075
1275
  import { checkCredentialType } from "@dxos/credentials";
1076
1276
  import { getStateMachineFromItem, ItemManager } from "@dxos/echo-db";
1077
1277
  import { CancelledError } from "@dxos/errors";
1278
+ import { invariant as invariant8 } from "@dxos/invariant";
1078
1279
  import { log as log8 } from "@dxos/log";
1079
1280
  import { Timeframe as Timeframe3 } from "@dxos/timeframe";
1080
1281
  import { tracer } from "@dxos/util";
@@ -1088,7 +1289,7 @@ function _ts_decorate5(decorators, target, key, desc) {
1088
1289
  r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1089
1290
  return c > 3 && r && Object.defineProperty(target, key, r), r;
1090
1291
  }
1091
- var __dxlog_file8 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/space/data-pipeline.ts";
1292
+ var __dxlog_file9 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/space/data-pipeline.ts";
1092
1293
  var MESSAGES_PER_SNAPSHOT = 10;
1093
1294
  var AUTOMATIC_SNAPSHOT_DEBOUNCE_INTERVAL = 5e3;
1094
1295
  var TIMEFRAME_SAVE_DEBOUNCE_INTERVAL = 500;
@@ -1144,8 +1345,24 @@ var DataPipeline = class DataPipeline2 {
1144
1345
  }
1145
1346
  const feedWriter = {
1146
1347
  write: (data, options) => {
1147
- invariant8(this._pipeline, "Pipeline is not initialized.");
1148
- invariant8(this.currentEpoch, "Epoch is not initialized.");
1348
+ invariant8(this._pipeline, "Pipeline is not initialized.", {
1349
+ F: __dxlog_file9,
1350
+ L: 145,
1351
+ S: this,
1352
+ A: [
1353
+ "this._pipeline",
1354
+ "'Pipeline is not initialized.'"
1355
+ ]
1356
+ });
1357
+ invariant8(this.currentEpoch, "Epoch is not initialized.", {
1358
+ F: __dxlog_file9,
1359
+ L: 146,
1360
+ S: this,
1361
+ A: [
1362
+ "this.currentEpoch",
1363
+ "'Epoch is not initialized.'"
1364
+ ]
1365
+ });
1149
1366
  return this._pipeline.writer.write({
1150
1367
  data
1151
1368
  }, options);
@@ -1165,8 +1382,8 @@ var DataPipeline = class DataPipeline2 {
1165
1382
  return;
1166
1383
  }
1167
1384
  log8("close", void 0, {
1168
- F: __dxlog_file8,
1169
- L: 171,
1385
+ F: __dxlog_file9,
1386
+ L: 170,
1170
1387
  S: this,
1171
1388
  C: (f, a) => f(...a)
1172
1389
  });
@@ -1180,8 +1397,8 @@ var DataPipeline = class DataPipeline2 {
1180
1397
  }
1181
1398
  } catch (err) {
1182
1399
  log8.catch(err, void 0, {
1183
- F: __dxlog_file8,
1184
- L: 184,
1400
+ F: __dxlog_file9,
1401
+ L: 183,
1185
1402
  S: this,
1186
1403
  C: (f, a) => f(...a)
1187
1404
  });
@@ -1203,15 +1420,23 @@ var DataPipeline = class DataPipeline2 {
1203
1420
  await this._processEpochInSeparateTask(this.currentEpoch);
1204
1421
  await waitForOneEpoch;
1205
1422
  }
1206
- invariant8(this._pipeline, "Pipeline is not initialized.");
1423
+ invariant8(this._pipeline, "Pipeline is not initialized.", {
1424
+ F: __dxlog_file9,
1425
+ L: 206,
1426
+ S: this,
1427
+ A: [
1428
+ "this._pipeline",
1429
+ "'Pipeline is not initialized.'"
1430
+ ]
1431
+ });
1207
1432
  for await (const msg of this._pipeline.consume()) {
1208
1433
  const { feedKey, seq, data } = msg;
1209
1434
  log8("processing message", {
1210
1435
  feedKey,
1211
1436
  seq
1212
1437
  }, {
1213
- F: __dxlog_file8,
1214
- L: 210,
1438
+ F: __dxlog_file9,
1439
+ L: 209,
1215
1440
  S: this,
1216
1441
  C: (f, a) => f(...a)
1217
1442
  });
@@ -1222,8 +1447,8 @@ var DataPipeline = class DataPipeline2 {
1222
1447
  log8.warn("Could not find feed", {
1223
1448
  feedKey
1224
1449
  }, {
1225
- F: __dxlog_file8,
1226
- L: 216,
1450
+ F: __dxlog_file9,
1451
+ L: 215,
1227
1452
  S: this,
1228
1453
  C: (f, a) => f(...a)
1229
1454
  });
@@ -1245,8 +1470,8 @@ var DataPipeline = class DataPipeline2 {
1245
1470
  seq,
1246
1471
  spaceKey: this._params.spaceKey.toHex()
1247
1472
  }, {
1248
- F: __dxlog_file8,
1249
- L: 233,
1473
+ F: __dxlog_file9,
1474
+ L: 232,
1250
1475
  S: this,
1251
1476
  C: (f, a) => f(...a)
1252
1477
  });
@@ -1254,8 +1479,8 @@ var DataPipeline = class DataPipeline2 {
1254
1479
  }
1255
1480
  } catch (err) {
1256
1481
  log8.catch(err, void 0, {
1257
- F: __dxlog_file8,
1258
- L: 243,
1482
+ F: __dxlog_file9,
1483
+ L: 242,
1259
1484
  S: this,
1260
1485
  C: (f, a) => f(...a)
1261
1486
  });
@@ -1263,7 +1488,15 @@ var DataPipeline = class DataPipeline2 {
1263
1488
  }
1264
1489
  }
1265
1490
  _createSnapshot() {
1266
- invariant8(this.databaseHost, "Database backend is not initialized.");
1491
+ invariant8(this.databaseHost, "Database backend is not initialized.", {
1492
+ F: __dxlog_file9,
1493
+ L: 248,
1494
+ S: this,
1495
+ A: [
1496
+ "this.databaseHost",
1497
+ "'Database backend is not initialized.'"
1498
+ ]
1499
+ });
1267
1500
  return {
1268
1501
  spaceKey: this._params.spaceKey.asUint8Array(),
1269
1502
  timeframe: this._pipeline.state.timeframe,
@@ -1289,8 +1522,8 @@ var DataPipeline = class DataPipeline2 {
1289
1522
  }
1290
1523
  } catch (err) {
1291
1524
  log8.warn("Failed to cache properties", err, {
1292
- F: __dxlog_file8,
1293
- L: 278,
1525
+ F: __dxlog_file9,
1526
+ L: 277,
1294
1527
  S: this,
1295
1528
  C: (f, a) => f(...a)
1296
1529
  });
@@ -1316,15 +1549,15 @@ var DataPipeline = class DataPipeline2 {
1316
1549
  onError: (err) => {
1317
1550
  if (err instanceof CancelledError) {
1318
1551
  log8("Epoch processing cancelled.", void 0, {
1319
- F: __dxlog_file8,
1320
- L: 310,
1552
+ F: __dxlog_file9,
1553
+ L: 309,
1321
1554
  S: this,
1322
1555
  C: (f, a) => f(...a)
1323
1556
  });
1324
1557
  } else {
1325
1558
  log8.catch(err, void 0, {
1326
- F: __dxlog_file8,
1327
- L: 312,
1559
+ F: __dxlog_file9,
1560
+ L: 311,
1328
1561
  S: this,
1329
1562
  C: (f, a) => f(...a)
1330
1563
  });
@@ -1339,8 +1572,8 @@ var DataPipeline = class DataPipeline2 {
1339
1572
  log8("process epoch", {
1340
1573
  epoch
1341
1574
  }, {
1342
- F: __dxlog_file8,
1343
- L: 322,
1575
+ F: __dxlog_file9,
1576
+ L: 321,
1344
1577
  S: this,
1345
1578
  C: (f, a) => f(...a)
1346
1579
  });
@@ -1350,14 +1583,30 @@ var DataPipeline = class DataPipeline2 {
1350
1583
  });
1351
1584
  }
1352
1585
  async _processEpoch(ctx, epoch) {
1353
- invariant8(this._isOpen, "Space is closed.");
1354
- invariant8(this._pipeline);
1586
+ invariant8(this._isOpen, "Space is closed.", {
1587
+ F: __dxlog_file9,
1588
+ L: 331,
1589
+ S: this,
1590
+ A: [
1591
+ "this._isOpen",
1592
+ "'Space is closed.'"
1593
+ ]
1594
+ });
1595
+ invariant8(this._pipeline, void 0, {
1596
+ F: __dxlog_file9,
1597
+ L: 332,
1598
+ S: this,
1599
+ A: [
1600
+ "this._pipeline",
1601
+ ""
1602
+ ]
1603
+ });
1355
1604
  this._lastProcessedEpoch = epoch.number;
1356
1605
  log8("Processing epoch", {
1357
1606
  epoch
1358
1607
  }, {
1359
- F: __dxlog_file8,
1360
- L: 336,
1608
+ F: __dxlog_file9,
1609
+ L: 335,
1361
1610
  S: this,
1362
1611
  C: (f, a) => f(...a)
1363
1612
  });
@@ -1366,8 +1615,8 @@ var DataPipeline = class DataPipeline2 {
1366
1615
  this.databaseHost._itemDemuxer.restoreFromSnapshot(snapshot.database);
1367
1616
  }
1368
1617
  log8("restarting pipeline for epoch", void 0, {
1369
- F: __dxlog_file8,
1370
- L: 344,
1618
+ F: __dxlog_file9,
1619
+ L: 343,
1371
1620
  S: this,
1372
1621
  C: (f, a) => f(...a)
1373
1622
  });
@@ -1376,12 +1625,36 @@ var DataPipeline = class DataPipeline2 {
1376
1625
  await this._pipeline.unpause();
1377
1626
  }
1378
1627
  async waitUntilTimeframe(timeframe) {
1379
- invariant8(this._pipeline, "Pipeline is not initialized.");
1628
+ invariant8(this._pipeline, "Pipeline is not initialized.", {
1629
+ F: __dxlog_file9,
1630
+ L: 351,
1631
+ S: this,
1632
+ A: [
1633
+ "this._pipeline",
1634
+ "'Pipeline is not initialized.'"
1635
+ ]
1636
+ });
1380
1637
  await this._pipeline.state.waitUntilTimeframe(timeframe);
1381
1638
  }
1382
1639
  async createEpoch() {
1383
- invariant8(this._pipeline);
1384
- invariant8(this.currentEpoch);
1640
+ invariant8(this._pipeline, void 0, {
1641
+ F: __dxlog_file9,
1642
+ L: 357,
1643
+ S: this,
1644
+ A: [
1645
+ "this._pipeline",
1646
+ ""
1647
+ ]
1648
+ });
1649
+ invariant8(this.currentEpoch, void 0, {
1650
+ F: __dxlog_file9,
1651
+ L: 358,
1652
+ S: this,
1653
+ A: [
1654
+ "this.currentEpoch",
1655
+ ""
1656
+ ]
1657
+ });
1385
1658
  await this._pipeline.pause();
1386
1659
  const snapshot = await this._createSnapshot();
1387
1660
  const snapshotCid = await this._params.snapshotManager.store(snapshot);
@@ -1415,8 +1688,8 @@ DataPipeline = _ts_decorate5([
1415
1688
  ], DataPipeline);
1416
1689
 
1417
1690
  // packages/core/echo/echo-pipeline/src/space/space.ts
1418
- import invariant9 from "tiny-invariant";
1419
1691
  import { Event as Event5, synchronized as synchronized4, trackLeaks as trackLeaks3, Lock } from "@dxos/async";
1692
+ import { invariant as invariant9 } from "@dxos/invariant";
1420
1693
  import { log as log10, logInfo } from "@dxos/log";
1421
1694
  import { AdmittedFeed as AdmittedFeed2 } from "@dxos/protocols/proto/dxos/halo/credentials";
1422
1695
  import { Callback as Callback2 } from "@dxos/util";
@@ -1428,7 +1701,7 @@ import { log as log9 } from "@dxos/log";
1428
1701
  import { AdmittedFeed } from "@dxos/protocols/proto/dxos/halo/credentials";
1429
1702
  import { Timeframe as Timeframe4 } from "@dxos/timeframe";
1430
1703
  import { Callback, tracer as tracer2 } from "@dxos/util";
1431
- var __dxlog_file9 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/space/control-pipeline.ts";
1704
+ var __dxlog_file10 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/space/control-pipeline.ts";
1432
1705
  var TIMEFRAME_SAVE_DEBOUNCE_INTERVAL2 = 500;
1433
1706
  var ControlPipeline = class {
1434
1707
  constructor({ spaceKey, genesisFeed, feedProvider, metadataStore }) {
@@ -1443,7 +1716,7 @@ var ControlPipeline = class {
1443
1716
  log9("feed admitted", {
1444
1717
  key: info.key
1445
1718
  }, {
1446
- F: __dxlog_file9,
1719
+ F: __dxlog_file10,
1447
1720
  L: 51,
1448
1721
  S: this,
1449
1722
  C: (f, a) => f(...a)
@@ -1454,7 +1727,7 @@ var ControlPipeline = class {
1454
1727
  await this._pipeline.addFeed(feed);
1455
1728
  } catch (err) {
1456
1729
  log9.catch(err, void 0, {
1457
- F: __dxlog_file9,
1730
+ F: __dxlog_file10,
1458
1731
  L: 59,
1459
1732
  S: this,
1460
1733
  C: (f, a) => f(...a)
@@ -1477,7 +1750,7 @@ var ControlPipeline = class {
1477
1750
  }
1478
1751
  async start() {
1479
1752
  log9("starting...", void 0, {
1480
- F: __dxlog_file9,
1753
+ F: __dxlog_file10,
1481
1754
  L: 83,
1482
1755
  S: this,
1483
1756
  C: (f, a) => f(...a)
@@ -1489,7 +1762,7 @@ var ControlPipeline = class {
1489
1762
  key: msg.feedKey,
1490
1763
  seq: msg.seq
1491
1764
  }, {
1492
- F: __dxlog_file9,
1765
+ F: __dxlog_file10,
1493
1766
  L: 88,
1494
1767
  S: this,
1495
1768
  C: (f, a) => f(...a)
@@ -1502,7 +1775,7 @@ var ControlPipeline = class {
1502
1775
  log9.warn("processing failed", {
1503
1776
  msg
1504
1777
  }, {
1505
- F: __dxlog_file9,
1778
+ F: __dxlog_file10,
1506
1779
  L: 98,
1507
1780
  S: this,
1508
1781
  C: (f, a) => f(...a)
@@ -1513,7 +1786,7 @@ var ControlPipeline = class {
1513
1786
  }
1514
1787
  } catch (err) {
1515
1788
  log9.catch(err, void 0, {
1516
- F: __dxlog_file9,
1789
+ F: __dxlog_file10,
1517
1790
  L: 104,
1518
1791
  S: this,
1519
1792
  C: (f, a) => f(...a)
@@ -1523,7 +1796,7 @@ var ControlPipeline = class {
1523
1796
  });
1524
1797
  await this._pipeline.start();
1525
1798
  log9("started", void 0, {
1526
- F: __dxlog_file9,
1799
+ F: __dxlog_file10,
1527
1800
  L: 110,
1528
1801
  S: this,
1529
1802
  C: (f, a) => f(...a)
@@ -1537,7 +1810,7 @@ var ControlPipeline = class {
1537
1810
  }
1538
1811
  async stop() {
1539
1812
  log9("stopping...", void 0, {
1540
- F: __dxlog_file9,
1813
+ F: __dxlog_file10,
1541
1814
  L: 124,
1542
1815
  S: this,
1543
1816
  C: (f, a) => f(...a)
@@ -1545,7 +1818,7 @@ var ControlPipeline = class {
1545
1818
  await this._pipeline.stop();
1546
1819
  await this._saveTargetTimeframe(this._pipeline.state.timeframe);
1547
1820
  log9("stopped", void 0, {
1548
- F: __dxlog_file9,
1821
+ F: __dxlog_file10,
1549
1822
  L: 127,
1550
1823
  S: this,
1551
1824
  C: (f, a) => f(...a)
@@ -1559,7 +1832,7 @@ var ControlPipeline = class {
1559
1832
  this._targetTimeframe = newTimeframe;
1560
1833
  } catch (err) {
1561
1834
  log9(err, void 0, {
1562
- F: __dxlog_file9,
1835
+ F: __dxlog_file10,
1563
1836
  L: 136,
1564
1837
  S: this,
1565
1838
  C: (f, a) => f(...a)
@@ -1579,14 +1852,22 @@ function _ts_decorate6(decorators, target, key, desc) {
1579
1852
  r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1580
1853
  return c > 3 && r && Object.defineProperty(target, key, r), r;
1581
1854
  }
1582
- var __dxlog_file10 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/space/space.ts";
1855
+ var __dxlog_file11 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/space/space.ts";
1583
1856
  var Space = class Space2 {
1584
1857
  constructor(params) {
1585
1858
  this._addFeedLock = new Lock();
1586
1859
  this.onCredentialProcessed = new Callback2();
1587
1860
  this.stateUpdate = new Event5();
1588
1861
  this._isOpen = false;
1589
- invariant9(params.spaceKey && params.feedProvider);
1862
+ invariant9(params.spaceKey && params.feedProvider, void 0, {
1863
+ F: __dxlog_file11,
1864
+ L: 70,
1865
+ S: this,
1866
+ A: [
1867
+ "params.spaceKey && params.feedProvider",
1868
+ ""
1869
+ ]
1870
+ });
1590
1871
  this._key = params.spaceKey;
1591
1872
  this._genesisFeedKey = params.genesisFeed.key;
1592
1873
  this._feedProvider = params.feedProvider;
@@ -1621,8 +1902,8 @@ var Space = class Space2 {
1621
1902
  log10("onCredentialProcessed", {
1622
1903
  credential
1623
1904
  }, {
1624
- F: __dxlog_file10,
1625
- L: 107,
1905
+ F: __dxlog_file11,
1906
+ L: 106,
1626
1907
  S: this,
1627
1908
  C: (f, a) => f(...a)
1628
1909
  });
@@ -1687,14 +1968,30 @@ var Space = class Space2 {
1687
1968
  return this._snapshotManager;
1688
1969
  }
1689
1970
  setControlFeed(feed) {
1690
- invariant9(!this._controlFeed, "Control feed already set.");
1971
+ invariant9(!this._controlFeed, "Control feed already set.", {
1972
+ F: __dxlog_file11,
1973
+ L: 180,
1974
+ S: this,
1975
+ A: [
1976
+ "!this._controlFeed",
1977
+ "'Control feed already set.'"
1978
+ ]
1979
+ });
1691
1980
  this._controlFeed = feed;
1692
1981
  this._controlPipeline.setWriteFeed(feed);
1693
1982
  return this;
1694
1983
  }
1695
1984
  setDataFeed(feed) {
1696
1985
  var _a;
1697
- invariant9(!this._dataFeed, "Data feed already set.");
1986
+ invariant9(!this._dataFeed, "Data feed already set.", {
1987
+ F: __dxlog_file11,
1988
+ L: 187,
1989
+ S: this,
1990
+ A: [
1991
+ "!this._dataFeed",
1992
+ "'Data feed already set.'"
1993
+ ]
1994
+ });
1698
1995
  this._dataFeed = feed;
1699
1996
  (_a = this._dataPipeline.pipeline) == null ? void 0 : _a.setWriteFeed(feed);
1700
1997
  return this;
@@ -1713,8 +2010,8 @@ var Space = class Space2 {
1713
2010
  // }
1714
2011
  async open() {
1715
2012
  log10("opening...", void 0, {
1716
- F: __dxlog_file10,
1717
- L: 209,
2013
+ F: __dxlog_file11,
2014
+ L: 208,
1718
2015
  S: this,
1719
2016
  C: (f, a) => f(...a)
1720
2017
  });
@@ -1726,8 +2023,8 @@ var Space = class Space2 {
1726
2023
  await this._controlPipeline.spaceState.addCredentialProcessor(this._dataPipeline);
1727
2024
  this._isOpen = true;
1728
2025
  log10("opened", void 0, {
1729
- F: __dxlog_file10,
1730
- L: 220,
2026
+ F: __dxlog_file11,
2027
+ L: 219,
1731
2028
  S: this,
1732
2029
  C: (f, a) => f(...a)
1733
2030
  });
@@ -1736,8 +2033,8 @@ var Space = class Space2 {
1736
2033
  log10("closing...", {
1737
2034
  key: this._key
1738
2035
  }, {
1739
- F: __dxlog_file10,
1740
- L: 225,
2036
+ F: __dxlog_file11,
2037
+ L: 224,
1741
2038
  S: this,
1742
2039
  C: (f, a) => f(...a)
1743
2040
  });
@@ -1750,20 +2047,28 @@ var Space = class Space2 {
1750
2047
  await this._controlPipeline.stop();
1751
2048
  this._isOpen = false;
1752
2049
  log10("closed", void 0, {
1753
- F: __dxlog_file10,
1754
- L: 238,
2050
+ F: __dxlog_file11,
2051
+ L: 237,
1755
2052
  S: this,
1756
2053
  C: (f, a) => f(...a)
1757
2054
  });
1758
2055
  }
1759
2056
  async initializeDataPipeline() {
1760
2057
  log10("initializeDataPipeline", void 0, {
1761
- F: __dxlog_file10,
1762
- L: 243,
2058
+ F: __dxlog_file11,
2059
+ L: 242,
1763
2060
  S: this,
1764
2061
  C: (f, a) => f(...a)
1765
2062
  });
1766
- invariant9(this._isOpen, "Space must be open to initialize data pipeline.");
2063
+ invariant9(this._isOpen, "Space must be open to initialize data pipeline.", {
2064
+ F: __dxlog_file11,
2065
+ L: 243,
2066
+ S: this,
2067
+ A: [
2068
+ "this._isOpen",
2069
+ "'Space must be open to initialize data pipeline.'"
2070
+ ]
2071
+ });
1767
2072
  await this._dataPipeline.open();
1768
2073
  }
1769
2074
  };
@@ -1802,7 +2107,7 @@ function _ts_decorate7(decorators, target, key, desc) {
1802
2107
  r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1803
2108
  return c > 3 && r && Object.defineProperty(target, key, r), r;
1804
2109
  }
1805
- var __dxlog_file11 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/space/space-protocol.ts";
2110
+ var __dxlog_file12 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/space/space-protocol.ts";
1806
2111
  var MOCK_AUTH_PROVIDER = async (nonce) => Buffer.from("mock");
1807
2112
  var MOCK_AUTH_VERIFIER = async (nonce, credential) => true;
1808
2113
  var SpaceProtocol = class {
@@ -1832,7 +2137,7 @@ var SpaceProtocol = class {
1832
2137
  log11("addFeed", {
1833
2138
  key: feed.key
1834
2139
  }, {
1835
- F: __dxlog_file11,
2140
+ F: __dxlog_file12,
1836
2141
  L: 95,
1837
2142
  S: this,
1838
2143
  C: (f, a) => f(...a)
@@ -1854,21 +2159,22 @@ var SpaceProtocol = class {
1854
2159
  };
1855
2160
  await this.blobSync.open();
1856
2161
  log11("starting...", void 0, {
1857
- F: __dxlog_file11,
2162
+ F: __dxlog_file12,
1858
2163
  L: 120,
1859
2164
  S: this,
1860
2165
  C: (f, a) => f(...a)
1861
2166
  });
2167
+ const topic = await this._topic;
1862
2168
  this._connection = await this._networkManager.joinSwarm({
1863
2169
  protocolProvider: this._createProtocolProvider(credentials),
1864
2170
  peerId: this._swarmIdentity.peerKey,
1865
- topic: await this._topic,
2171
+ topic,
1866
2172
  topology: new MMSTTopology(topologyConfig),
1867
- label: `Protocol swarm: ${this._topic}`
2173
+ label: `Protocol swarm: ${topic}`
1868
2174
  });
1869
2175
  log11("started", void 0, {
1870
- F: __dxlog_file11,
1871
- L: 129,
2176
+ F: __dxlog_file12,
2177
+ L: 130,
1872
2178
  S: this,
1873
2179
  C: (f, a) => f(...a)
1874
2180
  });
@@ -1877,15 +2183,15 @@ var SpaceProtocol = class {
1877
2183
  await this.blobSync.close();
1878
2184
  if (this._connection) {
1879
2185
  log11("stopping...", void 0, {
1880
- F: __dxlog_file11,
1881
- L: 136,
2186
+ F: __dxlog_file12,
2187
+ L: 137,
1882
2188
  S: this,
1883
2189
  C: (f, a) => f(...a)
1884
2190
  });
1885
2191
  await this._connection.close();
1886
2192
  log11("stopped", void 0, {
1887
- F: __dxlog_file11,
1888
- L: 138,
2193
+ F: __dxlog_file12,
2194
+ L: 139,
1889
2195
  S: this,
1890
2196
  C: (f, a) => f(...a)
1891
2197
  });
@@ -1952,8 +2258,8 @@ var SpaceProtocolSession = class {
1952
2258
  onAuthSuccess: () => {
1953
2259
  var _a;
1954
2260
  log11("Peer authenticated", void 0, {
1955
- F: __dxlog_file11,
1956
- L: 235,
2261
+ F: __dxlog_file12,
2262
+ L: 236,
1957
2263
  S: this,
1958
2264
  C: (f, a) => f(...a)
1959
2265
  });
@@ -1997,7 +2303,7 @@ function _ts_decorate8(decorators, target, key, desc) {
1997
2303
  r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1998
2304
  return c > 3 && r && Object.defineProperty(target, key, r), r;
1999
2305
  }
2000
- var __dxlog_file12 = "/mnt/ramdisk/work/packages/core/echo/echo-pipeline/src/space/space-manager.ts";
2306
+ var __dxlog_file13 = "/home/runner/work/dxos/dxos/packages/core/echo/echo-pipeline/src/space/space-manager.ts";
2001
2307
  var SpaceManager = class SpaceManager2 {
2002
2308
  constructor({ feedStore, networkManager, modelFactory, metadataStore, snapshotStore, blobStore }) {
2003
2309
  this._spaces = new ComplexMap5(PublicKey6.hash);
@@ -2025,7 +2331,7 @@ var SpaceManager = class SpaceManager2 {
2025
2331
  log12.trace("dxos.echo.space-manager.construct-space", trace.begin({
2026
2332
  id: this._instanceId
2027
2333
  }), {
2028
- F: __dxlog_file12,
2334
+ F: __dxlog_file13,
2029
2335
  L: 97,
2030
2336
  S: this,
2031
2337
  C: (f, a) => f(...a)
@@ -2033,7 +2339,7 @@ var SpaceManager = class SpaceManager2 {
2033
2339
  log12("constructing space...", {
2034
2340
  spaceKey: metadata.genesisFeedKey
2035
2341
  }, {
2036
- F: __dxlog_file12,
2342
+ F: __dxlog_file13,
2037
2343
  L: 98,
2038
2344
  S: this,
2039
2345
  C: (f, a) => f(...a)
@@ -2063,7 +2369,7 @@ var SpaceManager = class SpaceManager2 {
2063
2369
  log12.trace("dxos.echo.space-manager.construct-space", trace.end({
2064
2370
  id: this._instanceId
2065
2371
  }), {
2066
- F: __dxlog_file12,
2372
+ F: __dxlog_file13,
2067
2373
  L: 125,
2068
2374
  S: this,
2069
2375
  C: (f, a) => f(...a)
@@ -2107,4 +2413,4 @@ export {
2107
2413
  SpaceProtocolSession,
2108
2414
  SpaceManager
2109
2415
  };
2110
- //# sourceMappingURL=chunk-4VJRJ4SY.mjs.map
2416
+ //# sourceMappingURL=chunk-7RPTJNLX.mjs.map