105 lines
2.7 KiB
Python
105 lines
2.7 KiB
Python
"""
|
||
NEO Bot 主程序入口
|
||
|
||
负责启动 WebSocket 连接,初始化插件系统,并提供热重载功能。
|
||
"""
|
||
import asyncio
|
||
import os
|
||
import time
|
||
|
||
from watchdog.observers import Observer
|
||
from watchdog.events import FileSystemEventHandler
|
||
|
||
from core import WS
|
||
from core.plugin_manager import load_all_plugins
|
||
#from core.redis_manager import redis_client
|
||
|
||
|
||
class PluginReloadHandler(FileSystemEventHandler):
|
||
"""
|
||
文件变更处理器,用于热重载插件
|
||
|
||
继承自 watchdog.events.FileSystemEventHandler,
|
||
监听 base_plugins 目录下的文件变化,并触发插件重载。
|
||
"""
|
||
def __init__(self):
|
||
"""
|
||
初始化处理器
|
||
|
||
设置冷却时间,防止短时间内多次触发重载。
|
||
"""
|
||
self.last_reload_time = 0
|
||
self.cooldown = 1.0 # 冷却时间,防止短时间内多次重载
|
||
|
||
def on_any_event(self, event):
|
||
"""
|
||
处理所有文件事件
|
||
|
||
:param event: watchdog 事件对象
|
||
"""
|
||
if event.is_directory:
|
||
return
|
||
|
||
# 只监控 py 文件
|
||
if not event.src_path.endswith(".py"):
|
||
return
|
||
|
||
# 过滤掉一些临时文件
|
||
if "__pycache__" in event.src_path:
|
||
return
|
||
|
||
# 简单的防抖动
|
||
current_time = time.time()
|
||
if current_time - self.last_reload_time < self.cooldown:
|
||
return
|
||
|
||
self.last_reload_time = current_time
|
||
|
||
print(f"\n[HotReload] 检测到文件变更: {event.src_path}")
|
||
print("[HotReload] 正在重载插件...")
|
||
|
||
try:
|
||
# 重新扫描并加载插件
|
||
load_all_plugins()
|
||
print("[HotReload] 插件重载完成")
|
||
except Exception as e:
|
||
print(f"[HotReload] 重载失败: {e}")
|
||
|
||
|
||
async def main():
|
||
"""
|
||
主函数
|
||
|
||
1. 启动文件监控(热重载)
|
||
2. 初始化 WebSocket 客户端
|
||
3. 建立连接并保持运行
|
||
"""
|
||
# 首次加载插件
|
||
load_all_plugins()
|
||
|
||
# 启动文件监控
|
||
# 监控 plugins 目录
|
||
plugin_path = os.path.join(os.path.dirname(__file__), "plugins")
|
||
|
||
event_handler = PluginReloadHandler()
|
||
observer = Observer()
|
||
|
||
if os.path.exists(plugin_path):
|
||
observer.schedule(event_handler, plugin_path, recursive=True)
|
||
observer.start()
|
||
print(f"[HotReload] 已启动插件热重载监控: {plugin_path}")
|
||
else:
|
||
print(f"[HotReload] 警告: 插件目录不存在 {plugin_path}")
|
||
|
||
try:
|
||
bot = WS()
|
||
await bot.connect()
|
||
finally:
|
||
if observer.is_alive():
|
||
observer.stop()
|
||
observer.join()
|
||
|
||
|
||
if __name__ == "__main__":
|
||
asyncio.run(main())
|