forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphoenix-observable.ts
More file actions
278 lines (255 loc) · 7.45 KB
/
Copy pathphoenix-observable.ts
File metadata and controls
278 lines (255 loc) · 7.45 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
import { Socket } from "phoenix";
import { EMPTY, NEVER, Observable, concat, defer, of, throwError } from "rxjs";
import {
filter,
finalize,
mergeMap,
scan,
shareReplay,
switchMap,
take,
} from "rxjs/operators";
/**
* Minimal Phoenix push contract used by the observable adapters.
*/
export interface ɵPhoenixPushLike {
receive(status: string, callback: (payload?: unknown) => unknown): unknown;
}
/**
* Minimal Phoenix channel contract used by the observable adapters.
*/
export interface ɵPhoenixChannelLike {
on(event: string, callback: (payload: unknown) => void): number;
off(event: string, ref?: number): void;
onError?(callback: (reason?: unknown) => void): unknown;
join(params?: Record<string, unknown>): ɵPhoenixPushLike;
push?(event: string, payload: unknown): ɵPhoenixPushLike;
leave(): void;
}
/**
* Minimal Phoenix socket contract used by the observable adapters.
*/
export interface ɵPhoenixSocketLike {
connect(): void;
disconnect(): void;
channel(topic: string, params?: Record<string, unknown>): ɵPhoenixChannelLike;
onError(callback: (error?: unknown) => void): unknown;
onOpen(callback: () => void): unknown;
}
/**
* Socket lifecycle notifications exposed by {@link ɵphoenixSocket$}.
*/
export type ɵPhoenixSocketSignal =
| { type: "open" }
| { type: "error"; error?: unknown };
/**
* Terminal outcomes of a Phoenix channel join attempt.
*/
export type ɵPhoenixJoinOutcome =
| { type: "joined" }
| { type: "error"; response?: unknown }
| { type: "timeout" };
/**
* Active Phoenix socket session plus its derived lifecycle stream.
*/
export interface ɵPhoenixSocketSession {
socket: ɵPhoenixSocketLike;
signals$: Observable<ɵPhoenixSocketSignal>;
}
/**
* Active Phoenix channel session plus its derived join-outcome stream.
*/
export interface ɵPhoenixChannelSession {
channel: ɵPhoenixChannelLike;
joinOutcome$: Observable<ɵPhoenixJoinOutcome>;
}
/**
* Options for creating a cold Phoenix socket session stream.
*/
export interface ɵPhoenixSocketOptions {
url: string;
options?: Record<string, unknown>;
}
/**
* Options for creating a cold Phoenix channel session stream from a socket stream.
*/
export interface ɵPhoenixChannelOptions {
socket$: Observable<ɵPhoenixSocketSession>;
topic: string;
params?: Record<string, unknown>;
leaveOnUnsubscribe?: boolean;
}
/**
* Adapt Phoenix socket open/error callbacks into an observable signal stream.
*
* The returned observable is shared and replayable by the caller when needed,
* but this helper itself does not own socket connection teardown.
*/
function ɵcreatePhoenixSocketSignals$(
socket: ɵPhoenixSocketLike,
): Observable<ɵPhoenixSocketSignal> {
return new Observable<ɵPhoenixSocketSignal>((observer) => {
socket.onOpen(() => observer.next({ type: "open" }));
socket.onError((error) => observer.next({ type: "error", error }));
});
}
/**
* Adapt a Phoenix channel join attempt into a single-outcome observable.
*/
function ɵcreatePhoenixJoinOutcome$(
channel: ɵPhoenixChannelLike,
): Observable<ɵPhoenixJoinOutcome> {
return new Observable<ɵPhoenixJoinOutcome>((observer) => {
channel
.join()
.receive("ok", () => {
observer.next({ type: "joined" });
observer.complete();
})
.receive("error", (response?: unknown) => {
observer.next({ type: "error", response });
observer.complete();
})
.receive("timeout", () => {
observer.next({ type: "timeout" });
observer.complete();
});
});
}
/**
* Create a cold Phoenix socket session.
*
* The socket is constructed and connected on subscription, and disconnected on
* teardown. Each subscription creates an isolated socket instance.
*/
export function ɵphoenixSocket$(
options: ɵPhoenixSocketOptions,
): Observable<ɵPhoenixSocketSession> {
return defer(() => {
const socket = new Socket(
options.url,
options.options as ConstructorParameters<typeof Socket>[1],
) as ɵPhoenixSocketLike;
const signals$ = ɵcreatePhoenixSocketSignals$(socket).pipe(
shareReplay({ bufferSize: 1, refCount: true }),
);
socket.connect();
return concat(
of({
socket,
signals$,
}),
NEVER,
).pipe(finalize(() => socket.disconnect()));
});
}
/**
* Create a cold Phoenix channel session from a socket session stream.
*
* A channel is created and joined for each active socket session. If the
* upstream socket session changes, the previous channel is left before the
* next one becomes active.
*/
export function ɵphoenixChannel$(
options: ɵPhoenixChannelOptions,
): Observable<ɵPhoenixChannelSession> {
return options.socket$.pipe(
switchMap(({ socket }) =>
defer(() => {
const channel = socket.channel(options.topic, options.params);
const joinOutcome$ = ɵcreatePhoenixJoinOutcome$(channel).pipe(
shareReplay({ bufferSize: 1, refCount: true }),
);
return concat(
of({
channel,
joinOutcome$,
}),
NEVER,
).pipe(
finalize(() => {
if (options.leaveOnUnsubscribe !== false) {
channel.leave();
}
}),
);
}),
),
);
}
/**
* Observe a named Phoenix channel event as an observable payload stream.
*/
export function ɵobservePhoenixEvent$<T>(
channel: ɵPhoenixChannelLike,
eventName: string,
): Observable<T> {
return new Observable<T>((observer) => {
const ref = channel.on(eventName, (payload) => observer.next(payload as T));
return () => {
channel.off(eventName, ref);
};
});
}
/**
* Flatten channel sessions into their join-outcome stream.
*/
export function ɵobservePhoenixJoinOutcome$(
channel$: Observable<ɵPhoenixChannelSession>,
): Observable<ɵPhoenixJoinOutcome> {
return channel$.pipe(switchMap((session) => session.joinOutcome$));
}
/**
* Complete when a channel joins successfully, or error if the join fails.
*/
export function ɵjoinPhoenixChannel$(
channel$: Observable<ɵPhoenixChannelSession>,
): Observable<never> {
return ɵobservePhoenixJoinOutcome$(channel$).pipe(
take(1),
mergeMap((outcome) => {
if (outcome.type === "joined") {
return EMPTY;
}
throw outcome.type === "timeout"
? new Error("Timed out joining channel")
: new Error(
`Failed to join channel: ${JSON.stringify(outcome.response)}`,
);
}),
);
}
/**
* Flatten socket sessions into their lifecycle signal stream.
*/
export function ɵobservePhoenixSocketSignals$(
socket$: Observable<ɵPhoenixSocketSession>,
): Observable<ɵPhoenixSocketSignal> {
return socket$.pipe(switchMap((session) => session.signals$));
}
/**
* Error after a socket emits the configured number of consecutive error
* signals, resetting the counter after each successful open signal.
*/
export function ɵobservePhoenixSocketHealth$(
socketSignals$: Observable<ɵPhoenixSocketSignal>,
maxConsecutiveErrors: number,
): Observable<never> {
return socketSignals$.pipe(
scan(
(consecutiveErrors, signal) =>
signal.type === "open" ? 0 : consecutiveErrors + 1,
0,
),
filter((consecutiveErrors) => consecutiveErrors >= maxConsecutiveErrors),
take(1),
mergeMap((consecutiveErrors) =>
throwError(
() =>
new Error(
`WebSocket connection failed after ${consecutiveErrors} consecutive errors`,
),
),
),
);
}