-
-
Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathstarlette.py
291 lines (233 loc) · 9.46 KB
/
starlette.py
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
from __future__ import annotations
import asyncio
import json
import logging
import sys
from asyncio import Future
from threading import Event, Thread, current_thread
from typing import Any, Dict, Optional, Tuple, TypeVar, Union
from mypy_extensions import TypedDict
from starlette.applications import Starlette
from starlette.middleware.cors import CORSMiddleware
from starlette.requests import Request
from starlette.responses import RedirectResponse
from starlette.staticfiles import StaticFiles
from starlette.websockets import WebSocket, WebSocketDisconnect
from uvicorn.config import Config as UvicornConfig
from uvicorn.server import Server as UvicornServer
from uvicorn.supervisors.multiprocess import Multiprocess
from uvicorn.supervisors.statreload import StatReload as ChangeReload
from idom.config import IDOM_DEBUG_MODE, IDOM_WEB_MODULES_DIR
from idom.core.dispatcher import (
RecvCoroutine,
SendCoroutine,
SharedViewDispatcher,
VdomJsonPatch,
dispatch_single_view,
ensure_shared_view_dispatcher_future,
)
from idom.core.layout import Layout, LayoutEvent
from idom.core.types import ComponentConstructor
from .utils import CLIENT_BUILD_DIR, poll, threaded
logger = logging.getLogger(__name__)
_StarletteType = TypeVar("_StarletteType", bound=Starlette)
class Config(TypedDict, total=False):
"""Config for :class:`StarletteRenderServer`"""
cors: Union[bool, Dict[str, Any]]
"""Enable or configure Cross Origin Resource Sharing (CORS)
For more information see docs for ``starlette.middleware.cors.CORSMiddleware``
"""
redirect_root_to_index: bool
"""Whether to redirect the root URL (with prefix) to ``index.html``"""
serve_static_files: bool
"""Whether or not to serve static files (i.e. web modules)"""
url_prefix: str
"""The URL prefix where IDOM resources will be served from"""
def PerClientStateServer(
constructor: ComponentConstructor,
config: Optional[Config] = None,
app: Optional[Starlette] = None,
) -> StarletteServer:
"""Return a :class:`StarletteServer` where each client has its own state.
Implements the :class:`~idom.server.proto.ServerFactory` protocol
Parameters:
constructor: A component constructor
config: Options for configuring server behavior
app: An application instance (otherwise a default instance is created)
"""
config, app = _setup_config_and_app(config, app, Starlette)
_setup_common_routes(config, app)
_setup_single_view_dispatcher_route(config["url_prefix"], app, constructor)
return StarletteServer(app)
def SharedClientStateServer(
constructor: ComponentConstructor,
config: Optional[Config] = None,
app: Optional[Starlette] = None,
) -> StarletteServer:
"""Return a :class:`StarletteServer` where each client shares state.
Implements the :class:`~idom.server.proto.ServerFactory` protocol
Parameters:
constructor: A component constructor
config: Options for configuring server behavior
app: An application instance (otherwise a default instance is created)
"""
config, app = _setup_config_and_app(config, app, Starlette)
_setup_common_routes(config, app)
_setup_shared_view_dispatcher_route(config["url_prefix"], app, constructor)
return StarletteServer(app)
class StarletteServer:
"""A thin wrapper for running a Starlette application
See :class:`idom.server.proto.Server` for more info
"""
_server: UvicornServer
_current_thread: Thread
def __init__(self, app: Starlette) -> None:
self.app = app
self._did_stop = Event()
app.on_event("shutdown")(self._server_did_stop)
def run(self, host: str, port: int, *args: Any, **kwargs: Any) -> None:
self._current_thread = current_thread()
self._server = server = UvicornServer(
UvicornConfig(
self.app, host=host, port=port, loop="asyncio", *args, **kwargs
)
)
# The following was copied from the uvicorn source with minimal modification. We
# shouldn't need to do this, but unfortunately there's no easy way to gain access to
# the server instance so you can stop it.
# BUG: https://github.com/encode/uvicorn/issues/742
config = server.config
if (config.reload or config.workers > 1) and not isinstance(
server.config.app, str
): # pragma: no cover
logger = logging.getLogger("uvicorn.error")
logger.warning(
"You must pass the application as an import string to enable 'reload' or "
"'workers'."
)
sys.exit(1)
if config.should_reload: # pragma: no cover
sock = config.bind_socket()
supervisor = ChangeReload(config, target=server.run, sockets=[sock])
supervisor.run()
elif config.workers > 1: # pragma: no cover
sock = config.bind_socket()
supervisor = Multiprocess(config, target=server.run, sockets=[sock])
supervisor.run()
else:
import asyncio
asyncio.set_event_loop(asyncio.new_event_loop())
server.run()
run_in_thread = threaded(run)
def wait_until_started(self, timeout: Optional[float] = 3.0) -> None:
poll(
f"start {self.app}",
0.01,
timeout,
lambda: hasattr(self, "_server") and self._server.started,
)
def stop(self, timeout: Optional[float] = 3.0) -> None:
self._server.should_exit = True
self._did_stop.wait(timeout)
async def _server_did_stop(self) -> None:
self._did_stop.set()
def _setup_config_and_app(
config: Optional[Config],
app: Optional[_StarletteType],
app_type: type[_StarletteType],
) -> Tuple[Config, _StarletteType]:
return (
{
"cors": False,
"url_prefix": "",
"serve_static_files": True,
"redirect_root_to_index": True,
**(config or {}), # type: ignore
},
app or app_type(debug=IDOM_DEBUG_MODE.current),
)
def _setup_common_routes(config: Config, app: Starlette) -> None:
cors_config = config["cors"]
if cors_config: # pragma: no cover
cors_params = (
cors_config if isinstance(cors_config, dict) else {"allow_origins": ["*"]}
)
app.add_middleware(CORSMiddleware, **cors_params)
# This really should be added to the APIRouter, but there's a bug in Starlette
# BUG: https://github.com/tiangolo/fastapi/issues/1469
url_prefix = config["url_prefix"]
if config["serve_static_files"]:
app.mount(
f"{url_prefix}/client",
StaticFiles(
directory=str(CLIENT_BUILD_DIR),
html=True,
check_dir=True,
),
name="idom_client_files",
)
app.mount(
f"{url_prefix}/modules",
StaticFiles(
directory=str(IDOM_WEB_MODULES_DIR.current),
html=True,
check_dir=False,
),
name="idom_web_module_files",
)
if config["redirect_root_to_index"]:
@app.route(f"{url_prefix}/")
def redirect_to_index(request: Request) -> RedirectResponse:
return RedirectResponse(
f"{url_prefix}/client/index.html?{request.query_params}"
)
def _setup_single_view_dispatcher_route(
url_prefix: str, app: Starlette, constructor: ComponentConstructor
) -> None:
@app.websocket_route(f"{url_prefix}/stream")
async def model_stream(socket: WebSocket) -> None:
await socket.accept()
send, recv = _make_send_recv_callbacks(socket)
try:
await dispatch_single_view(
Layout(constructor(**dict(socket.query_params))), send, recv
)
except WebSocketDisconnect as error:
logger.info(f"WebSocket disconnect: {error.code}")
def _setup_shared_view_dispatcher_route(
url_prefix: str, app: Starlette, constructor: ComponentConstructor
) -> None:
dispatcher_future: Future[None]
dispatch_coroutine: SharedViewDispatcher
@app.on_event("startup")
async def activate_dispatcher() -> None:
nonlocal dispatcher_future
nonlocal dispatch_coroutine
dispatcher_future, dispatch_coroutine = ensure_shared_view_dispatcher_future(
Layout(constructor())
)
@app.on_event("shutdown")
async def deactivate_dispatcher() -> None:
logger.debug("Stopping dispatcher - server is shutting down")
dispatcher_future.cancel()
await asyncio.wait([dispatcher_future])
@app.websocket_route(f"{url_prefix}/stream")
async def model_stream(socket: WebSocket) -> None:
await socket.accept()
if socket.query_params:
raise ValueError(
"SharedClientState server does not support per-client view parameters"
)
send, recv = _make_send_recv_callbacks(socket)
try:
await dispatch_coroutine(send, recv)
except WebSocketDisconnect as error:
logger.info(f"WebSocket disconnect: {error.code}")
def _make_send_recv_callbacks(
socket: WebSocket,
) -> Tuple[SendCoroutine, RecvCoroutine]:
async def sock_send(value: VdomJsonPatch) -> None:
await socket.send_text(json.dumps(value))
async def sock_recv() -> LayoutEvent:
return LayoutEvent(**json.loads(await socket.receive_text()))
return sock_send, sock_recv