mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08:00
* Update the ruff rules and format the code * Update the per-file-ignores * Update the ci * Update rules * Fix codes * Fix pagination * Update rules
62 lines
1.5 KiB
Python
62 lines
1.5 KiB
Python
import importlib
|
|
import inspect
|
|
|
|
from functools import lru_cache
|
|
from typing import Any, TypeVar
|
|
|
|
from backend.common.exception import errors
|
|
from backend.common.log import log
|
|
|
|
T = TypeVar('T')
|
|
|
|
|
|
@lru_cache(maxsize=512)
|
|
def import_module_cached(module_path: str) -> Any:
|
|
"""
|
|
缓存导入模块
|
|
|
|
:param module_path: 模块路径
|
|
:return:
|
|
"""
|
|
return importlib.import_module(module_path)
|
|
|
|
|
|
def dynamic_import_data_model(module_path: str) -> type[T]:
|
|
"""
|
|
动态导入数据模型
|
|
|
|
:param module_path: 模块路径,格式为 'module_path.class_name'
|
|
:return:
|
|
"""
|
|
try:
|
|
module_path, class_name = module_path.rsplit('.', 1)
|
|
module = import_module_cached(module_path)
|
|
return getattr(module, class_name)
|
|
except Exception as e:
|
|
log.error(f'动态导入数据模型失败:{e}')
|
|
raise errors.ServerError(msg='数据模型列动态解析失败,请联系系统超级管理员')
|
|
|
|
|
|
def get_model_objects(module_path: str) -> list[type] | None:
|
|
"""
|
|
获取模型对象
|
|
|
|
:param module_path: 模块路径
|
|
:return:
|
|
"""
|
|
try:
|
|
module = import_module_cached(module_path)
|
|
except ModuleNotFoundError:
|
|
log.warning(f'模块 {module_path} 中不包含模型对象')
|
|
return None
|
|
except Exception:
|
|
raise
|
|
|
|
classes = []
|
|
|
|
for _name, obj in inspect.getmembers(module):
|
|
if inspect.isclass(obj) and module_path in obj.__module__:
|
|
classes.append(obj)
|
|
|
|
return classes
|