- 删除 ValidationQueue 双轨持久化队列,替换为纯内存 AsyncWorkerPool - 引入统一后台任务框架 JobExecutor(Job/CrawlJob/ValidateAllJob) - 新增 PluginRunner 统一插件执行(超时、重试、健康检查、统计) - 重构 SchedulerService 职责收敛为仅定时触发 ValidateAllJob - 使用 AsyncExitStack 重构 lifespan,安全管理长生命周期资源 - 路由层瘦身 50%+,业务异常上抛由全局中间件统一处理 - 实现设置全热更新(WorkerPool 并发、Validator 超时即时生效) - 前端 Store 强制写后重新拉取,消除乐观更新数据不同步 - 删除 queue.py / task_repo.py / task_service.py - 新增 execution 单元测试,全部 85 个测试通过
137 lines
5.0 KiB
Python
137 lines
5.0 KiB
Python
"""数据库连接管理 - 使用上下文管理器,避免全局单例连接泄漏"""
|
|
import os
|
|
import aiosqlite
|
|
from contextlib import asynccontextmanager
|
|
from typing import AsyncIterator
|
|
from app.core.config import settings
|
|
from app.core.log import logger
|
|
|
|
|
|
DB_PATH = os.path.join(settings.base_dir, settings.db_path)
|
|
|
|
|
|
def ensure_db_dir():
|
|
db_dir = os.path.dirname(DB_PATH)
|
|
if db_dir and not os.path.exists(db_dir):
|
|
os.makedirs(db_dir, exist_ok=True)
|
|
|
|
|
|
async def init_db():
|
|
"""初始化数据库表结构(支持迁移)"""
|
|
ensure_db_dir()
|
|
async with aiosqlite.connect(DB_PATH) as db:
|
|
await db.execute("PRAGMA journal_mode=WAL")
|
|
await db.execute("PRAGMA synchronous=NORMAL")
|
|
await db.execute("PRAGMA cache_size=-64000")
|
|
await db.execute("PRAGMA temp_store=MEMORY")
|
|
|
|
await db.execute("""
|
|
CREATE TABLE IF NOT EXISTS proxies (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
ip TEXT NOT NULL,
|
|
port INTEGER NOT NULL,
|
|
protocol TEXT DEFAULT 'http',
|
|
score INTEGER DEFAULT 10,
|
|
response_time_ms REAL,
|
|
last_check TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
UNIQUE(ip, port)
|
|
)
|
|
""")
|
|
|
|
# 迁移:如果旧表缺少 response_time_ms 列,则添加
|
|
try:
|
|
await db.execute("SELECT response_time_ms FROM proxies LIMIT 1")
|
|
except Exception:
|
|
await db.execute("ALTER TABLE proxies ADD COLUMN response_time_ms REAL")
|
|
logger.info("Migrated: added response_time_ms column")
|
|
|
|
# 迁移:如果旧表缺少 created_at 列,则添加
|
|
try:
|
|
await db.execute("SELECT created_at FROM proxies LIMIT 1")
|
|
except Exception:
|
|
await db.execute("ALTER TABLE proxies ADD COLUMN created_at TIMESTAMP")
|
|
await db.execute("UPDATE proxies SET created_at = CURRENT_TIMESTAMP WHERE created_at IS NULL")
|
|
logger.info("Migrated: added created_at column")
|
|
|
|
await db.execute("CREATE INDEX IF NOT EXISTS idx_score ON proxies(score)")
|
|
await db.execute("CREATE INDEX IF NOT EXISTS idx_protocol ON proxies(protocol)")
|
|
await db.execute("CREATE INDEX IF NOT EXISTS idx_last_check ON proxies(last_check)")
|
|
await db.execute("CREATE INDEX IF NOT EXISTS idx_ip_port ON proxies(ip, port)")
|
|
|
|
# 插件设置表
|
|
await db.execute("""
|
|
CREATE TABLE IF NOT EXISTS plugin_settings (
|
|
plugin_id TEXT PRIMARY KEY,
|
|
enabled INTEGER DEFAULT 1,
|
|
config_json TEXT DEFAULT '{}',
|
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
)
|
|
""")
|
|
|
|
# 迁移:为旧版 plugin_settings 表增加 config_json 列
|
|
try:
|
|
await db.execute("SELECT config_json FROM plugin_settings LIMIT 1")
|
|
except Exception:
|
|
await db.execute("ALTER TABLE plugin_settings ADD COLUMN config_json TEXT DEFAULT '{}'")
|
|
logger.info("Migrated: added config_json column to plugin_settings")
|
|
|
|
# 迁移:为旧版 plugin_settings 表增加 stats_json 列
|
|
try:
|
|
await db.execute("SELECT stats_json FROM plugin_settings LIMIT 1")
|
|
except Exception:
|
|
await db.execute("ALTER TABLE plugin_settings ADD COLUMN stats_json TEXT DEFAULT '{}'")
|
|
logger.info("Migrated: added stats_json column to plugin_settings")
|
|
|
|
# 验证任务队列表已废弃,不再创建;旧表保留在数据库中不影响功能
|
|
|
|
# 系统设置表
|
|
await db.execute("""
|
|
CREATE TABLE IF NOT EXISTS settings (
|
|
key TEXT PRIMARY KEY,
|
|
value TEXT NOT NULL,
|
|
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
)
|
|
""")
|
|
|
|
await db.commit()
|
|
logger.info("Database initialized")
|
|
|
|
|
|
@asynccontextmanager
|
|
async def get_db() -> AsyncIterator[aiosqlite.Connection]:
|
|
"""获取数据库连接的异步上下文管理器"""
|
|
ensure_db_dir()
|
|
db = await aiosqlite.connect(DB_PATH)
|
|
try:
|
|
await db.execute("PRAGMA journal_mode=WAL")
|
|
await db.execute("PRAGMA synchronous=NORMAL")
|
|
yield db
|
|
finally:
|
|
await db.close()
|
|
|
|
|
|
@asynccontextmanager
|
|
async def transaction() -> AsyncIterator[aiosqlite.Connection]:
|
|
"""获取带有显式事务控制的数据库连接
|
|
|
|
用法:
|
|
async with transaction() as db:
|
|
await repo.update(db, ...)
|
|
# 如果抛出异常,自动 rollback
|
|
"""
|
|
ensure_db_dir()
|
|
db = await aiosqlite.connect(DB_PATH)
|
|
try:
|
|
await db.execute("PRAGMA journal_mode=WAL")
|
|
await db.execute("PRAGMA synchronous=NORMAL")
|
|
await db.execute("BEGIN")
|
|
yield db
|
|
await db.commit()
|
|
except Exception:
|
|
await db.rollback()
|
|
raise
|
|
finally:
|
|
await db.close()
|