Spaces:
Running
Running
File size: 11,395 Bytes
ceb3821 | 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 | /**
* 主进程 (Master Process)
*
* 负责管理子进程的生命周期,包括:
* - 启动子进程
* - 监控子进程状态
* - 处理子进程重启请求
* - 提供 IPC 通信
*
* 使用方式:
* node src/core/master.js [原有的命令行参数]
*/
import { fork } from 'child_process';
import * as http from 'http';
import * as path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// 子进程实例
let workerProcess = null;
// 子进程状态
let workerStatus = {
pid: null,
startTime: null,
restartCount: 0,
lastRestartTime: null,
isRestarting: false
};
// 配置
const config = {
workerScript: path.join(__dirname, '../services/api-server.js'),
maxRestartAttempts: 10,
restartDelay: 1000, // 重启延迟(毫秒)
masterPort: parseInt(process.env.MASTER_PORT) || 3100, // 主进程管理端口
args: process.argv.slice(2) // 传递给子进程的参数
};
/**
* 启动子进程
*/
function startWorker() {
if (workerProcess) {
console.log('[Master] Worker process already running, PID:', workerProcess.pid);
return;
}
console.log('[Master] Starting worker process...');
console.log('[Master] Worker script:', config.workerScript);
console.log('[Master] Worker args:', config.args.join(' '));
workerProcess = fork(config.workerScript, config.args, {
stdio: ['inherit', 'inherit', 'inherit', 'ipc'],
env: {
...process.env,
IS_WORKER_PROCESS: 'true'
}
});
workerStatus.pid = workerProcess.pid;
workerStatus.startTime = new Date().toISOString();
console.log('[Master] Worker process started, PID:', workerProcess.pid);
// 监听子进程消息
workerProcess.on('message', (message) => {
console.log('[Master] Received message from worker:', message);
handleWorkerMessage(message);
});
// 监听子进程退出
workerProcess.on('exit', (code, signal) => {
console.log(`[Master] Worker process exited with code ${code}, signal ${signal}`);
workerProcess = null;
workerStatus.pid = null;
// 如果不是主动重启导致的退出,尝试自动重启
if (!workerStatus.isRestarting && code !== 0) {
console.log('[Master] Worker crashed, attempting auto-restart...');
scheduleRestart();
}
});
// 监听子进程错误
workerProcess.on('error', (error) => {
console.error('[Master] Worker process error:', error.message);
});
}
/**
* 停止子进程
* @param {boolean} graceful - 是否优雅关闭
* @returns {Promise<void>}
*/
function stopWorker(graceful = true) {
return new Promise((resolve) => {
if (!workerProcess) {
console.log('[Master] No worker process to stop');
resolve();
return;
}
console.log('[Master] Stopping worker process, PID:', workerProcess.pid);
const timeout = setTimeout(() => {
if (workerProcess) {
console.log('[Master] Force killing worker process...');
workerProcess.kill('SIGKILL');
}
resolve();
}, 5000); // 5秒超时后强制杀死
workerProcess.once('exit', () => {
clearTimeout(timeout);
workerProcess = null;
workerStatus.pid = null;
console.log('[Master] Worker process stopped');
resolve();
});
if (graceful) {
// 发送优雅关闭信号
workerProcess.send({ type: 'shutdown' });
workerProcess.kill('SIGTERM');
} else {
workerProcess.kill('SIGKILL');
}
});
}
/**
* 重启子进程
* @returns {Promise<Object>}
*/
async function restartWorker() {
if (workerStatus.isRestarting) {
console.log('[Master] Restart already in progress');
return { success: false, message: 'Restart already in progress' };
}
workerStatus.isRestarting = true;
workerStatus.restartCount++;
workerStatus.lastRestartTime = new Date().toISOString();
console.log('[Master] Restarting worker process...');
try {
await stopWorker(true);
// 等待一小段时间确保端口释放
await new Promise(resolve => setTimeout(resolve, config.restartDelay));
startWorker();
workerStatus.isRestarting = false;
return {
success: true,
message: 'Worker restarted successfully',
pid: workerStatus.pid,
restartCount: workerStatus.restartCount
};
} catch (error) {
workerStatus.isRestarting = false;
console.error('[Master] Failed to restart worker:', error.message);
return {
success: false,
message: 'Failed to restart worker: ' + error.message
};
}
}
/**
* 计划重启(用于崩溃后自动重启)
*/
function scheduleRestart() {
if (workerStatus.restartCount >= config.maxRestartAttempts) {
console.error('[Master] Max restart attempts reached, giving up');
return;
}
const delay = Math.min(config.restartDelay * Math.pow(2, workerStatus.restartCount), 30000);
console.log(`[Master] Scheduling restart in ${delay}ms...`);
setTimeout(() => {
restartWorker();
}, delay);
}
/**
* 处理来自子进程的消息
* @param {Object} message - 消息对象
*/
function handleWorkerMessage(message) {
if (!message || !message.type) return;
switch (message.type) {
case 'ready':
console.log('[Master] Worker is ready');
break;
case 'restart_request':
console.log('[Master] Worker requested restart');
restartWorker();
break;
case 'status':
console.log('[Master] Worker status:', message.data);
break;
default:
console.log('[Master] Unknown message type:', message.type);
}
}
/**
* 获取状态信息
* @returns {Object}
*/
function getStatus() {
return {
master: {
pid: process.pid,
uptime: process.uptime(),
memoryUsage: process.memoryUsage()
},
worker: {
pid: workerStatus.pid,
startTime: workerStatus.startTime,
restartCount: workerStatus.restartCount,
lastRestartTime: workerStatus.lastRestartTime,
isRestarting: workerStatus.isRestarting,
isRunning: workerProcess !== null
}
};
}
/**
* 创建主进程管理 HTTP 服务器
*/
function createMasterServer() {
const server = http.createServer(async (req, res) => {
const url = new URL(req.url, `http://${req.headers.host}`);
const path = url.pathname;
const method = req.method;
// 设置 CORS 头
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization');
if (method === 'OPTIONS') {
res.writeHead(204);
res.end();
return;
}
// 状态端点
if (method === 'GET' && path === '/master/status') {
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify(getStatus()));
return;
}
// 重启端点
if (method === 'POST' && path === '/master/restart') {
console.log('[Master] Restart requested via API');
const result = await restartWorker();
res.writeHead(result.success ? 200 : 500, { 'Content-Type': 'application/json' });
res.end(JSON.stringify(result));
return;
}
// 停止端点
if (method === 'POST' && path === '/master/stop') {
console.log('[Master] Stop requested via API');
await stopWorker(true);
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ success: true, message: 'Worker stopped' }));
return;
}
// 启动端点
if (method === 'POST' && path === '/master/start') {
console.log('[Master] Start requested via API');
if (workerProcess) {
res.writeHead(400, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ success: false, message: 'Worker already running' }));
return;
}
startWorker();
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ success: true, message: 'Worker started', pid: workerStatus.pid }));
return;
}
// 健康检查
if (method === 'GET' && path === '/master/health') {
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({
status: 'healthy',
workerRunning: workerProcess !== null,
timestamp: new Date().toISOString()
}));
return;
}
// 404
res.writeHead(404, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ error: 'Not Found' }));
});
server.listen(config.masterPort, () => {
console.log(`[Master] Management server listening on port ${config.masterPort}`);
console.log(`[Master] Available endpoints:`);
console.log(` GET /master/status - Get master and worker status`);
console.log(` GET /master/health - Health check`);
console.log(` POST /master/restart - Restart worker process`);
console.log(` POST /master/stop - Stop worker process`);
console.log(` POST /master/start - Start worker process`);
});
return server;
}
/**
* 处理进程信号
*/
function setupSignalHandlers() {
// 优雅关闭
process.on('SIGTERM', async () => {
console.log('[Master] Received SIGTERM, shutting down...');
await stopWorker(true);
process.exit(0);
});
process.on('SIGINT', async () => {
console.log('[Master] Received SIGINT, shutting down...');
await stopWorker(true);
process.exit(0);
});
// 未捕获的异常
process.on('uncaughtException', (error) => {
console.error('[Master] Uncaught exception:', error);
});
process.on('unhandledRejection', (reason, promise) => {
console.error('[Master] Unhandled rejection at:', promise, 'reason:', reason);
});
}
/**
* 主函数
*/
async function main() {
console.log('='.repeat(50));
console.log('[Master] AIClient2API Master Process');
console.log('[Master] PID:', process.pid);
console.log('[Master] Node version:', process.version);
console.log('[Master] Working directory:', process.cwd());
console.log('='.repeat(50));
// 设置信号处理
setupSignalHandlers();
// 创建管理服务器
createMasterServer();
// 启动子进程
startWorker();
}
// 启动主进程
main().catch(error => {
console.error('[Master] Failed to start:', error);
process.exit(1);
}); |