-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added typing for ASGI Scopes, messages, and frameworks
These are useful for users of asgiref to type check their ASGI usage. It also serves as the reference typing for the ASGI Specification. This does not include typing for the actual ASGI functions (yet).
- Loading branch information
Showing
2 changed files
with
209 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
from typing import Awaitable, Callable, Dict, Iterable, Optional, Tuple, Type, Union | ||
|
||
try: | ||
from typing import Literal, Protocol, TypedDict | ||
except ImportError: | ||
from typing_extensions import Literal, Protocol, TypedDict # type: ignore | ||
|
||
|
||
class ASGIVersions(TypedDict): | ||
spec_version: str | ||
version: Union[Literal["2.0"], Literal["3.0"]] | ||
|
||
|
||
class HTTPScope(TypedDict): | ||
type: Literal["http"] | ||
asgi: ASGIVersions | ||
http_version: str | ||
method: str | ||
scheme: str | ||
path: str | ||
raw_path: bytes | ||
query_string: bytes | ||
root_path: str | ||
headers: Iterable[Tuple[bytes, bytes]] | ||
client: Optional[Tuple[str, int]] | ||
server: Optional[Tuple[str, Optional[int]]] | ||
extensions: Dict[str, dict] | ||
|
||
|
||
class WebsocketScope(TypedDict): | ||
type: Literal["websocket"] | ||
asgi: ASGIVersions | ||
http_version: str | ||
scheme: str | ||
path: str | ||
raw_path: bytes | ||
query_string: bytes | ||
root_path: str | ||
headers: Iterable[Tuple[bytes, bytes]] | ||
client: Optional[Tuple[str, int]] | ||
server: Optional[Tuple[str, Optional[int]]] | ||
subprotocols: Iterable[str] | ||
extensions: Dict[str, dict] | ||
|
||
|
||
class LifespanScope(TypedDict): | ||
type: Literal["lifespan"] | ||
asgi: ASGIVersions | ||
|
||
|
||
WWWScope = Union[HTTPScope, WebsocketScope] | ||
Scope = Union[HTTPScope, WebsocketScope, LifespanScope] | ||
|
||
|
||
class HTTPRequestEvent(TypedDict): | ||
type: Literal["http.request"] | ||
body: bytes | ||
more_body: bool | ||
|
||
|
||
class HTTPResponseStartEvent(TypedDict): | ||
type: Literal["http.response.start"] | ||
status: int | ||
headers: Iterable[Tuple[bytes, bytes]] | ||
|
||
|
||
class HTTPResponseBodyEvent(TypedDict): | ||
type: Literal["http.response.body"] | ||
body: bytes | ||
more_body: bool | ||
|
||
|
||
class HTTPServerPushEvent(TypedDict): | ||
type: Literal["http.response.push"] | ||
path: str | ||
headers: Iterable[Tuple[bytes, bytes]] | ||
|
||
|
||
class HTTPDisconnectEvent(TypedDict): | ||
type: Literal["http.disconnect"] | ||
|
||
|
||
class WebsocketConnectEvent(TypedDict): | ||
type: Literal["websocket.connect"] | ||
|
||
|
||
class WebsocketAcceptEvent(TypedDict): | ||
type: Literal["websocket.accept"] | ||
subprotocol: Optional[str] | ||
headers: Iterable[Tuple[bytes, bytes]] | ||
|
||
|
||
class WebsocketReceiveEvent(TypedDict): | ||
type: Literal["websocket.receive"] | ||
bytes: Optional[bytes] | ||
text: Optional[str] | ||
|
||
|
||
class WebsocketSendEvent(TypedDict): | ||
type: Literal["websocket.send"] | ||
bytes: Optional[bytes] | ||
text: Optional[str] | ||
|
||
|
||
class WebsocketResponseStartEvent(TypedDict): | ||
type: Literal["websocket.http.response.start"] | ||
status: int | ||
headers: Iterable[Tuple[bytes, bytes]] | ||
|
||
|
||
class WebsocketResponseBodyEvent(TypedDict): | ||
type: Literal["websocket.http.response.body"] | ||
body: bytes | ||
more_body: bool | ||
|
||
|
||
class WebsocketDisconnectEvent(TypedDict): | ||
type: Literal["websocket.disconnect"] | ||
code: int | ||
|
||
|
||
class WebsocketCloseEvent(TypedDict): | ||
type: Literal["websocket.close"] | ||
code: int | ||
|
||
|
||
class LifespanStartupEvent(TypedDict): | ||
type: Literal["lifespan.startup"] | ||
|
||
|
||
class LifespanShutdownEvent(TypedDict): | ||
type: Literal["lifespan.shutdown"] | ||
|
||
|
||
class LifespanStartupCompleteEvent(TypedDict): | ||
type: Literal["lifespan.startup.complete"] | ||
|
||
|
||
class LifespanStartupFailedEvent(TypedDict): | ||
type: Literal["lifespan.startup.failed"] | ||
message: str | ||
|
||
|
||
class LifespanShutdownCompleteEvent(TypedDict): | ||
type: Literal["lifespan.shutdown.complete"] | ||
|
||
|
||
class LifespanShutdownFailedEvent(TypedDict): | ||
type: Literal["lifespan.shutdown.failed"] | ||
message: str | ||
|
||
|
||
ASGIReceiveEvent = Union[ | ||
HTTPRequestEvent, | ||
HTTPDisconnectEvent, | ||
WebsocketConnectEvent, | ||
WebsocketReceiveEvent, | ||
WebsocketDisconnectEvent, | ||
LifespanStartupEvent, | ||
LifespanShutdownEvent, | ||
] | ||
|
||
|
||
ASGISendEvent = Union[ | ||
HTTPResponseStartEvent, | ||
HTTPResponseBodyEvent, | ||
HTTPServerPushEvent, | ||
HTTPDisconnectEvent, | ||
WebsocketAcceptEvent, | ||
WebsocketSendEvent, | ||
WebsocketResponseStartEvent, | ||
WebsocketResponseBodyEvent, | ||
WebsocketCloseEvent, | ||
LifespanStartupCompleteEvent, | ||
LifespanStartupFailedEvent, | ||
LifespanShutdownCompleteEvent, | ||
LifespanShutdownFailedEvent, | ||
] | ||
|
||
|
||
ASGIReceiveCallable = Callable[[], Awaitable[ASGIReceiveEvent]] | ||
ASGISendCallable = Callable[[ASGISendEvent], Awaitable[None]] | ||
|
||
|
||
class ASGI2Protocol(Protocol): | ||
def __init__(self, scope: Scope) -> None: | ||
... | ||
|
||
async def __call__( | ||
self, receive: ASGIReceiveCallable, send: ASGISendCallable | ||
) -> None: | ||
... | ||
|
||
|
||
ASGI2Application = Type[ASGI2Protocol] | ||
ASGI3Application = Callable[ | ||
[ | ||
Scope, | ||
ASGIReceiveCallable, | ||
ASGISendCallable, | ||
], | ||
Awaitable[None], | ||
] | ||
ASGIApplication = Union[ASGI2Application, ASGI3Application] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters