Spaces:
Sleeping
Sleeping
File size: 5,459 Bytes
641b62c | 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 | /**
* StreamManager.ts — Safari-safe streaming engine
*
* Features:
* - cancel, resume (reconnect), retry
* - normalize (strips SSE wrapper)
* - buffer + token batching (reduces React re-renders)
* - Safari iOS safe: handles broken pipes, readableStream drops
*/
export type StreamState = "idle" | "connecting" | "streaming" | "paused" | "done" | "error";
export interface StreamManagerOptions {
onChunk: (text: string) => void;
onStatus?: (state: StreamState) => void;
onError?: (err: Error) => void;
onDone?: () => void;
batchIntervalMs?: number;
maxRetries?: number;
retryDelayMs?: number;
timeoutMs?: number;
}
interface StreamSession {
abortCtrl: AbortController;
reader?: ReadableStreamDefaultReader<Uint8Array>;
}
export class StreamManager {
private state: StreamState = "idle";
private session: StreamSession | null = null;
private buffer = "";
private batchTimer: ReturnType<typeof setInterval> | null = null;
private pendingChunks = "";
private readonly opts: Required<StreamManagerOptions>;
constructor(opts: StreamManagerOptions) {
this.opts = {
batchIntervalMs: 32,
maxRetries: 2,
retryDelayMs: 800,
timeoutMs: 60_000,
onStatus: () => {},
onError: () => {},
onDone: () => {},
...opts,
};
}
private setState(s: StreamState) {
this.state = s;
this.opts.onStatus(s);
}
private startBatch() {
if (this.batchTimer) return;
this.batchTimer = setInterval(() => {
if (this.pendingChunks) {
this.opts.onChunk(this.pendingChunks);
this.pendingChunks = "";
}
}, this.opts.batchIntervalMs);
}
private stopBatch() {
if (this.batchTimer) {
clearInterval(this.batchTimer);
this.batchTimer = null;
}
if (this.pendingChunks) {
this.opts.onChunk(this.pendingChunks);
this.pendingChunks = "";
}
}
private addChunk(text: string) {
this.pendingChunks += text;
}
async stream(fetcher: () => Promise<Response>): Promise<void> {
let attempt = 0;
while (attempt <= this.opts.maxRetries) {
attempt++;
const ctrl = new AbortController();
const timeoutId = setTimeout(() => ctrl.abort(), this.opts.timeoutMs);
this.session = { abortCtrl: ctrl };
this.setState("connecting");
try {
const response = await fetcher();
if (!response.ok) {
throw Object.assign(
new Error(`HTTP ${response.status}: ${response.statusText}`),
{ status: response.status },
);
}
if (!response.body) throw new Error("Risposta senza body");
const reader = response.body.getReader();
this.session.reader = reader;
const decoder = new TextDecoder();
this.setState("streaming");
this.startBatch();
while (true) {
let done: boolean;
let value: Uint8Array | undefined;
try {
({ done, value } = await reader.read());
} catch (readErr) {
const e = readErr as Error;
if (e.name === "AbortError" || ctrl.signal.aborted) break;
throw e;
}
if (done) break;
if (!value) continue;
this.buffer += decoder.decode(value, { stream: true });
this.processBuffer();
}
clearTimeout(timeoutId);
this.stopBatch();
this.setState("done");
this.opts.onDone();
return;
} catch (err) {
clearTimeout(timeoutId);
this.stopBatch();
const e = err instanceof Error ? err : new Error(String(err));
if (this.state === "idle") return;
if (e.name === "AbortError") {
this.setState("done");
return;
}
const isRetryable = attempt <= this.opts.maxRetries && !("status" in e && (e as {status:number}).status < 500);
if (isRetryable) {
this.setState("paused");
await new Promise(r => setTimeout(r, this.opts.retryDelayMs * attempt));
this.buffer = "";
continue;
}
this.setState("error");
this.opts.onError(e);
return;
}
}
}
private processBuffer() {
const lines = this.buffer.split("\n");
this.buffer = lines[lines.length - 1];
for (let i = 0; i < lines.length - 1; i++) {
const line = lines[i].trim();
if (!line) continue;
if (line.startsWith("data: ")) {
const data = line.slice(6).trim();
if (data === "[DONE]") {
this.stopBatch();
this.setState("done");
this.opts.onDone();
return;
}
const text = this.extractText(data);
if (text) this.addChunk(text);
}
}
}
private extractText(data: string): string {
try {
const json = JSON.parse(data) as {
choices?: Array<{ delta?: { content?: string }; text?: string }>;
content?: string;
text?: string;
};
return (
json.choices?.[0]?.delta?.content ??
json.choices?.[0]?.text ??
json.content ??
json.text ??
""
);
} catch {
return data;
}
}
cancel() {
this.setState("idle");
this.session?.abortCtrl.abort();
this.session?.reader?.cancel().catch(() => {});
this.session = null;
this.stopBatch();
this.buffer = "";
}
getState(): StreamState { return this.state; }
}
|