mirror of
https://github.com/KenanZhu/AutoLibrary.git
synced 2026-06-18 07:23:03 +08:00
02463f087e
- 为 _showTrace 方法添加 no_log 参数,支持控制日志写入 - 在主窗口各关键操作点添加日志输出 - 优化错误信息输出策略,分离 trace 和 log 输出 - 改进配置目录初始化过程的日志记录
59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Copyright (c) 2025 - 2026 KenanZhu.
|
|
All rights reserved.
|
|
|
|
This software is provided "as is", without any warranty of any kind.
|
|
You may use, modify, and distribute this file under the terms of the MIT License.
|
|
See the LICENSE file for details.
|
|
"""
|
|
import os
|
|
|
|
from PySide6.QtCore import QStandardPaths, QDir
|
|
|
|
from utils.ConfigManager import instance as configInstance
|
|
from utils.LogManager import instance as logInstance
|
|
|
|
|
|
def initializeConfigManager(
|
|
) -> bool:
|
|
|
|
logger = logInstance().getLogger("AppInitializer")
|
|
|
|
app_dir = QStandardPaths.writableLocation(QStandardPaths.StandardLocation.AppDataLocation)
|
|
old_config_dir = os.path.join(app_dir, "config")
|
|
new_config_dir = os.path.join(app_dir, "configs")
|
|
if QDir(old_config_dir).exists(): # old config dir exists
|
|
#we rename it to compatible with new version
|
|
logger.info("存在旧配置目录 %s,将其重命名为 %s", old_config_dir, new_config_dir)
|
|
if not QDir().rename(old_config_dir, new_config_dir):
|
|
logger.error("重命名旧配置目录 %s 到 %s 失败", old_config_dir, new_config_dir)
|
|
return False
|
|
elif not QDir(new_config_dir).exists():
|
|
logger.info("初始化配置目录 %s", new_config_dir)
|
|
if not QDir().mkpath(new_config_dir):
|
|
logger.error("创建配置目录 %s 失败", new_config_dir)
|
|
return False
|
|
configInstance(new_config_dir)
|
|
return True
|
|
|
|
def initializeLogManager(
|
|
) -> bool:
|
|
|
|
app_dir = QStandardPaths.writableLocation(QStandardPaths.StandardLocation.AppDataLocation)
|
|
log_dir = os.path.join(app_dir, "logs")
|
|
if not QDir(log_dir).exists():
|
|
if not QDir().mkpath(log_dir):
|
|
return False
|
|
logInstance(log_dir)
|
|
return True
|
|
|
|
def initializeApp(
|
|
) -> bool:
|
|
|
|
if not initializeLogManager():
|
|
return False
|
|
if not initializeConfigManager():
|
|
return False
|
|
return True
|