mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
from typing import Any, List, Union, Callable, Awaitable, cast
|
|
|
|
from nonebot.utils import run_sync, is_coroutine_callable
|
|
|
|
SYNC_LIFESPAN_FUNC = Callable[[], Any]
|
|
ASYNC_LIFESPAN_FUNC = Callable[[], Awaitable[Any]]
|
|
LIFESPAN_FUNC = Union[SYNC_LIFESPAN_FUNC, ASYNC_LIFESPAN_FUNC]
|
|
|
|
|
|
class Lifespan:
|
|
def __init__(self) -> None:
|
|
self._startup_funcs: List[LIFESPAN_FUNC] = []
|
|
self._shutdown_funcs: List[LIFESPAN_FUNC] = []
|
|
|
|
def on_startup(self, func: LIFESPAN_FUNC) -> LIFESPAN_FUNC:
|
|
self._startup_funcs.append(func)
|
|
return func
|
|
|
|
def on_shutdown(self, func: LIFESPAN_FUNC) -> LIFESPAN_FUNC:
|
|
self._shutdown_funcs.append(func)
|
|
return func
|
|
|
|
@staticmethod
|
|
async def _run_lifespan_func(
|
|
funcs: List[LIFESPAN_FUNC],
|
|
) -> None:
|
|
for func in funcs:
|
|
if is_coroutine_callable(func):
|
|
await cast(ASYNC_LIFESPAN_FUNC, func)()
|
|
else:
|
|
await run_sync(cast(SYNC_LIFESPAN_FUNC, func))()
|
|
|
|
async def startup(self) -> None:
|
|
if self._startup_funcs:
|
|
await self._run_lifespan_func(self._startup_funcs)
|
|
|
|
async def shutdown(self) -> None:
|
|
if self._shutdown_funcs:
|
|
await self._run_lifespan_func(self._shutdown_funcs)
|
|
|
|
async def __aenter__(self) -> None:
|
|
await self.startup()
|
|
|
|
async def __aexit__(self, exc_type, exc_val, exc_tb) -> None:
|
|
await self.shutdown()
|