forked from pingdotgg/t3code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.ts
More file actions
678 lines (642 loc) · 23.8 KB
/
Copy pathregistry.ts
File metadata and controls
678 lines (642 loc) · 23.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
import { EnvironmentId } from "@t3tools/contracts";
import * as Context from "effect/Context";
import * as Effect from "effect/Effect";
import * as Equal from "effect/Equal";
import * as Exit from "effect/Exit";
import * as Layer from "effect/Layer";
import * as Option from "effect/Option";
import * as Ref from "effect/Ref";
import * as Schema from "effect/Schema";
import * as Scope from "effect/Scope";
import * as Semaphore from "effect/Semaphore";
import * as Stream from "effect/Stream";
import * as SubscriptionRef from "effect/SubscriptionRef";
import * as ClientCapabilities from "../platform/capabilities.ts";
import {
type ConnectionCatalogEntry,
type ConnectionRegistration,
type PlatformConnectionRegistration,
type PrimaryConnectionRegistration,
SshConnectionProfile,
connectionRegistrationCatalogEntry,
} from "./catalog.ts";
import * as ConnectionCredentialStore from "./credentialStore.ts";
import * as ConnectionProfileStore from "./profileStore.ts";
import * as Connectivity from "./connectivity.ts";
import type {
ConnectionAttemptError,
ConnectionTarget,
NetworkStatus,
SupervisorConnectionState,
} from "./model.ts";
import * as Persistence from "../platform/persistence.ts";
import * as EnvironmentSupervisor from "./supervisor.ts";
import * as ConnectionDriver from "./driver.ts";
import * as ConnectionWakeups from "./wakeups.ts";
const isSshConnectionProfile = Schema.is(SshConnectionProfile);
export class EnvironmentNotRegisteredError extends Schema.TaggedErrorClass<EnvironmentNotRegisteredError>()(
"EnvironmentNotRegisteredError",
{
environmentId: EnvironmentId,
},
) {
override get message(): string {
return `Environment ${this.environmentId} is not registered.`;
}
}
export class PlatformEnvironmentRemovalError extends Schema.TaggedErrorClass<PlatformEnvironmentRemovalError>()(
"PlatformEnvironmentRemovalError",
{
environmentId: EnvironmentId,
},
) {
override get message(): string {
return `Platform-managed environment ${this.environmentId} cannot be removed.`;
}
}
export class EnvironmentRegistry extends Context.Service<
EnvironmentRegistry,
{
readonly entries: SubscriptionRef.SubscriptionRef<
ReadonlyMap<EnvironmentId, ConnectionCatalogEntry>
>;
readonly networkStatus: SubscriptionRef.SubscriptionRef<NetworkStatus>;
readonly start: Effect.Effect<void>;
readonly register: (
registration: ConnectionRegistration,
) => Effect.Effect<void, Persistence.ConnectionPersistenceError>;
readonly registerPlatform: (registration: PrimaryConnectionRegistration) => Effect.Effect<void>;
readonly reconcilePlatform: (
registrations: ReadonlyArray<PlatformConnectionRegistration>,
) => Effect.Effect<void>;
readonly remove: (
environmentId: EnvironmentId,
) => Effect.Effect<
void,
| Persistence.ConnectionPersistenceError
| ConnectionAttemptError
| EnvironmentNotRegisteredError
| PlatformEnvironmentRemovalError
>;
readonly removeRelayEnvironments: () => Effect.Effect<
void,
| Persistence.ConnectionPersistenceError
| ConnectionAttemptError
| PlatformEnvironmentRemovalError
>;
readonly retryNow: (environmentId: EnvironmentId) => Effect.Effect<void>;
readonly state: (
environmentId: EnvironmentId,
) => Effect.Effect<SupervisorConnectionState, EnvironmentNotRegisteredError>;
readonly stateChanges: (
environmentId: EnvironmentId,
) => Stream.Stream<SupervisorConnectionState, EnvironmentNotRegisteredError>;
readonly run: <A, E, R>(
environmentId: EnvironmentId,
effect: Effect.Effect<A, E, R>,
) => Effect.Effect<
A,
E | EnvironmentNotRegisteredError,
Exclude<R, EnvironmentSupervisor.EnvironmentSupervisor>
>;
readonly runStream: <A, E, R>(
environmentId: EnvironmentId,
stream: Stream.Stream<A, E, R>,
) => Stream.Stream<
A,
E | EnvironmentNotRegisteredError,
Exclude<R, EnvironmentSupervisor.EnvironmentSupervisor>
>;
readonly followStream: <A, E, R>(
environmentId: EnvironmentId,
stream: Stream.Stream<A, E, R>,
) => Stream.Stream<A, E, Exclude<R, EnvironmentSupervisor.EnvironmentSupervisor>>;
}
>()("@t3tools/client-runtime/connection/registry/EnvironmentRegistry") {}
interface EnvironmentServiceScope {
readonly entry: ConnectionCatalogEntry;
readonly supervisor: EnvironmentSupervisor.EnvironmentSupervisor["Service"];
readonly scope: Scope.Closeable;
}
export const make = Effect.gen(function* () {
const storage = yield* Persistence.ConnectionTargetStore;
const registrations = yield* Persistence.ConnectionRegistrationStore;
const cache = yield* Persistence.EnvironmentCacheStore;
const ownedDataCleanup = yield* Persistence.EnvironmentOwnedDataCleanup;
const profiles = yield* ConnectionProfileStore.ConnectionProfileStore;
const credentials = yield* ConnectionCredentialStore.ConnectionCredentialStore;
const connectivity = yield* Connectivity.Connectivity;
const driver = yield* ConnectionDriver.ConnectionDriver;
const wakeups = yield* ConnectionWakeups.ConnectionWakeups;
const ssh = yield* ClientCapabilities.SshEnvironmentGateway;
const persistedTargets = yield* storage.list;
const initialEntries = new Map(
yield* Effect.forEach(
persistedTargets,
Effect.fn("EnvironmentRegistry.loadCatalogEntry")(function* (target) {
const profile =
target._tag === "BearerConnectionTarget" || target._tag === "SshConnectionTarget"
? yield* profiles.get(target.connectionId)
: Option.none();
return [
target.environmentId,
{ target, profile } satisfies ConnectionCatalogEntry,
] as const;
}),
{ concurrency: "unbounded" },
),
);
const entries =
yield* SubscriptionRef.make<ReadonlyMap<EnvironmentId, ConnectionCatalogEntry>>(initialEntries);
const networkStatus = yield* SubscriptionRef.make(yield* connectivity.status);
const serviceScopes = yield* SubscriptionRef.make<
ReadonlyMap<EnvironmentId, EnvironmentServiceScope>
>(new Map());
const platformEnvironmentIds = yield* Ref.make<ReadonlySet<EnvironmentId>>(new Set());
const persistedTargetsByEnvironment = yield* Ref.make<
ReadonlyMap<EnvironmentId, ConnectionTarget>
>(new Map(persistedTargets.map((target) => [target.environmentId, target])));
interface LeaseLock {
readonly semaphore: Semaphore.Semaphore;
readonly users: number;
}
const leaseLocks = yield* Ref.make<ReadonlyMap<EnvironmentId, LeaseLock>>(new Map());
const leaseLocksGuard = yield* Semaphore.make(1);
const started = yield* Ref.make(false);
const withLeaseLock = <A, E, R>(
environmentId: EnvironmentId,
effect: Effect.Effect<A, E, R>,
): Effect.Effect<A, E, R> =>
Effect.acquireUseRelease(
leaseLocksGuard.withPermits(1)(
Effect.gen(function* () {
const current = yield* Ref.get(leaseLocks);
const existing = current.get(environmentId);
if (existing !== undefined) {
yield* Ref.set(
leaseLocks,
new Map(current).set(environmentId, {
semaphore: existing.semaphore,
users: existing.users + 1,
}),
);
return existing.semaphore;
}
const semaphore = yield* Semaphore.make(1);
yield* Ref.set(leaseLocks, new Map(current).set(environmentId, { semaphore, users: 1 }));
return semaphore;
}),
),
(semaphore) => semaphore.withPermits(1)(effect),
(semaphore) =>
leaseLocksGuard.withPermits(1)(
Ref.update(leaseLocks, (current) => {
const existing = current.get(environmentId);
if (existing === undefined || existing.semaphore !== semaphore) {
return current;
}
const next = new Map(current);
if (existing.users === 1) {
next.delete(environmentId);
} else {
next.set(environmentId, {
semaphore,
users: existing.users - 1,
});
}
return next;
}),
),
).pipe(Effect.withSpan("EnvironmentRegistry.withLeaseLock"));
const getEntry = Effect.fn("EnvironmentRegistry.getEntry")(function* (
environmentId: EnvironmentId,
) {
const entry = (yield* SubscriptionRef.get(entries)).get(environmentId);
if (entry === undefined) {
return yield* new EnvironmentNotRegisteredError({
environmentId,
});
}
return entry;
});
const closeServiceScope = Effect.fn("EnvironmentRegistry.closeServiceScope")(function* (
environmentId: EnvironmentId,
) {
const current = yield* SubscriptionRef.get(serviceScopes);
const lease = current.get(environmentId);
if (lease === undefined) {
return;
}
const next = new Map(current);
next.delete(environmentId);
yield* SubscriptionRef.set(serviceScopes, next);
yield* Scope.close(lease.scope, Exit.void);
});
const createServiceScope = Effect.fn("EnvironmentRegistry.createServiceScope")(
(entry: ConnectionCatalogEntry) =>
Effect.uninterruptible(
Effect.gen(function* () {
const environmentId = entry.target.environmentId;
const scope = yield* Scope.make();
const supervisor = yield* EnvironmentSupervisor.make(entry, {
initiallyDesired: false,
}).pipe(
Effect.provideService(Connectivity.Connectivity, connectivity),
Effect.provideService(ConnectionDriver.ConnectionDriver, driver),
Effect.provideService(ConnectionWakeups.ConnectionWakeups, wakeups),
Scope.provide(scope),
Effect.onError(() => Scope.close(scope, Exit.void)),
);
yield* supervisor.connect;
yield* SubscriptionRef.update(serviceScopes, (current) => {
const next = new Map(current);
next.set(environmentId, { entry, supervisor, scope });
return next;
});
return supervisor;
}),
),
);
const acquireSupervisor = Effect.fn("EnvironmentRegistry.acquireSupervisor")(function* (
environmentId: EnvironmentId,
) {
return yield* withLeaseLock(
environmentId,
Effect.gen(function* () {
const entry = yield* getEntry(environmentId);
const existing = (yield* SubscriptionRef.get(serviceScopes)).get(environmentId);
if (existing !== undefined) {
if (Equal.equals(existing.entry, entry)) {
return existing.supervisor;
}
yield* closeServiceScope(environmentId);
}
return yield* createServiceScope(entry);
}),
);
});
const run: EnvironmentRegistry["Service"]["run"] = Effect.fn("EnvironmentRegistry.run")(
function* <A, E, R>(environmentId: EnvironmentId, effect: Effect.Effect<A, E, R>) {
const supervisor = yield* acquireSupervisor(environmentId);
return yield* Effect.provideService(
effect,
EnvironmentSupervisor.EnvironmentSupervisor,
supervisor,
);
},
);
const runStream: EnvironmentRegistry["Service"]["runStream"] = <A, E, R>(
environmentId: EnvironmentId,
stream: Stream.Stream<A, E, R>,
) =>
Stream.unwrap(
acquireSupervisor(environmentId).pipe(
Effect.map((supervisor) =>
Stream.provideService(stream, EnvironmentSupervisor.EnvironmentSupervisor, supervisor),
),
),
);
const followStream: EnvironmentRegistry["Service"]["followStream"] = <A, E, R>(
environmentId: EnvironmentId,
stream: Stream.Stream<A, E, R>,
) =>
Stream.concat(
Stream.fromEffect(SubscriptionRef.get(entries)),
SubscriptionRef.changes(entries),
).pipe(
Stream.map((current) => Option.fromUndefinedOr(current.get(environmentId))),
Stream.changes,
Stream.switchMap(
Option.match({
onNone: () => Stream.empty,
onSome: () =>
Stream.unwrap(
acquireSupervisor(environmentId).pipe(
Effect.match({
onFailure: () => Stream.empty,
onSuccess: (supervisor) =>
Stream.provideService(
stream,
EnvironmentSupervisor.EnvironmentSupervisor,
supervisor,
),
}),
),
),
}),
),
);
const start = Effect.gen(function* () {
if (yield* Ref.getAndSet(started, true)) {
return;
}
yield* Effect.forEach(
persistedTargets,
(target) =>
acquireSupervisor(target.environmentId).pipe(
Effect.catchTag("EnvironmentNotRegisteredError", () => Effect.void),
),
{
concurrency: "unbounded",
discard: true,
},
);
}).pipe(Effect.withSpan("EnvironmentRegistry.start"));
const installEntryLocked = Effect.fn("EnvironmentRegistry.installEntryLocked")(function* (
entry: ConnectionCatalogEntry,
options?: { readonly retainEquivalentRuntime?: boolean },
) {
const target = entry.target;
const previous = (yield* SubscriptionRef.get(entries)).get(target.environmentId);
const existingScope = (yield* SubscriptionRef.get(serviceScopes)).get(target.environmentId);
if (
options?.retainEquivalentRuntime === true &&
previous !== undefined &&
Equal.equals(previous, entry) &&
existingScope !== undefined &&
Equal.equals(existingScope.entry, entry)
) {
return;
}
yield* closeServiceScope(target.environmentId);
yield* SubscriptionRef.update(entries, (current) => {
const next = new Map(current);
next.set(target.environmentId, entry);
return next;
});
yield* createServiceScope(entry);
});
const register = Effect.fn("EnvironmentRegistry.register")(function* (
registration: ConnectionRegistration,
) {
const entry = connectionRegistrationCatalogEntry(registration);
const environmentId = entry.target.environmentId;
yield* withLeaseLock(
environmentId,
Effect.gen(function* () {
if ((yield* Ref.get(platformEnvironmentIds)).has(environmentId)) {
return;
}
yield* registrations.register(registration);
yield* Ref.update(persistedTargetsByEnvironment, (current) => {
const next = new Map(current);
next.set(environmentId, registration.target);
return next;
});
yield* installEntryLocked(entry);
}),
);
});
const installPlatformRegistration = Effect.fn("EnvironmentRegistry.installPlatformRegistration")(
function* (registration: PlatformConnectionRegistration) {
const entry = connectionRegistrationCatalogEntry(registration);
const target = entry.target;
yield* withLeaseLock(
target.environmentId,
Effect.gen(function* () {
yield* Ref.update(platformEnvironmentIds, (current) => {
const next = new Set(current);
next.add(target.environmentId);
return next;
});
// Secondary desktop-local backends (e.g. a parallel WSL backend) live
// on their own loopback origin, so they authenticate with a bearer
// token instead of the primary's same-origin cookie. Stash it where
// the resolver's bearer broker looks it up.
if (registration._tag === "BearerConnectionRegistration") {
yield* credentials.put(registration.target.connectionId, registration.credential).pipe(
Effect.catch((error) =>
Effect.logWarning("Could not store the platform bearer credential.", {
environmentId: target.environmentId,
error,
}),
),
);
}
const persistedTarget = (yield* Ref.get(persistedTargetsByEnvironment)).get(
target.environmentId,
);
if (persistedTarget !== undefined) {
yield* registrations.remove(persistedTarget).pipe(
Effect.tap(() =>
Ref.update(persistedTargetsByEnvironment, (current) => {
const next = new Map(current);
next.delete(target.environmentId);
return next;
}),
),
Effect.catch((error) =>
Effect.logWarning(
"Could not remove a persisted registration shadowed by a platform environment.",
{
environmentId: target.environmentId,
error,
},
),
),
);
}
yield* installEntryLocked(entry, { retainEquivalentRuntime: true });
}),
);
},
);
// Tear down a platform-managed environment that the host no longer reports
// (e.g. the user turned the parallel WSL backend off). Platform environments
// bypass the user-facing `remove` guard since they are reconciled from the
// bootstrap rather than removed by hand.
const removePlatformEnvironment = Effect.fn("EnvironmentRegistry.removePlatformEnvironment")(
function* (environmentId: EnvironmentId) {
yield* withLeaseLock(
environmentId,
Effect.gen(function* () {
const entry = (yield* SubscriptionRef.get(entries)).get(environmentId);
yield* Ref.update(platformEnvironmentIds, (current) => {
const next = new Set(current);
next.delete(environmentId);
return next;
});
yield* closeServiceScope(environmentId);
yield* SubscriptionRef.update(entries, (current) => {
const next = new Map(current);
next.delete(environmentId);
return next;
});
if (entry !== undefined && entry.target._tag === "BearerConnectionTarget") {
yield* credentials.remove(entry.target.connectionId).pipe(
Effect.catch((error) =>
Effect.logWarning("Could not clear the platform bearer credential.", {
environmentId,
error,
}),
),
);
}
yield* Effect.all(
[
cache.clear(environmentId).pipe(
Effect.catch((error) =>
Effect.logWarning("Could not clear cached environment data after removal.", {
environmentId,
error,
}),
),
),
ownedDataCleanup.clear(environmentId),
],
{ concurrency: "unbounded", discard: true },
);
}),
);
},
);
const registerPlatform = Effect.fn("EnvironmentRegistry.registerPlatform")(function* (
registration: PrimaryConnectionRegistration,
) {
yield* installPlatformRegistration(registration);
});
// Reconcile the full set of platform-managed environments against what the
// host currently reports: add/refresh the desired ones and tear down any
// platform environment that disappeared (WSL toggled off, distro switched).
const reconcilePlatform = Effect.fn("EnvironmentRegistry.reconcilePlatform")(function* (
platformRegistrations: ReadonlyArray<PlatformConnectionRegistration>,
) {
const desiredIds = new Set(
platformRegistrations.map((registration) => registration.target.environmentId),
);
const currentPlatformIds = yield* Ref.get(platformEnvironmentIds);
yield* Effect.forEach(
currentPlatformIds,
(environmentId) =>
desiredIds.has(environmentId) ? Effect.void : removePlatformEnvironment(environmentId),
{ discard: true },
);
yield* Effect.forEach(platformRegistrations, installPlatformRegistration, { discard: true });
});
const remove = Effect.fn("EnvironmentRegistry.remove")(function* (environmentId: EnvironmentId) {
return yield* withLeaseLock(
environmentId,
Effect.gen(function* () {
if ((yield* Ref.get(platformEnvironmentIds)).has(environmentId)) {
return yield* new PlatformEnvironmentRemovalError({
environmentId,
});
}
const target = (yield* getEntry(environmentId)).target;
const profile =
target._tag === "BearerConnectionTarget" || target._tag === "SshConnectionTarget"
? yield* profiles.get(target.connectionId)
: Option.none();
yield* registrations.remove(target);
yield* Ref.update(persistedTargetsByEnvironment, (current) => {
const next = new Map(current);
next.delete(environmentId);
return next;
});
yield* closeServiceScope(environmentId);
yield* SubscriptionRef.update(entries, (current) => {
const next = new Map(current);
next.delete(environmentId);
return next;
});
yield* Effect.all(
[
cache.clear(environmentId).pipe(
Effect.catch((error) =>
Effect.logWarning("Could not clear cached environment data after removal.", {
environmentId,
error,
}),
),
),
ownedDataCleanup.clear(environmentId),
],
{ concurrency: "unbounded", discard: true },
);
if (
target._tag === "SshConnectionTarget" &&
Option.isSome(profile) &&
isSshConnectionProfile(profile.value)
) {
yield* ssh.disconnect(profile.value.target).pipe(
Effect.tapError((error) =>
Effect.logWarning("Could not disconnect the managed SSH environment.", {
environmentId,
error,
}),
),
Effect.ignore,
);
}
}),
);
});
const removeRelayEnvironments = Effect.fn("EnvironmentRegistry.removeRelayEnvironments")(
function* () {
const relayEnvironmentIds = [...(yield* SubscriptionRef.get(entries)).values()]
.filter((entry) => entry.target._tag === "RelayConnectionTarget")
.map((entry) => entry.target.environmentId);
yield* Effect.forEach(
relayEnvironmentIds,
(environmentId) =>
remove(environmentId).pipe(
Effect.catchTag("EnvironmentNotRegisteredError", () => Effect.void),
),
{
concurrency: "unbounded",
discard: true,
},
);
},
);
const retryNow = (environmentId: EnvironmentId) =>
acquireSupervisor(environmentId).pipe(
Effect.flatMap((supervisor) => supervisor.retryNow),
Effect.catchTag("EnvironmentNotRegisteredError", () => Effect.void),
Effect.withSpan("EnvironmentRegistry.retryNow"),
);
const state = Effect.fn("EnvironmentRegistry.state")(function* (environmentId: EnvironmentId) {
const supervisor = yield* acquireSupervisor(environmentId);
return yield* SubscriptionRef.get(supervisor.state);
});
const stateChanges = (environmentId: EnvironmentId) =>
followStream(
environmentId,
Stream.unwrap(
EnvironmentSupervisor.EnvironmentSupervisor.pipe(
Effect.map((supervisor) => SubscriptionRef.changes(supervisor.state)),
),
),
);
yield* Effect.addFinalizer(() =>
SubscriptionRef.get(serviceScopes).pipe(
Effect.flatMap((current) =>
Effect.forEach(current.values(), (lease) => Scope.close(lease.scope, Exit.void), {
concurrency: "unbounded",
discard: true,
}),
),
),
);
yield* connectivity.changes.pipe(
Stream.runForEach((status) => SubscriptionRef.set(networkStatus, status)),
Effect.forkScoped,
);
return EnvironmentRegistry.of({
entries,
networkStatus,
start,
register,
registerPlatform,
reconcilePlatform,
remove,
removeRelayEnvironments,
retryNow,
state,
stateChanges,
run,
runStream,
followStream,
});
});
export const layer = Layer.effect(EnvironmentRegistry, make);