2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
2022-09-18 14:17:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Misskey Entry Point!
|
|
|
|
*/
|
|
|
|
|
2022-02-27 02:07:39 +00:00
|
|
|
import cluster from 'node:cluster';
|
2022-09-18 14:17:32 +00:00
|
|
|
import { EventEmitter } from 'node:events';
|
2022-02-27 02:07:39 +00:00
|
|
|
import chalk from 'chalk';
|
2022-04-17 05:42:13 +00:00
|
|
|
import Xev from 'xev';
|
2022-09-17 18:27:08 +00:00
|
|
|
import Logger from '@/logger.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { envOption } from '../env.js';
|
|
|
|
import { masterMain } from './master.js';
|
|
|
|
import { workerMain } from './worker.js';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-09-18 14:17:32 +00:00
|
|
|
import 'reflect-metadata';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-09-18 14:17:32 +00:00
|
|
|
process.title = `Misskey (${cluster.isPrimary ? 'master' : 'worker'})`;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-09-18 14:17:32 +00:00
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
EventEmitter.defaultMaxListeners = 128;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-09-18 14:17:32 +00:00
|
|
|
const logger = new Logger('core', 'cyan');
|
|
|
|
const clusterLogger = logger.createSubLogger('cluster', 'orange', false);
|
|
|
|
const ev = new Xev();
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
//#region Events
|
|
|
|
|
|
|
|
// Listen new workers
|
|
|
|
cluster.on('fork', worker => {
|
|
|
|
clusterLogger.debug(`Process forked: [${worker.id}]`);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Listen online workers
|
|
|
|
cluster.on('online', worker => {
|
|
|
|
clusterLogger.debug(`Process is now online: [${worker.id}]`);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Listen for dying workers
|
|
|
|
cluster.on('exit', worker => {
|
|
|
|
// Replace the dead worker,
|
|
|
|
// we're not sentimental
|
|
|
|
clusterLogger.error(chalk.red(`[${worker.id}] died :(`));
|
|
|
|
cluster.fork();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Display detail of unhandled promise rejection
|
2021-10-08 12:24:05 +00:00
|
|
|
if (!envOption.quiet) {
|
2019-04-07 12:50:36 +00:00
|
|
|
process.on('unhandledRejection', console.dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Display detail of uncaught exception
|
|
|
|
process.on('uncaughtException', err => {
|
2021-02-27 08:39:55 +00:00
|
|
|
try {
|
|
|
|
logger.error(err);
|
2022-12-03 10:42:05 +00:00
|
|
|
console.trace(err);
|
2021-02-27 08:39:55 +00:00
|
|
|
} catch { }
|
2019-04-07 12:50:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Dying away...
|
|
|
|
process.on('exit', code => {
|
|
|
|
logger.info(`The process is going to exit with code ${code}`);
|
|
|
|
});
|
|
|
|
|
|
|
|
//#endregion
|
2022-09-18 14:17:32 +00:00
|
|
|
|
|
|
|
if (cluster.isPrimary || envOption.disableClustering) {
|
|
|
|
await masterMain();
|
|
|
|
|
|
|
|
if (cluster.isPrimary) {
|
|
|
|
ev.mount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cluster.isWorker || envOption.disableClustering) {
|
|
|
|
await workerMain();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ユニットテスト時にMisskeyが子プロセスで起動された時のため
|
|
|
|
// それ以外のときは process.send は使えないので弾く
|
|
|
|
if (process.send) {
|
|
|
|
process.send('ok');
|
|
|
|
}
|