feat: 拆分 HWPOD Temporal 服务与独立 Web

This commit is contained in:
root
2026-07-20 19:58:02 +02:00
parent d2e9e3593d
commit d7709f0a27
18 changed files with 520 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bun
import { createHwpodHttpApp } from "../../internal/hwpod/http.ts";
import { hwpodRuntime } from "../../internal/hwpod/runtime.ts";
const runtime = hwpodRuntime();
const app = createHwpodHttpApp({ runtimeApiUrl: runtime.runtimeApiUrl, runtimeApiAuthorization: runtime.runtimeApiAuthorization, temporal: runtime.temporal });
const host = process.env.HWPOD_API_HOST || "0.0.0.0";
const port = positivePort(process.env.HWPOD_API_PORT, 6681);
const server = Bun.serve({ hostname: host, port, fetch: request => app.fetch(request) });
process.stdout.write(`${JSON.stringify({ serviceId: "hwlab-hwpod-api", status: "listening", host, port: server.port, temporalNamespace: runtime.namespace, taskQueue: runtime.taskQueue, valuesPrinted: false })}\n`);
for (const signal of ["SIGINT", "SIGTERM"] as const) process.once(signal, async () => { server.stop(true); await app.close(); process.exit(0); });
function positivePort(value: string | undefined, fallback: number) { const parsed = Number.parseInt(String(value ?? fallback), 10); if (!Number.isInteger(parsed) || parsed < 1 || parsed > 65535) throw new Error("HWPOD_API_PORT must be a valid port"); return parsed; }
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bun
import path from "node:path";
import { NativeConnection, Worker } from "@temporalio/worker";
import { executeHwpodOperation } from "../../internal/hwpod/activities.ts";
import { hwpodRuntime } from "../../internal/hwpod/runtime.ts";
const runtime = hwpodRuntime();
const connection = await NativeConnection.connect({ address: runtime.address });
const worker = await Worker.create({ connection, namespace: runtime.namespace, taskQueue: runtime.taskQueue, workflowsPath: path.resolve(import.meta.dir, "../../internal/hwpod/workflows.ts"), activities: { executeHwpodOperation } });
const healthPort = positivePort(process.env.HWPOD_WORKER_HEALTH_PORT, 6682);
const health = Bun.serve({ hostname: process.env.HWPOD_WORKER_HEALTH_HOST || "0.0.0.0", port: healthPort, fetch(request) { return ["/healthz", "/readyz", "/health/live", "/health/ready"].includes(new URL(request.url).pathname) ? Response.json({ ok: true, serviceId: "hwlab-hwpod-worker", namespace: runtime.namespace, taskQueue: runtime.taskQueue, valuesPrinted: false }) : new Response("not found", { status: 404 }); } });
process.stdout.write(`${JSON.stringify({ serviceId: "hwlab-hwpod-worker", status: "started", namespace: runtime.namespace, taskQueue: runtime.taskQueue, healthPort: health.port, valuesPrinted: false })}\n`);
for (const signal of ["SIGINT", "SIGTERM"] as const) process.once(signal, () => worker.shutdown());
try { await worker.run(); } finally { health.stop(true); await connection.close(); await runtime.temporal.close(); }
function positivePort(value: string | undefined, fallback: number) { const parsed = Number.parseInt(String(value ?? fallback), 10); if (!Number.isInteger(parsed) || parsed < 1 || parsed > 65535) throw new Error("HWPOD_WORKER_HEALTH_PORT must be a valid port"); return parsed; }