63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Dedicated runtime service FastAPI surface."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from fastapi import FastAPI
|
|
|
|
from backend.api import runtime_router
|
|
from backend.api.runtime import get_runtime_state
|
|
from backend.apps.cors import add_cors_middleware
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
"""Create the runtime service app."""
|
|
app = FastAPI(
|
|
title="大时代 Runtime Service",
|
|
description="Runtime lifecycle and gateway service surface extracted from the monolith",
|
|
version="0.1.0",
|
|
)
|
|
|
|
add_cors_middleware(app)
|
|
|
|
@app.get("/health")
|
|
async def health_check() -> dict[str, object]:
|
|
"""Health check for the runtime service."""
|
|
runtime_state = get_runtime_state()
|
|
process = runtime_state.gateway_process
|
|
is_running = process is not None and process.poll() is None
|
|
return {
|
|
"status": "healthy",
|
|
"service": "runtime-service",
|
|
"gateway_running": is_running,
|
|
"gateway_port": runtime_state.gateway_port,
|
|
}
|
|
|
|
@app.get("/api/status")
|
|
async def api_status() -> dict[str, object]:
|
|
"""Service-level status payload for runtime orchestration."""
|
|
runtime_state = get_runtime_state()
|
|
process = runtime_state.gateway_process
|
|
is_running = process is not None and process.poll() is None
|
|
return {
|
|
"status": "operational",
|
|
"service": "runtime-service",
|
|
"runtime": {
|
|
"gateway_running": is_running,
|
|
"gateway_port": runtime_state.gateway_port,
|
|
"has_runtime_manager": runtime_state.runtime_manager is not None,
|
|
},
|
|
}
|
|
|
|
app.include_router(runtime_router)
|
|
return app
|
|
|
|
|
|
app = create_app()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import uvicorn
|
|
|
|
uvicorn.run(app, host="0.0.0.0", port=8003)
|