forked from Alishahryar1/free-claude-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponse_streams.py
More file actions
387 lines (339 loc) · 12.5 KB
/
Copy pathresponse_streams.py
File metadata and controls
387 lines (339 loc) · 12.5 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
"""FastAPI streaming response wrappers for public API wire formats."""
import asyncio
from collections.abc import (
AsyncIterator,
Awaitable,
Callable,
Mapping,
)
from typing import Literal
from fastapi.responses import JSONResponse, Response, StreamingResponse
from starlette.background import BackgroundTask
from starlette.responses import ContentStream
from starlette.types import Receive, Scope, Send
from free_claude_code.core.anthropic import anthropic_error_type_for_failure
from free_claude_code.core.anthropic.streaming import (
ANTHROPIC_SSE_RESPONSE_HEADERS,
anthropic_terminal_error_frame,
anthropic_terminal_failure_frame,
)
from free_claude_code.core.async_iterators import try_close_async_iterator
from free_claude_code.core.diagnostics import safe_exception_message
from free_claude_code.core.failures import find_execution_failure
from free_claude_code.core.json_types import JsonObject
from free_claude_code.core.trace import close_stream_input, trace_event
TERMINAL_EXECUTION_ERROR_HEADERS = {"x-should-retry": "false"}
PreStartErrorResponse = Callable[[BaseException], Response]
TerminalFrameEmitter = Callable[[BaseException], str]
TerminalFailureObserver = Callable[[BaseException], None]
ReleaseResponseResource = Callable[[], Awaitable[None]]
WireApi = Literal["messages", "responses"]
class EmptyStreamError(RuntimeError):
"""Raised when a public stream ends before emitting any protocol chunk."""
class ManagedStreamingResponse(StreamingResponse):
"""Own body closure and one response-scoped runtime release callback."""
def __init__(
self,
content: ContentStream,
status_code: int = 200,
headers: Mapping[str, str] | None = None,
media_type: str | None = None,
background: BackgroundTask | None = None,
) -> None:
super().__init__(
content,
status_code=status_code,
headers=headers,
media_type=media_type,
background=background,
)
self._release: ReleaseResponseResource | None = None
self._cleanup_task: asyncio.Task[None] | None = None
def bind_release(self, release: ReleaseResponseResource) -> None:
"""Bind the resource retained for this response before ASGI execution."""
if self._release is not None:
raise RuntimeError("A response resource release is already bound.")
if self._cleanup_task is not None:
raise RuntimeError("Cannot bind a resource after response cleanup started.")
self._release = release
async def aclose(self) -> None:
"""Close the body and release its runtime resource exactly once."""
await self._close(preserved_error=None)
async def _close(self, *, preserved_error: BaseException | None) -> None:
task = self._cleanup_task
if task is None:
task = asyncio.create_task(
self._cleanup(preserved_error=preserved_error),
name="fcc-api-response-cleanup",
)
self._cleanup_task = task
await _wait_for_cleanup(task)
async def __call__(
self,
scope: Scope,
receive: Receive,
send: Send,
) -> None:
preserved_error: BaseException | None = None
try:
await super().__call__(scope, receive, send)
except BaseException as exc:
preserved_error = exc
raise
finally:
await self._close(preserved_error=preserved_error)
async def _cleanup(self, *, preserved_error: BaseException | None) -> None:
try:
await close_stream_input(
self.body_iterator,
owner="ManagedStreamingResponse",
source="api",
preserved_error=preserved_error,
)
except Exception as exc:
_trace_response_cleanup_failure("close_body", exc)
release = self._release
if release is None:
return
try:
await release()
except Exception as exc:
_trace_response_cleanup_failure("release_resource", exc)
async def _wait_for_cleanup(task: asyncio.Task[None]) -> None:
"""Wait through repeated caller cancellation, then restore cancellation."""
cancellation: asyncio.CancelledError | None = None
while not task.done():
try:
await asyncio.shield(task)
except asyncio.CancelledError as exc:
cancellation = exc
# Ordinary defensive failures are trace-only; cancellation remains control flow.
try:
task.result()
except asyncio.CancelledError:
if cancellation is not None:
raise cancellation from None
raise
except Exception as exc:
_trace_response_cleanup_failure("cleanup_task", exc)
if cancellation is not None:
raise cancellation
def _trace_response_cleanup_failure(operation: str, exc: BaseException) -> None:
trace_event(
stage="egress",
event="free_claude_code.api.response.cleanup_failed",
source="api",
operation=operation,
exc_type=type(exc).__name__,
)
async def bind_response_lifetime(
response: object,
release: ReleaseResponseResource,
) -> object:
"""Retain a runtime resource until a response body is fully consumed."""
if isinstance(response, ManagedStreamingResponse):
response.bind_release(release)
return response
if isinstance(response, StreamingResponse):
error = TypeError("Streaming API responses must use ManagedStreamingResponse.")
try:
await close_stream_input(
response.body_iterator,
owner="bind_response_lifetime",
source="api",
preserved_error=error,
)
finally:
await release()
raise error
await release()
return response
def terminal_execution_error_response(
*, status_code: int, content: JsonObject
) -> JSONResponse:
"""Return a final provider-execution error without enabling client retries."""
return JSONResponse(
status_code=status_code,
content=content,
headers=dict(TERMINAL_EXECUTION_ERROR_HEADERS),
)
def trace_terminal_execution_error(
*,
wire_api: WireApi,
request_id: str,
status_code: int,
error_type: str,
error: BaseException | None = None,
) -> None:
"""Record one correlated terminal-execution decision at the HTTP boundary."""
fields: dict[str, object] = {
"stage": "egress",
"event": "free_claude_code.api.response.terminal_execution_error",
"source": "api",
"wire_api": wire_api,
"request_id": request_id,
"status_code": status_code,
"error_type": error_type,
"client_should_retry": False,
}
failure = find_execution_failure(error) if error is not None else None
if error is not None:
fields["exc_type"] = type(failure or error).__name__
if failure is not None:
fields["failure_kind"] = failure.kind.value
fields["provider_retryable"] = failure.retryable
trace_event(**fields)
async def _first_chunk_streaming_response(
body: AsyncIterator[str],
*,
headers: Mapping[str, str],
pre_start_error_response: PreStartErrorResponse,
terminal_frame: TerminalFrameEmitter | None,
terminal_failure_observer: TerminalFailureObserver | None,
) -> Response:
try:
first_chunk = await anext(body)
except StopAsyncIteration:
error = EmptyStreamError("Stream ended before emitting a response.")
await _close_pre_start_body(body, preserved_error=error)
return pre_start_error_response(error)
except GeneratorExit as exc:
await _close_pre_start_body(body, preserved_error=exc)
raise
except asyncio.CancelledError as exc:
await _close_pre_start_body(body, preserved_error=exc)
raise
except BaseExceptionGroup as exc:
await _close_pre_start_body(body, preserved_error=exc)
return pre_start_error_response(exc)
except Exception as exc:
await _close_pre_start_body(body, preserved_error=exc)
return pre_start_error_response(exc)
return ManagedStreamingResponse(
_PrefetchedStream(
first_chunk,
body,
terminal_frame=terminal_frame,
terminal_failure_observer=terminal_failure_observer,
),
media_type="text/event-stream",
headers=dict(headers),
)
async def _close_pre_start_body(
body: AsyncIterator[str],
*,
preserved_error: BaseException,
) -> None:
task = asyncio.create_task(
close_stream_input(
body,
owner="first_chunk_streaming_response",
source="api",
preserved_error=preserved_error,
),
name="fcc-api-pre-start-stream-cleanup",
)
await _wait_for_cleanup(task)
class _PrefetchedStream(AsyncIterator[str]):
"""Replay one prefetched frame while retaining ownership of the tail."""
def __init__(
self,
first_chunk: str,
body: AsyncIterator[str],
*,
terminal_frame: TerminalFrameEmitter | None,
terminal_failure_observer: TerminalFailureObserver | None,
) -> None:
self._first_chunk: str | None = first_chunk
self._body = body
self._terminal_frame = terminal_frame
self._terminal_failure_observer = terminal_failure_observer
self._done = False
self._closed = False
def __aiter__(self) -> _PrefetchedStream:
return self
async def __anext__(self) -> str:
if self._closed or self._done:
raise StopAsyncIteration
if self._first_chunk is not None:
first_chunk = self._first_chunk
self._first_chunk = None
return first_chunk
try:
return await anext(self._body)
except StopAsyncIteration:
self._done = True
raise
except BaseExceptionGroup as exc:
return self._terminal_chunk(find_execution_failure(exc) or exc)
except Exception as exc:
return self._terminal_chunk(exc)
async def aclose(self) -> None:
if self._closed:
return
self._closed = True
self._done = True
close_error = await try_close_async_iterator(self._body)
if close_error is not None:
raise close_error
def _terminal_chunk(self, exc: BaseException) -> str:
terminal_frame = self._terminal_frame
if terminal_frame is None:
raise exc
self._done = True
if self._terminal_failure_observer is not None:
self._terminal_failure_observer(exc)
return terminal_frame(exc)
async def anthropic_sse_streaming_response(
body: AsyncIterator[str],
*,
pre_start_error_response: PreStartErrorResponse,
request_id: str,
) -> Response:
"""Return a streaming response for Anthropic-style SSE streams."""
return await _first_chunk_streaming_response(
body,
headers=ANTHROPIC_SSE_RESPONSE_HEADERS,
pre_start_error_response=pre_start_error_response,
terminal_frame=_anthropic_terminal_frame,
terminal_failure_observer=lambda exc: _trace_anthropic_terminal_failure(
exc,
request_id=request_id,
),
)
def _anthropic_terminal_frame(exc: BaseException) -> str:
failure = find_execution_failure(exc)
if failure is not None:
return anthropic_terminal_failure_frame(failure)
return anthropic_terminal_error_frame(safe_exception_message(exc))
def _trace_anthropic_terminal_failure(
exc: BaseException,
*,
request_id: str,
) -> None:
failure = find_execution_failure(exc)
trace_terminal_execution_error(
wire_api="messages",
request_id=request_id,
status_code=failure.status_code if failure is not None else 500,
error_type=(
anthropic_error_type_for_failure(failure)
if failure is not None
else "api_error"
),
error=exc,
)
async def openai_responses_sse_streaming_response(
body: AsyncIterator[str],
*,
headers: Mapping[str, str],
pre_start_error_response: PreStartErrorResponse,
) -> Response:
"""Return a streaming response for OpenAI Responses-style SSE."""
return await _first_chunk_streaming_response(
body,
headers=headers,
pre_start_error_response=pre_start_error_response,
terminal_frame=None,
terminal_failure_observer=None,
)