aio-libs / aio-libs/aiohttp

Support FileResponse.prepare() to be re-entrant just as StreamResponse.prepare().

オープン
#4,647 コメント 2 件 リアクション 1 件 担当者 0 名 GitHub で見る
enhancement
主要言語
Python
スター
16.5k
フォーク
2.4k
平均マージ
20時間 10分
マージ済み PR(30日)
221

説明

🐣 **Is your feature request related to a problem? Please describe.**

There is no way to know when a file is sent if the file is required to be removed after consumed.

As the docs of FileResponse reads,
> The actual body sending happens in overridden **prepare()**.

I tried to call `await file_resp.prepare()` myself in a handler function just like what we are used to do with StreamResponse, and then the file is removed after leaving the handler.

An Exception was raised after leaving the handler since `prepare()` was called again here without checking if the response had already been prepared.
https://github.com/aio-libs/aiohttp/blob/0dbf93726278a0b527ef56212600d2f2aedc7638/aiohttp/web_protocol.py#L461

Although I can use a StreamResponse instead of a FileResponse to tackle this problem, doing the same thing as what [FileResponse._sendfile_fallback()](https://github.com/aio-libs/aiohttp/blob/0dbf93726278a0b527ef56212600d2f2aedc7638/aiohttp/web_fileresponse.py#L174) does. I think it's the responsibility of a FileResponse to send a file (though a file to be removed soon), also to avoid code duplication.

💡 **Describe the solution you'd like**

Just like what `StreamResponse.prepare()` does, I think the same check should also be implemented in `FileResponse.prepare()`.

https://github.com/aio-libs/aiohttp/blob/0dbf93726278a0b527ef56212600d2f2aedc7638/aiohttp/web_response.py#L347-L350

❓ **Describe alternatives you've considered**

Provide any way for developers to know a file is sent, maybe an `asyncio.Event` or a signal.

---

I know there are tons of issues here, but I think it's an improvement for the library to be more comprehensive.
Thank you!

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。