Spaces:
Sleeping
Sleeping
File size: 10,857 Bytes
bab1185 86deab0 bab1185 | 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 | #!/usr/bin/env python3
"""
QCrypt RNG - Unified Startup Script
Starts the API server and Next.js frontend with automatic port detection.
"""
import sys
import os
import socket
import signal
import subprocess
import time
from pathlib import Path
PROJECT_ROOT = Path(__file__).resolve().parent.parent
VENV_PYTHON = PROJECT_ROOT / ".venv" / "bin" / "python"
FRONTEND_DIR = PROJECT_ROOT / "quantum-oracle-ui"
# Default ports
API_DEFAULT_PORT = 8000
UI_DEFAULT_PORT = 3000
# Colour helpers (ANSI)
BOLD = "\033[1m"
CYAN = "\033[96m"
GREEN = "\033[92m"
YELLOW = "\033[93m"
RED = "\033[91m"
DIM = "\033[2m"
RESET = "\033[0m"
# ββ Port utilities ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def is_port_in_use(port: int) -> bool:
"""Check whether a TCP port is already bound."""
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.settimeout(0.5)
return s.connect_ex(("127.0.0.1", port)) == 0
def find_available_port(preferred: int, max_tries: int = 20) -> int:
"""Return *preferred* if free, otherwise scan upward until a free port is found."""
port = preferred
for _ in range(max_tries):
if not is_port_in_use(port):
return port
port += 1
# Last-resort: ask the OS for an ephemeral port
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind(("", 0))
return s.getsockname()[1]
def get_pid_on_port(port: int) -> str | None:
"""Best-effort attempt to find the PID listening on *port*."""
try:
out = subprocess.check_output(
["ss", "-tlnp"], stderr=subprocess.DEVNULL, text=True
)
for line in out.splitlines():
if f":{port}" in line:
# extract pid from pid=XXXX
for part in line.split(","):
if "pid=" in part:
return part.split("pid=")[1].split(",")[0].rstrip(")")
except Exception:
pass
return None
# ββ Banner ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def print_banner():
print(f"""
{BOLD}{CYAN}ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β QCrypt RNG β Unified Startup β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ{RESET}
""")
def print_service_info(name: str, port: int, preferred: int, url: str):
if port == preferred:
status = f"{GREEN}port {port}{RESET}"
else:
status = f"{YELLOW}port {port}{RESET} {DIM}({preferred} was in use){RESET}"
print(f" {BOLD}{name}{RESET} {status}")
print(f" {DIM}{url}{RESET}")
# ββ Process management ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
children: list[subprocess.Popen] = []
def cleanup(sig=None, frame=None):
print(f"\n{YELLOW}Shutting down services...{RESET}")
for proc in children:
try:
os.killpg(os.getpgid(proc.pid), signal.SIGTERM)
except (ProcessLookupError, OSError):
pass
for proc in children:
try:
proc.wait(timeout=5)
except subprocess.TimeoutExpired:
proc.kill()
print(f"{GREEN}All services stopped.{RESET}")
sys.exit(0)
signal.signal(signal.SIGINT, cleanup)
signal.signal(signal.SIGTERM, cleanup)
# ββ Service starters ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def start_api(port: int) -> subprocess.Popen:
python = str(VENV_PYTHON) if VENV_PYTHON.exists() else sys.executable
env = {**os.environ, "API_PORT": str(port)}
proc = subprocess.Popen(
[
python, "-m", "uvicorn", "app.main:app",
"--host", "0.0.0.0",
"--port", str(port),
"--reload",
"--log-level", "info",
],
cwd=str(PROJECT_ROOT),
env=env,
preexec_fn=os.setsid,
)
return proc
def clear_next_lock():
"""Remove the .next/dev/lock file and kill any orphaned next dev process."""
lock = FRONTEND_DIR / ".next" / "dev" / "lock"
if lock.exists():
print(f" {YELLOW}Removing stale Next.js lock file{RESET}")
try:
lock.unlink()
except OSError:
pass
# Kill any lingering `next dev` process
try:
out = subprocess.check_output(["pgrep", "-f", "next dev"], text=True, stderr=subprocess.DEVNULL)
for pid in out.strip().splitlines():
pid = pid.strip()
if pid:
print(f" {YELLOW}Killing orphaned next dev process (pid {pid}){RESET}")
try:
os.kill(int(pid), signal.SIGTERM)
except (ProcessLookupError, OSError):
pass
time.sleep(1)
except (subprocess.CalledProcessError, FileNotFoundError):
pass
def resolve_frontend_port(preferred: int) -> int:
"""Use the frontend's own find-port.js for consistent port resolution."""
find_port_script = FRONTEND_DIR / "find-port.js"
if find_port_script.exists():
try:
result = subprocess.check_output(
["node", str(find_port_script), str(preferred)],
text=True, timeout=5,
)
return int(result.strip())
except Exception:
pass
return find_available_port(preferred)
def start_frontend(port: int, api_port: int) -> subprocess.Popen:
clear_next_lock()
npm = "npm"
env = {
**os.environ,
"PORT": str(port),
"NEXT_PUBLIC_API_BASE_URL": f"http://localhost:{api_port}/api/v2",
}
proc = subprocess.Popen(
[npm, "run", "dev", "--", "--port", str(port)],
cwd=str(FRONTEND_DIR),
env=env,
preexec_fn=os.setsid,
)
return proc
def wait_for_port(port: int, label: str, timeout: int = 30):
"""Block until *port* accepts connections or *timeout* seconds elapse."""
start = time.time()
while time.time() - start < timeout:
if is_port_in_use(port):
return True
time.sleep(0.5)
print(f" {RED}Timed out waiting for {label} on port {port}{RESET}")
return False
# ββ Main ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
print_banner()
# ββ Resolve ports βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"{BOLD}Checking ports...{RESET}\n")
api_port = find_available_port(API_DEFAULT_PORT)
if api_port != API_DEFAULT_PORT:
pid = get_pid_on_port(API_DEFAULT_PORT)
extra = f" (pid {pid})" if pid else ""
print(f" {YELLOW}Port {API_DEFAULT_PORT} in use{extra} β API will use {api_port}{RESET}")
else:
print(f" {GREEN}Port {api_port} available for API{RESET}")
ui_port = resolve_frontend_port(UI_DEFAULT_PORT)
if ui_port != UI_DEFAULT_PORT:
pid = get_pid_on_port(UI_DEFAULT_PORT)
extra = f" (pid {pid})" if pid else ""
print(f" {YELLOW}Port {UI_DEFAULT_PORT} in use{extra} β UI will use {ui_port}{RESET}")
else:
print(f" {GREEN}Port {ui_port} available for UI{RESET}")
# ββ Start services ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n{BOLD}Starting services...{RESET}\n")
api_proc = start_api(api_port)
children.append(api_proc)
print(f" {DIM}API server starting...{RESET}")
has_frontend = FRONTEND_DIR.exists() and (FRONTEND_DIR / "package.json").exists()
ui_proc = None
if has_frontend:
ui_proc = start_frontend(ui_port, api_port)
children.append(ui_proc)
print(f" {DIM}Next.js frontend starting...{RESET}")
else:
print(f" {YELLOW}No frontend found at {FRONTEND_DIR} β skipping{RESET}")
# ββ Wait for readiness ββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n{DIM}Waiting for services to become ready...{RESET}\n")
api_ready = wait_for_port(api_port, "API", timeout=30)
ui_ready = True
if has_frontend:
ui_ready = wait_for_port(ui_port, "UI", timeout=45)
# ββ Summary βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n{BOLD}{CYAN}{'β' * 60}{RESET}")
print(f"{BOLD} Services running:{RESET}\n")
if api_ready:
print_service_info("API Server", api_port, API_DEFAULT_PORT,
f"http://localhost:{api_port}")
print(f" {DIM}Docs: http://localhost:{api_port}/docs{RESET}")
print(f" {DIM}ReDoc: http://localhost:{api_port}/redoc{RESET}")
else:
print(f" {RED}API Server FAILED TO START{RESET}")
print()
if has_frontend:
if ui_ready:
print_service_info("Frontend", ui_port, UI_DEFAULT_PORT,
f"http://localhost:{ui_port}")
else:
print(f" {RED}Frontend FAILED TO START{RESET}")
print(f"\n{BOLD}{CYAN}{'β' * 60}{RESET}")
print(f"\n {DIM}Press Ctrl+C to stop all services{RESET}\n")
# ββ Keep alive ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
try:
while True:
# Check if children are still alive
for proc in children:
ret = proc.poll()
if ret is not None:
print(f"\n {RED}Process {proc.pid} exited with code {ret}{RESET}")
time.sleep(2)
except KeyboardInterrupt:
cleanup()
if __name__ == "__main__":
main()
|