perf: 添加JSON配置文件语法检查 (#796)

This commit is contained in:
RockChinQ 2024-05-29 21:11:21 +08:00
parent 96832b6f7d
commit f81808d239
3 changed files with 10 additions and 16 deletions

View File

@ -37,7 +37,10 @@ class JSONConfigFile(file_model.ConfigFile):
self.template_data = json.load(f)
with open(self.config_file_name, "r", encoding="utf-8") as f:
try:
cfg = json.load(f)
except json.JSONDecodeError as e:
raise Exception(f"配置文件 {self.config_file_name} 语法错误: {e}")
if completion:

View File

@ -27,6 +27,7 @@ async def make_app() -> app.Application:
for stage_name in stage_order:
stage_cls = stage.preregistered_stages[stage_name]
stage_inst = stage_cls()
await stage_inst.run(ap)
await ap.initialize()
@ -35,5 +36,8 @@ async def make_app() -> app.Application:
async def main():
try:
app_inst = await make_app()
await app_inst.run()
except Exception as e:
print(f"应用启动失败: {e}")

View File

@ -8,16 +8,3 @@ from ...config.impls import pymodule
load_python_module_config = config_mgr.load_python_module_config
load_json_config = config_mgr.load_json_config
async def override_config_manager(cfg_mgr: config_mgr.ConfigManager) -> list[str]:
override_json = json.load(open("override.json", "r", encoding="utf-8"))
overrided = []
config = cfg_mgr.data
for key in override_json:
if key in config:
config[key] = override_json[key]
overrided.append(key)
return overrided