-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathrunStream.ts
More file actions
411 lines (363 loc) · 11.7 KB
/
runStream.ts
File metadata and controls
411 lines (363 loc) · 11.7 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
import { DeserializedJson } from "../../schemas/json.js";
import { RunStatus, SubscribeRunRawShape } from "../schemas/api.js";
import { SerializedError } from "../schemas/common.js";
import { AnyRunTypes, AnyTask, InferRunTypes } from "../types/tasks.js";
import { getEnvVar } from "../utils/getEnv.js";
import {
conditionallyImportAndParsePacket,
IOPacket,
parsePacket,
} from "../utils/ioSerialization.js";
import { ApiError } from "./errors.js";
import { ApiClient } from "./index.js";
import { AsyncIterableStream, createAsyncIterableStream, zodShapeStream } from "./stream.js";
import { EventSourceParserStream } from "eventsource-parser/stream";
export type RunShape<TRunTypes extends AnyRunTypes> = TRunTypes extends AnyRunTypes
? {
id: string;
taskIdentifier: TRunTypes["taskIdentifier"];
payload: TRunTypes["payload"];
output?: TRunTypes["output"];
createdAt: Date;
updatedAt: Date;
number: number;
status: RunStatus;
durationMs: number;
costInCents: number;
baseCostInCents: number;
tags: string[];
idempotencyKey?: string;
expiredAt?: Date;
ttl?: string;
finishedAt?: Date;
startedAt?: Date;
delayedUntil?: Date;
queuedAt?: Date;
metadata?: Record<string, DeserializedJson>;
error?: SerializedError;
isTest: boolean;
}
: never;
export type AnyRunShape = RunShape<AnyRunTypes>;
export type TaskRunShape<TTask extends AnyTask> = RunShape<InferRunTypes<TTask>>;
export type RealtimeRun<TTask extends AnyTask> = TaskRunShape<TTask>;
export type AnyRealtimeRun = RealtimeRun<AnyTask>;
export type RunStreamCallback<TRunTypes extends AnyRunTypes> = (
run: RunShape<TRunTypes>
) => void | Promise<void>;
export type RunShapeStreamOptions = {
headers?: Record<string, string>;
fetchClient?: typeof fetch;
closeOnComplete?: boolean;
signal?: AbortSignal;
client?: ApiClient;
};
export type StreamPartResult<TRun, TStreams extends Record<string, any>> = {
[K in keyof TStreams]: {
type: K;
chunk: TStreams[K];
run: TRun;
};
}[keyof TStreams];
export type RunWithStreamsResult<TRun, TStreams extends Record<string, any>> =
| {
type: "run";
run: TRun;
}
| StreamPartResult<TRun, TStreams>;
export function runShapeStream<TRunTypes extends AnyRunTypes>(
url: string,
options?: RunShapeStreamOptions
): RunSubscription<TRunTypes> {
const $options: RunSubscriptionOptions = {
provider: {
async onShape(callback) {
return zodShapeStream(SubscribeRunRawShape, url, callback, options);
},
},
streamFactory: new SSEStreamSubscriptionFactory(
getEnvVar("TRIGGER_STREAM_URL", getEnvVar("TRIGGER_API_URL")) ?? "https://api.trigger.dev",
{
headers: options?.headers,
signal: options?.signal,
}
),
...options,
};
return new RunSubscription<TRunTypes>($options);
}
// First, define interfaces for the stream handling
export interface StreamSubscription {
subscribe(): Promise<ReadableStream<unknown>>;
}
export interface StreamSubscriptionFactory {
createSubscription(runId: string, streamKey: string, baseUrl?: string): StreamSubscription;
}
// Real implementation for production
export class SSEStreamSubscription implements StreamSubscription {
constructor(
private url: string,
private options: { headers?: Record<string, string>; signal?: AbortSignal }
) {}
async subscribe(): Promise<ReadableStream<unknown>> {
return fetch(this.url, {
headers: {
Accept: "text/event-stream",
...this.options.headers,
},
signal: this.options.signal,
}).then((response) => {
if (!response.ok) {
throw ApiError.generate(
response.status,
{},
"Could not subscribe to stream",
Object.fromEntries(response.headers)
);
}
if (!response.body) {
throw new Error("No response body");
}
return response.body
.pipeThrough(new TextDecoderStream())
.pipeThrough(new EventSourceParserStream())
.pipeThrough(
new TransformStream({
transform(chunk, controller) {
controller.enqueue(safeParseJSON(chunk.data));
},
})
);
});
}
}
export class SSEStreamSubscriptionFactory implements StreamSubscriptionFactory {
constructor(
private baseUrl: string,
private options: { headers?: Record<string, string>; signal?: AbortSignal }
) {}
createSubscription(runId: string, streamKey: string, baseUrl?: string): StreamSubscription {
if (!runId || !streamKey) {
throw new Error("runId and streamKey are required");
}
const url = `${baseUrl ?? this.baseUrl}/realtime/v1/streams/${runId}/${streamKey}`;
return new SSEStreamSubscription(url, this.options);
}
}
export interface RunShapeProvider {
onShape(callback: (shape: SubscribeRunRawShape) => Promise<void>): Promise<() => void>;
}
export type RunSubscriptionOptions = RunShapeStreamOptions & {
provider: RunShapeProvider;
streamFactory: StreamSubscriptionFactory;
};
export class RunSubscription<TRunTypes extends AnyRunTypes> {
private abortController: AbortController;
private unsubscribeShape?: () => void;
private stream: AsyncIterableStream<RunShape<TRunTypes>>;
private packetCache = new Map<string, any>();
private _closeOnComplete: boolean;
private _isRunComplete = false;
constructor(private options: RunSubscriptionOptions) {
this.abortController = new AbortController();
this._closeOnComplete =
typeof options.closeOnComplete === "undefined" ? true : options.closeOnComplete;
const source = new ReadableStream<SubscribeRunRawShape>({
start: async (controller) => {
this.unsubscribeShape = await this.options.provider.onShape(async (shape) => {
controller.enqueue(shape);
this._isRunComplete = !!shape.completedAt;
if (
this._closeOnComplete &&
this._isRunComplete &&
!this.abortController.signal.aborted
) {
controller.close();
this.abortController.abort();
}
});
},
cancel: () => {
this.unsubscribe();
},
});
this.stream = createAsyncIterableStream(source, {
transform: async (chunk, controller) => {
const run = await this.transformRunShape(chunk);
controller.enqueue(run);
},
});
}
unsubscribe(): void {
if (!this.abortController.signal.aborted) {
this.abortController.abort();
}
this.unsubscribeShape?.();
}
[Symbol.asyncIterator](): AsyncIterator<RunShape<TRunTypes>> {
return this.stream[Symbol.asyncIterator]();
}
getReader(): ReadableStreamDefaultReader<RunShape<TRunTypes>> {
return this.stream.getReader();
}
withStreams<TStreams extends Record<string, any>>(): AsyncIterableStream<
RunWithStreamsResult<RunShape<TRunTypes>, TStreams>
> {
// Keep track of which streams we've already subscribed to
const activeStreams = new Set<string>();
return createAsyncIterableStream(this.stream, {
transform: async (run, controller) => {
controller.enqueue({
type: "run",
run,
});
// Check for stream metadata
if (run.metadata && "$$streams" in run.metadata && Array.isArray(run.metadata.$$streams)) {
for (const streamKey of run.metadata.$$streams) {
if (typeof streamKey !== "string") {
continue;
}
if (!activeStreams.has(streamKey)) {
activeStreams.add(streamKey);
const subscription = this.options.streamFactory.createSubscription(
run.id,
streamKey,
this.options.client?.baseUrl
);
const stream = await subscription.subscribe();
// Create the pipeline and start it
stream
.pipeThrough(
new TransformStream({
transform(chunk, controller) {
controller.enqueue({
type: streamKey,
chunk: chunk as TStreams[typeof streamKey],
run,
} as StreamPartResult<RunShape<TRunTypes>, TStreams>);
},
})
)
.pipeTo(
new WritableStream({
write(chunk) {
controller.enqueue(chunk);
},
})
)
.catch((error) => {
console.error(`Error in stream ${streamKey}:`, error);
});
}
}
}
},
});
}
private async transformRunShape(row: SubscribeRunRawShape): Promise<RunShape<TRunTypes>> {
const payloadPacket = row.payloadType
? ({ data: row.payload ?? undefined, dataType: row.payloadType } satisfies IOPacket)
: undefined;
const outputPacket = row.outputType
? ({ data: row.output ?? undefined, dataType: row.outputType } satisfies IOPacket)
: undefined;
const [payload, output] = await Promise.all(
[
{ packet: payloadPacket, key: "payload" },
{ packet: outputPacket, key: "output" },
].map(async ({ packet, key }) => {
if (!packet) {
return;
}
const cachedResult = this.packetCache.get(`${row.friendlyId}/${key}`);
if (typeof cachedResult !== "undefined") {
return cachedResult;
}
const result = await conditionallyImportAndParsePacket(packet, this.options.client);
this.packetCache.set(`${row.friendlyId}/${key}`, result);
return result;
})
);
const metadata =
row.metadata && row.metadataType
? await parsePacket({ data: row.metadata, dataType: row.metadataType })
: undefined;
return {
id: row.friendlyId,
payload,
output,
createdAt: row.createdAt,
updatedAt: row.updatedAt,
taskIdentifier: row.taskIdentifier,
number: row.number,
status: apiStatusFromRunStatus(row.status),
durationMs: row.usageDurationMs,
costInCents: row.costInCents,
baseCostInCents: row.baseCostInCents,
tags: row.runTags ?? [],
idempotencyKey: row.idempotencyKey ?? undefined,
expiredAt: row.expiredAt ?? undefined,
finishedAt: row.completedAt ?? undefined,
startedAt: row.startedAt ?? undefined,
delayedUntil: row.delayUntil ?? undefined,
queuedAt: row.queuedAt ?? undefined,
error: row.error ?? undefined,
isTest: row.isTest,
metadata,
} as RunShape<TRunTypes>;
}
}
function apiStatusFromRunStatus(status: string): RunStatus {
switch (status) {
case "DELAYED": {
return "DELAYED";
}
case "WAITING_FOR_DEPLOY": {
return "WAITING_FOR_DEPLOY";
}
case "PENDING": {
return "QUEUED";
}
case "PAUSED":
case "WAITING_TO_RESUME": {
return "FROZEN";
}
case "RETRYING_AFTER_FAILURE": {
return "REATTEMPTING";
}
case "EXECUTING": {
return "EXECUTING";
}
case "CANCELED": {
return "CANCELED";
}
case "COMPLETED_SUCCESSFULLY": {
return "COMPLETED";
}
case "SYSTEM_FAILURE": {
return "SYSTEM_FAILURE";
}
case "INTERRUPTED": {
return "INTERRUPTED";
}
case "CRASHED": {
return "CRASHED";
}
case "COMPLETED_WITH_ERRORS": {
return "FAILED";
}
case "EXPIRED": {
return "EXPIRED";
}
default: {
throw new Error(`Unknown status: ${status}`);
}
}
}
function safeParseJSON(data: string): unknown {
try {
return JSON.parse(data);
} catch (error) {
return data;
}
}