-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdev.py
More file actions
387 lines (327 loc) · 15 KB
/
Copy pathdev.py
File metadata and controls
387 lines (327 loc) · 15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
import os
import platform
import shutil
import subprocess
import sys
import threading
import time
# Windows 中文 locale 默认 stdout 为 GBK,无法直接打印子进程返回的 UTF-8 诊断
# (如 asyncpg 的 WinError 1225 中文说明),会抛 UnicodeEncodeError 直接崩 dev.py。
# 在启动时统一将自己的 stdout / stderr reconfigure 为 utf-8 + replace 堆叠策略,
# 比在每个 log() 中重复防御更干净。
for _stream in (sys.stdout, sys.stderr):
_reconfigure = getattr(_stream, "reconfigure", None)
_reconfigure and _reconfigure(encoding="utf-8", errors="replace")
# 定义项目路径
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
BACKEND_DIR = os.path.join(BASE_DIR, "backend")
FRONTEND_DIR = os.path.join(BASE_DIR, "frontend")
ADMIN_DIR = os.path.join(BACKEND_DIR, "admin")
# 颜色代码(跨平台可能需要 colorama,这里为了简单只做基本处理或不加)
PROCESSES = []
# AgentScope 2.0 要求 Python >= 3.11;ripgrep 从源码编译需 Rust >= 1.85
_MIN_PYTHON = (3, 11)
def log(message, prefix="[SYSTEM]"):
print(f"{prefix} {message}")
def _check_python_version() -> None:
"""启动前 fail-fast:Python 版本 < 3.11 直接报错退出。
AgentScope 2.0 在 PyPI 元数据里强制 Requires-Python >= 3.11,
pip 会静默跳过不兼容版本,最后报 "Could not find a version”。
提前检测能避免开发者走 5+ 分钟弯路。
"""
if sys.version_info >= _MIN_PYTHON:
return
current = platform.python_version()
required = ".".join(map(str, _MIN_PYTHON))
log(
f"Python {current} 不满足要求;AgentScope 2.0 需 Python >= {required}",
"[BACKEND]",
)
log("Windows : winget install -e --id Python.Python.3.12", "[BACKEND]")
log("macOS : brew install python@3.12", "[BACKEND]")
log("Linux : 参考 https://www.python.org/downloads/ 或包管理器", "[BACKEND]")
log("安装完后请删除 backend/venv 后重新运行本脚本", "[BACKEND]")
sys.exit(1)
def _check_rust_toolchain() -> None:
"""警告级检测:本地首次 pip install 遇上 ripgrep 编译会需 Rust 工具链。
不 fail-fast:部分平台(如 Windows + cp312 wheel 已发布)可能不需本地编译,
仅提示避免 pip 报错后才定位问题。
"""
cargo = shutil.which("cargo")
if cargo:
return
log("未检测到 cargo;agentscope 2.0 首次安装可能需本地编译 ripgrep。", "[BACKEND]")
log("若随后 pip install 报错 'feature edition2024 is required',请安装 Rust:", "[BACKEND]")
log(" Windows : winget install -e --id Rustlang.Rustup; rustup default stable", "[BACKEND]")
log(" macOS/Linux: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh", "[BACKEND]")
def get_python_exec():
"""获取虚拟环境中的 python 解释器路径"""
if sys.platform == "win32":
return os.path.join(BACKEND_DIR, "venv", "Scripts", "python.exe")
return os.path.join(BACKEND_DIR, "venv", "bin", "python")
def _venv_python_version(python_exec: str) -> tuple[int, int] | None:
"""读取现有 venv 里的 python 版本,以 (major, minor) 元组返回;读不到则 None。"""
if not os.path.exists(python_exec):
return None
try:
out = subprocess.check_output(
[python_exec, "-c", "import sys; print(sys.version_info[0], sys.version_info[1])"],
stderr=subprocess.STDOUT,
text=True,
timeout=10,
).strip().split()
return int(out[0]), int(out[1])
except Exception: # noqa: BLE001 — 检测失败不该阻断主流程
return None
def setup_backend():
"""检查并安装后端依赖"""
log("Checking backend environment...", "[BACKEND]")
_check_python_version()
_check_rust_toolchain()
venv_path = os.path.join(BACKEND_DIR, "venv")
python_exec = get_python_exec()
# 如果已存在的 venv 是 Python < 3.11(旧 1.0 遗留),提示手动重建
existing_ver = _venv_python_version(python_exec)
if existing_ver is not None and existing_ver < _MIN_PYTHON:
required = ".".join(map(str, _MIN_PYTHON))
log(
f"当前 venv 是 Python {existing_ver[0]}.{existing_ver[1]},不满足 AgentScope 2.0 (>= {required})",
"[BACKEND]",
)
log(
f"请删除后重建:\n"
f" Remove-Item -Recurse -Force \"{venv_path}\" # PowerShell\n"
f" rm -rf \"{venv_path}\" # bash\n"
f"随后使用 Python >= {required} 重新运行本脚本即可",
"[BACKEND]",
)
sys.exit(1)
if not os.path.exists(venv_path):
log("Creating virtual environment...", "[BACKEND]")
subprocess.check_call([sys.executable, "-m", "venv", "venv"], cwd=BACKEND_DIR)
# 强制 pip 以 UTF-8 读取 requirements.txt,避免 Windows 中文系统默认 GBK 解码失败
# (requirements.txt 含中文注释,旧版 pip 在非 UTF-8 locale 下会报 UnicodeDecodeError)
pip_env = os.environ.copy()
pip_env["PYTHONUTF8"] = "1"
pip_env["PYTHONIOENCODING"] = "utf-8"
# 先升级 pip 自身(旧版 pip 23.x 在 Windows 中文环境读取含非 ASCII 的 requirements 会失败)
log("Upgrading pip...", "[BACKEND]")
try:
subprocess.check_call(
[python_exec, "-m", "pip", "install", "--upgrade", "pip"],
cwd=BACKEND_DIR,
env=pip_env,
)
except subprocess.CalledProcessError:
log("Warning: pip upgrade failed, continuing with current version.", "[BACKEND]")
log("Installing/Updating dependencies...", "[BACKEND]")
try:
subprocess.check_call(
[python_exec, "-m", "pip", "install", "-r", "requirements.txt"],
cwd=BACKEND_DIR,
env=pip_env,
)
except subprocess.CalledProcessError:
log("Failed to install backend dependencies. Please check requirements.txt.", "[BACKEND]")
sys.exit(1)
return python_exec
# 数据库不可达时向开发者展示的 3 条 fallback 指引(映射表,避免 if 分支堆叠)
# body 的每一行统一由 _emit_db_fallback_hints 控制缩进,不在字面量里预填空格。
_DB_FALLBACK_HINTS = (
("1", "Docker 一键启动(推荐)", [
"docker compose -f deploy/docker-compose.dev.yml up -d",
]),
("2", "本机装 PostgreSQL 18", [
"Windows : winget install -e --id PostgreSQL.PostgreSQL.18",
"macOS : brew install postgresql@18 && brew services start postgresql@18",
"Linux : 按发行版包管理器安装",
"随后建库:createdb -U postgres kunflix_db",
]),
("3", "临时降级到 SQLite", [
"在 backend/.env 里设置:",
"DATABASE_URL=sqlite+aiosqlite:///./kunflix.db",
]),
)
def _check_database_connectivity(python_exec):
"""启动前探测 DATABASE_URL 是否可达;不可达时 fail-fast 并给出修复引导。
通过独立子进程调用 backend/scripts/probe_db.py,让 backend venv 决定用哪个
驱动(asyncpg / aiosqlite)。返回码语义见 probe_db.main。
"""
log("Probing database connectivity...", "[DATABASE]")
probe_script = os.path.join(BACKEND_DIR, "scripts", "probe_db.py")
try:
result = subprocess.run(
[python_exec, probe_script],
cwd=BACKEND_DIR,
capture_output=True,
text=True,
timeout=15,
encoding="utf-8",
errors="replace",
)
except subprocess.TimeoutExpired:
log("Probe timed out after 15s (network / DNS issue?)", "[DATABASE]")
_emit_db_fallback_hints()
sys.exit(1)
# 返回码 -> 处理策略(映射表:0 通过 / 2 跳过 / 其余 fail-fast)
handlers = {
0: lambda: log("Database is reachable.", "[DATABASE]"),
2: lambda: log(
"Probe skipped (backend deps not ready); will rely on Alembic to surface errors.",
"[DATABASE]",
),
}
action = handlers.get(result.returncode)
if action is not None:
action()
return
# 不可达:把 probe 的诊断行透传出来,再打 3 条 fallback
diagnostic = (result.stderr or "").strip() or "(no diagnostic output)"
for line in diagnostic.splitlines():
log(line, "[DATABASE]")
_emit_db_fallback_hints()
sys.exit(1)
def _emit_db_fallback_hints():
log("", "[DATABASE]")
log("Cannot connect to the database. Pick one of the fixes below:", "[DATABASE]")
for tag, title, lines in _DB_FALLBACK_HINTS:
log(f" {tag}) {title}", "[DATABASE]")
for body_line in lines:
log(f" {body_line}", "[DATABASE]")
log("", "[DATABASE]")
def init_database(python_exec):
"""初始化数据库(执行迁移和种子数据),幂等操作"""
log("Initializing database...", "[DATABASE]")
seed_script = os.path.join(BACKEND_DIR, "scripts", "seed_db.py")
try:
subprocess.check_call([python_exec, seed_script], cwd=BACKEND_DIR)
log("Database initialization completed.", "[DATABASE]")
except subprocess.CalledProcessError as e:
log(f"Database initialization failed: {e}", "[DATABASE]")
sys.exit(1)
def _ensure_node_deps(project_dir, tag):
"""幂等安装前端依赖:仅在 node_modules 缺失时跳 npm ci,避免每次启动污染 package-lock.json。
- node_modules 存在:跳过,直接用现有依赖启动。
- node_modules 缺失:用 npm ci(严格按 package-lock.json 安装,不修改 lock);
如果 lock 与 package.json 不一致导致 npm ci 失败,提示开发者手动处理,
不自动 fallback 到 npm install(避免污染跨平台 lock,参见 PR #121 教训)。
"""
node_modules = os.path.join(project_dir, "node_modules")
if os.path.exists(node_modules):
log("node_modules already present, skip install (use `npm ci` manually if you pulled lock changes).", tag)
return
log("Installing dependencies via `npm ci` (first run)...", tag)
try:
subprocess.check_call("npm ci --no-audit --no-fund", shell=True, cwd=project_dir)
except subprocess.CalledProcessError:
log(
"`npm ci` failed. This usually means package.json is out of sync with package-lock.json.\n"
" Run `npm install` manually in this directory to update the lock file,\n"
" then review the lock diff before committing (preserve cross-platform optional deps).",
tag,
)
sys.exit(1)
def setup_frontend():
"""检查并安装前端依赖"""
log("Checking frontend environment...", "[FRONTEND]")
_ensure_node_deps(FRONTEND_DIR, "[FRONTEND]")
def run_process(command, cwd, prefix):
"""运行一个子进程并实时打印输出"""
process = None
try:
# Use shell=True for node commands, but for uvicorn/python it's better to pass it as a list
# or use CREATE_NEW_PROCESS_GROUP on windows to avoid signal propagation issues during reload.
kwargs = {
"cwd": cwd,
"shell": True,
"stdout": subprocess.PIPE,
"stderr": subprocess.STDOUT,
"text": True,
"bufsize": 1,
"encoding": 'utf-8',
"errors": 'replace'
}
process = subprocess.Popen(command, **kwargs)
PROCESSES.append(process)
# 实时读取输出
for line in process.stdout:
print(f"{prefix} {line.strip()}")
process.wait()
except Exception as e:
log(f"Error running process: {e}", prefix)
finally:
if process and process in PROCESSES:
PROCESSES.remove(process)
def main():
log("Starting development environment setup...")
# 1. Setup Phase (Blocking)
python_exec = setup_backend()
setup_frontend()
# Setup Admin Dashboard
log("Checking admin dashboard environment...", "[ADMIN]")
_ensure_node_deps(ADMIN_DIR, "[ADMIN]")
# 在建库前先探测连通性——连不上就 fail-fast 给出 3 条修复命令,
# 避免 seed_db.py 内部 asyncpg 抛出难以定位的深层堆栈。
_check_database_connectivity(python_exec)
# Initialize database (migrations + seed data), idempotent operation
init_database(python_exec)
log("Setup complete. Starting servers...")
# 2. Start Phase (Parallel)
# Backend Command
# Use asyncio loop for Windows compatibility with asyncpg
# Exclude skills/active_skills from watchfiles to prevent reload loop when toggling skills
# Must use absolute path: uvicorn FileFilter compares exclude_dir against absolute paths from watchfiles
active_skills_abs = os.path.join(BACKEND_DIR, "skills", "active_skills")
# SQLite WAL 模式下 kunflix.db-wal/-shm 会随读写频繁变动;uvicorn 层
# 通过 FileFilter 兜底排除,watchfiles 层刷屏问题另在 main.py 抑制日志
reload_excludes = [
active_skills_abs,
"*.db",
"*.db-wal",
"*.db-shm",
]
exclude_flags = " ".join(f'--reload-exclude "{pat}"' for pat in reload_excludes)
backend_cmd = f'"{python_exec}" -m uvicorn main:app --reload {exclude_flags} --host 127.0.0.1 --port 8000 --loop asyncio'
# Frontend Command
frontend_cmd = "npm run dev"
# Admin Dashboard Command
admin_cmd = "npm run dev"
# 使用线程并发运行
# 注意:这里的 run_process 是阻塞的,所以需要放在线程里
t1 = threading.Thread(target=run_process, args=(backend_cmd, BACKEND_DIR, "[BACKEND]"))
t2 = threading.Thread(target=run_process, args=(frontend_cmd, FRONTEND_DIR, "[FRONTEND]"))
t3 = threading.Thread(target=run_process, args=(admin_cmd, ADMIN_DIR, "[ADMIN]"))
t1.daemon = True
t2.daemon = True
t3.daemon = True
t1.start()
t2.start()
t3.start()
try:
# Give processes a moment to start and be added to the PROCESSES list
time.sleep(2)
# Keep the main thread alive.
# Check if all processes have exited instead of just threads.
# In Windows, Uvicorn reload might cause the thread to finish or the process to restart.
while True:
# Re-fetch the length to ensure we don't prematurely exit
# if processes are still initializing.
if len(PROCESSES) > 0:
active_processes = [p for p in PROCESSES if p.poll() is None]
if not active_processes:
log("All processes exited. Stopping dev environment.", "[SYSTEM]")
break
time.sleep(1)
except KeyboardInterrupt:
log("Stopping servers...", "[SYSTEM]")
for p in list(PROCESSES):
try:
if sys.platform == "win32":
subprocess.run(["taskkill", "/F", "/T", "/PID", str(p.pid)], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
else:
p.terminate()
except Exception:
pass
sys.exit(0)
if __name__ == "__main__":
main()