mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* Add trace logging and tighten daemon log defaults * Clean up daemon trace logging shape * Clean up daemon trace logging * Route provider turn-id checks through shared helper * Fix supervisor log config test paths on Windows * Expect resolved supervisor log path on Windows
153 lines
4.6 KiB
TypeScript
153 lines
4.6 KiB
TypeScript
import { fileURLToPath } from "url";
|
|
import { existsSync } from "node:fs";
|
|
import path from "node:path";
|
|
import {
|
|
acquirePidLock,
|
|
PidLockError,
|
|
releasePidLock,
|
|
updatePidLock,
|
|
} from "../src/server/pid-lock.js";
|
|
import { resolvePaseoHome } from "../src/server/paseo-home.js";
|
|
import { loadPersistedConfig } from "../src/server/persisted-config.js";
|
|
import { runSupervisor } from "./supervisor.js";
|
|
import { resolveSupervisorLogFile } from "./supervisor-log-config.js";
|
|
import { applySherpaLoaderEnv } from "../src/server/speech/providers/local/sherpa/sherpa-runtime-env.js";
|
|
|
|
interface DaemonRunnerConfig {
|
|
devMode: boolean;
|
|
workerArgs: string[];
|
|
}
|
|
|
|
function parseConfig(argv: string[]): DaemonRunnerConfig {
|
|
let devMode = false;
|
|
const workerArgs: string[] = [];
|
|
|
|
for (const arg of argv) {
|
|
if (arg === "--dev") {
|
|
devMode = true;
|
|
continue;
|
|
}
|
|
workerArgs.push(arg);
|
|
}
|
|
|
|
return { devMode, workerArgs };
|
|
}
|
|
|
|
function resolveWorkerEntry(): string {
|
|
const candidates = [
|
|
fileURLToPath(new URL("../server/server/daemon-worker.js", import.meta.url)),
|
|
fileURLToPath(new URL("../dist/server/server/daemon-worker.js", import.meta.url)),
|
|
fileURLToPath(new URL("../src/server/daemon-worker.ts", import.meta.url)),
|
|
fileURLToPath(new URL("../../src/server/daemon-worker.ts", import.meta.url)),
|
|
];
|
|
|
|
for (const candidate of candidates) {
|
|
if (existsSync(candidate)) {
|
|
return candidate;
|
|
}
|
|
}
|
|
|
|
return candidates[0];
|
|
}
|
|
|
|
function resolveDevWorkerEntry(): string {
|
|
const candidate = fileURLToPath(new URL("../src/server/daemon-worker.ts", import.meta.url));
|
|
if (!existsSync(candidate)) {
|
|
throw new Error(`Dev worker entry not found: ${candidate}`);
|
|
}
|
|
return candidate;
|
|
}
|
|
|
|
function resolveWorkerExecArgv(workerEntry: string): string[] {
|
|
return workerEntry.endsWith(".ts") ? ["--import", "tsx"] : [];
|
|
}
|
|
|
|
function resolvePackagedNodeEntrypointRunnerPath(currentScriptPath: string): string | null {
|
|
const packageMarker = `${path.sep}node_modules${path.sep}@getpaseo${path.sep}server${path.sep}`;
|
|
const markerIndex = currentScriptPath.lastIndexOf(packageMarker);
|
|
if (markerIndex === -1) {
|
|
return null;
|
|
}
|
|
|
|
const appRoot = currentScriptPath.slice(0, markerIndex);
|
|
const runnerPath = path.join(appRoot, "dist", "daemon", "node-entrypoint-runner.js");
|
|
return existsSync(runnerPath) ? runnerPath : null;
|
|
}
|
|
|
|
async function main(): Promise<void> {
|
|
const config = parseConfig(process.argv.slice(2));
|
|
const workerEntry = config.devMode ? resolveDevWorkerEntry() : resolveWorkerEntry();
|
|
const workerExecArgv = resolveWorkerExecArgv(workerEntry);
|
|
const workerEnv: NodeJS.ProcessEnv = { ...process.env };
|
|
const packagedNodeEntrypointRunner =
|
|
process.env.ELECTRON_RUN_AS_NODE === "1"
|
|
? resolvePackagedNodeEntrypointRunnerPath(fileURLToPath(import.meta.url))
|
|
: null;
|
|
|
|
applySherpaLoaderEnv(workerEnv);
|
|
|
|
const paseoHome = resolvePaseoHome(workerEnv);
|
|
const persistedConfig = loadPersistedConfig(paseoHome);
|
|
const supervisorLogFile = resolveSupervisorLogFile(paseoHome, persistedConfig, workerEnv);
|
|
|
|
try {
|
|
await acquirePidLock(paseoHome, null, {
|
|
ownerPid: process.pid,
|
|
});
|
|
} catch (error) {
|
|
if (error instanceof PidLockError) {
|
|
process.stderr.write(`${error.message}\n`);
|
|
process.exit(1);
|
|
return;
|
|
}
|
|
throw error;
|
|
}
|
|
|
|
let lockReleased = false;
|
|
const releaseLock = async (): Promise<void> => {
|
|
if (lockReleased) {
|
|
return;
|
|
}
|
|
lockReleased = true;
|
|
await releasePidLock(paseoHome, {
|
|
ownerPid: process.pid,
|
|
});
|
|
};
|
|
|
|
runSupervisor({
|
|
name: "DaemonRunner",
|
|
startupMessage: "Starting daemon worker (IPC restart and crash restart enabled)",
|
|
resolveWorkerEntry: () => workerEntry,
|
|
workerArgs: config.workerArgs,
|
|
workerEnv,
|
|
workerExecArgv,
|
|
resolveWorkerSpawnSpec: packagedNodeEntrypointRunner
|
|
? (resolvedWorkerEntry) => ({
|
|
command: process.execPath,
|
|
args: [
|
|
packagedNodeEntrypointRunner,
|
|
"node-script",
|
|
resolvedWorkerEntry,
|
|
...config.workerArgs,
|
|
],
|
|
env: {
|
|
...workerEnv,
|
|
ELECTRON_RUN_AS_NODE: "1",
|
|
},
|
|
})
|
|
: undefined,
|
|
restartOnCrash: true,
|
|
logFile: supervisorLogFile,
|
|
onWorkerReady: async ({ listen }) => {
|
|
await updatePidLock(paseoHome, { listen }, { ownerPid: process.pid });
|
|
},
|
|
onSupervisorExit: releaseLock,
|
|
});
|
|
}
|
|
|
|
void main().catch((error) => {
|
|
const message = error instanceof Error ? (error.stack ?? error.message) : String(error);
|
|
process.stderr.write(`${message}\n`);
|
|
process.exit(1);
|
|
});
|