mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 17:33:09 +02:00
3a7182bfb5
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * fix * Update SignupApiService.ts * wip * wip * Update ClientServerService.ts * wip * wip * wip * Update WellKnownServerService.ts * wip * wip * update des * wip * Update ApiServerService.ts * wip * update deps * Update WellKnownServerService.ts * wip * update deps * Update ApiCallService.ts * Update ApiCallService.ts * Update ApiServerService.ts
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
|
|
/**
|
|
* Misskey Entry Point!
|
|
*/
|
|
|
|
import cluster from 'node:cluster';
|
|
import { EventEmitter } from 'node:events';
|
|
import chalk from 'chalk';
|
|
import Xev from 'xev';
|
|
import Logger from '@/logger.js';
|
|
import { envOption } from '../env.js';
|
|
import { masterMain } from './master.js';
|
|
import { workerMain } from './worker.js';
|
|
|
|
import 'reflect-metadata';
|
|
|
|
process.title = `Misskey (${cluster.isPrimary ? 'master' : 'worker'})`;
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
EventEmitter.defaultMaxListeners = 128;
|
|
|
|
const logger = new Logger('core', 'cyan');
|
|
const clusterLogger = logger.createSubLogger('cluster', 'orange', false);
|
|
const ev = new Xev();
|
|
|
|
//#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
|
|
if (!envOption.quiet) {
|
|
process.on('unhandledRejection', console.dir);
|
|
}
|
|
|
|
// Display detail of uncaught exception
|
|
process.on('uncaughtException', err => {
|
|
try {
|
|
logger.error(err);
|
|
console.trace(err);
|
|
} catch { }
|
|
});
|
|
|
|
// Dying away...
|
|
process.on('exit', code => {
|
|
logger.info(`The process is going to exit with code ${code}`);
|
|
});
|
|
|
|
//#endregion
|
|
|
|
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');
|
|
}
|