2021-11-12 20:55:59 +08:00
|
|
|
import inspect
|
2021-11-16 18:30:16 +08:00
|
|
|
from typing import Any, Dict, Callable
|
2021-11-12 20:55:59 +08:00
|
|
|
|
2021-11-14 18:51:23 +08:00
|
|
|
from loguru import logger
|
|
|
|
from pydantic.typing import ForwardRef, evaluate_forwardref
|
2021-11-12 20:55:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature:
|
|
|
|
signature = inspect.signature(call)
|
|
|
|
globalns = getattr(call, "__globals__", {})
|
|
|
|
typed_params = [
|
|
|
|
inspect.Parameter(
|
|
|
|
name=param.name,
|
|
|
|
kind=param.kind,
|
|
|
|
default=param.default,
|
|
|
|
annotation=get_typed_annotation(param, globalns),
|
|
|
|
) for param in signature.parameters.values()
|
|
|
|
]
|
|
|
|
typed_signature = inspect.Signature(typed_params)
|
|
|
|
return typed_signature
|
|
|
|
|
|
|
|
|
|
|
|
def get_typed_annotation(param: inspect.Parameter, globalns: Dict[str,
|
|
|
|
Any]) -> Any:
|
|
|
|
annotation = param.annotation
|
|
|
|
if isinstance(annotation, str):
|
|
|
|
annotation = ForwardRef(annotation)
|
2021-11-14 18:51:23 +08:00
|
|
|
try:
|
|
|
|
annotation = evaluate_forwardref(annotation, globalns, globalns)
|
|
|
|
except Exception as e:
|
|
|
|
logger.opt(colors=True, exception=e).warning(
|
|
|
|
f"Unknown ForwardRef[\"{param.annotation}\"] for parameter {param.name}"
|
|
|
|
)
|
|
|
|
return inspect.Parameter.empty
|
2021-11-12 20:55:59 +08:00
|
|
|
return annotation
|