1from contextlib import asynccontextmanager
2from typing import AsyncIterator, Optional, Union
3
4from .._models import (
5 URL,
6 Extensions,
7 HeaderTypes,
8 Origin,
9 Request,
10 Response,
11 enforce_bytes,
12 enforce_headers,
13 enforce_url,
14 include_request_headers,
15)
16
17
18class AsyncRequestInterface:
19 async def request(
20 self,
21 method: Union[bytes, str],
22 url: Union[URL, bytes, str],
23 *,
24 headers: HeaderTypes = None,
25 content: Union[bytes, AsyncIterator[bytes], None] = None,
26 extensions: Optional[Extensions] = None,
27 ) -> Response:
28 # Strict type checking on our parameters.
29 method = enforce_bytes(method, name="method")
30 url = enforce_url(url, name="url")
31 headers = enforce_headers(headers, name="headers")
32
33 # Include Host header, and optionally Content-Length or Transfer-Encoding.
34 headers = include_request_headers(headers, url=url, content=content)
35
36 request = Request(
37 method=method,
38 url=url,
39 headers=headers,
40 content=content,
41 extensions=extensions,
42 )
43 response = await self.handle_async_request(request)
44 try:
45 await response.aread()
46 finally:
47 await response.aclose()
48 return response
49
50 @asynccontextmanager
51 async def stream(
52 self,
53 method: Union[bytes, str],
54 url: Union[URL, bytes, str],
55 *,
56 headers: HeaderTypes = None,
57 content: Union[bytes, AsyncIterator[bytes], None] = None,
58 extensions: Optional[Extensions] = None,
59 ) -> AsyncIterator[Response]:
60 # Strict type checking on our parameters.
61 method = enforce_bytes(method, name="method")
62 url = enforce_url(url, name="url")
63 headers = enforce_headers(headers, name="headers")
64
65 # Include Host header, and optionally Content-Length or Transfer-Encoding.
66 headers = include_request_headers(headers, url=url, content=content)
67
68 request = Request(
69 method=method,
70 url=url,
71 headers=headers,
72 content=content,
73 extensions=extensions,
74 )
75 response = await self.handle_async_request(request)
76 try:
77 yield response
78 finally:
79 await response.aclose()
80
81 async def handle_async_request(self, request: Request) -> Response:
82 raise NotImplementedError() # pragma: nocover
83
84
85class AsyncConnectionInterface(AsyncRequestInterface):
86 async def aclose(self) -> None:
87 raise NotImplementedError() # pragma: nocover
88
89 def info(self) -> str:
90 raise NotImplementedError() # pragma: nocover
91
92 def can_handle_request(self, origin: Origin) -> bool:
93 raise NotImplementedError() # pragma: nocover
94
95 def is_available(self) -> bool:
96 """
97 Return `True` if the connection is currently able to accept an
98 outgoing request.
99
100 An HTTP/1.1 connection will only be available if it is currently idle.
101
102 An HTTP/2 connection will be available so long as the stream ID space is
103 not yet exhausted, and the connection is not in an error state.
104
105 While the connection is being established we may not yet know if it is going
106 to result in an HTTP/1.1 or HTTP/2 connection. The connection should be
107 treated as being available, but might ultimately raise `NewConnectionRequired`
108 required exceptions if multiple requests are attempted over a connection
109 that ends up being established as HTTP/1.1.
110 """
111 raise NotImplementedError() # pragma: nocover
112
113 def has_expired(self) -> bool:
114 """
115 Return `True` if the connection is in a state where it should be closed.
116
117 This either means that the connection is idle and it has passed the
118 expiry time on its keep-alive, or that server has sent an EOF.
119 """
120 raise NotImplementedError() # pragma: nocover
121
122 def is_idle(self) -> bool:
123 """
124 Return `True` if the connection is currently idle.
125 """
126 raise NotImplementedError() # pragma: nocover
127
128 def is_closed(self) -> bool:
129 """
130 Return `True` if the connection has been closed.
131
132 Used when a response is closed to determine if the connection may be
133 returned to the connection pool or not.
134 """
135 raise NotImplementedError() # pragma: nocover