yumechi-no-kuni/src/index.ts

225 lines
5 KiB
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
2017-01-02 15:09:17 -06:00
* Misskey Entry Point!
2016-12-28 16:49:51 -06:00
*/
Error.stackTraceLimit = Infinity;
2018-08-06 07:35:49 -05:00
require('events').EventEmitter.defaultMaxListeners = 128;
2016-12-28 16:49:51 -06:00
import * as os from 'os';
import * as cluster from 'cluster';
2017-01-23 19:28:14 -06:00
import * as debug from 'debug';
2017-11-06 04:59:14 -06:00
import chalk from 'chalk';
2018-07-13 09:25:32 -05:00
import * as portscanner from 'portscanner';
2017-01-02 14:49:37 -06:00
import isRoot = require('is-root');
2017-06-08 11:03:54 -05:00
import Xev from 'xev';
import * as program from 'commander';
2017-04-04 19:58:29 -05:00
2018-07-07 05:19:00 -05:00
import Logger from './misc/logger';
import ProgressBar from './misc/cli/progressbar';
import EnvironmentInfo from './misc/environmentInfo';
import MachineInfo from './misc/machineInfo';
import DependencyInfo from './misc/dependencyInfo';
2018-06-10 16:48:25 -05:00
import serverStats from './daemons/server-stats';
import notesStats from './daemons/notes-stats';
2018-04-01 23:15:53 -05:00
import loadConfig from './config/load';
import { Config } from './config/types';
2017-01-16 17:19:34 -06:00
2017-01-23 19:28:14 -06:00
const clusterLog = debug('misskey:cluster');
2017-06-08 11:03:54 -05:00
const ev = new Xev();
2017-01-23 19:28:14 -06:00
2018-08-16 13:51:42 -05:00
if (process.env.NODE_ENV != 'production' && process.env.DEBUG == null) {
2018-07-28 04:01:49 -05:00
debug.enable('misskey');
2018-04-05 04:08:51 -05:00
}
const pkg = require('../package.json');
2018-07-28 03:57:24 -05:00
//#region Command line argument definitions
program
.version(pkg.version)
.option('--no-daemons', 'Disable daemon processes (for debbuging)')
.option('--disable-clustering', 'Disable clustering')
.parse(process.argv);
2018-07-28 03:57:24 -05:00
//#endregion
2016-12-28 16:49:51 -06:00
main();
/**
2017-02-27 01:11:49 -06:00
* Init process
2016-12-28 16:49:51 -06:00
*/
2017-01-23 19:28:14 -06:00
function main() {
2018-08-15 10:13:24 -05:00
process.title = `Misskey (${cluster.isMaster ? 'master' : 'worker'})`;
2018-07-28 03:57:24 -05:00
if (cluster.isMaster || program.disableClustering) {
2018-07-07 05:19:00 -05:00
masterMain();
2017-06-08 11:03:54 -05:00
if (cluster.isMaster) {
ev.mount();
}
2018-07-28 15:34:08 -05:00
if (program.daemons) {
serverStats();
notesStats();
}
}
if (cluster.isWorker || program.disableClustering) {
2018-07-07 05:19:00 -05:00
workerMain();
2016-12-28 16:49:51 -06:00
}
}
/**
2017-02-27 01:11:49 -06:00
* Init master process
2016-12-28 16:49:51 -06:00
*/
2018-07-07 05:19:00 -05:00
async function masterMain() {
2017-04-04 19:58:29 -05:00
let config: Config;
2016-12-28 16:49:51 -06:00
try {
// initialize app
2017-04-04 19:58:29 -05:00
config = await init();
2016-12-28 16:49:51 -06:00
} catch (e) {
console.error(e);
2018-07-14 06:58:21 -05:00
Logger.error('Fatal error occurred during initialization');
2017-04-23 01:40:13 -05:00
process.exit(1);
2017-04-04 19:58:29 -05:00
}
2018-07-14 08:05:19 -05:00
Logger.succ('Misskey initialized');
2017-04-04 19:58:29 -05:00
if (!program.disableClustering) {
await spawnWorkers(config.clusterLimit);
2018-07-14 07:03:09 -05:00
Logger.succ('All workers started');
}
Logger.info(`Now listening on port ${config.port} on ${config.url}`);
2016-12-28 16:49:51 -06:00
}
/**
2017-02-27 01:11:49 -06:00
* Init worker process
2016-12-28 16:49:51 -06:00
*/
2018-07-07 05:19:00 -05:00
async function workerMain() {
// start server
await require('./server').default();
2018-03-28 11:20:40 -05:00
if (cluster.isWorker) {
// Send a 'ready' message to parent process
process.send('ready');
}
2016-12-28 16:49:51 -06:00
}
/**
* Init app
*/
2017-04-04 19:58:29 -05:00
async function init(): Promise<Config> {
2016-12-29 08:09:21 -06:00
Logger.info('Welcome to Misskey!');
2016-12-28 16:49:51 -06:00
2018-07-14 08:53:30 -05:00
(new Logger('Deps')).info(`Node.js ${process.version}`);
2016-12-30 12:19:59 -06:00
MachineInfo.show();
2018-07-14 08:10:27 -05:00
EnvironmentInfo.show();
new DependencyInfo().showAll();
2016-12-30 12:14:38 -06:00
2017-05-24 06:50:17 -05:00
const configLogger = new Logger('Config');
2018-04-01 23:15:53 -05:00
let config;
2016-12-28 16:49:51 -06:00
2018-04-01 23:15:53 -05:00
try {
config = loadConfig();
} catch (exception) {
2018-07-14 06:58:21 -05:00
if (typeof exception === 'string') {
configLogger.error(exception);
process.exit(1);
}
2018-04-01 23:15:53 -05:00
if (exception.code === 'ENOENT') {
2018-07-14 06:58:21 -05:00
configLogger.error('Configuration file not found');
process.exit(1);
2018-04-01 23:15:53 -05:00
}
throw exception;
}
2017-01-16 17:19:34 -06:00
2018-07-14 08:05:19 -05:00
configLogger.succ('Loaded');
2016-12-28 16:49:51 -06:00
2016-12-29 10:35:25 -06:00
if (process.platform === 'linux' && !isRoot() && config.port < 1024) {
2018-07-13 09:52:28 -05:00
Logger.error('You need root privileges to listen on port below 1024 on Linux');
process.exit(1);
2016-12-29 10:35:25 -06:00
}
2018-07-13 09:25:32 -05:00
if (await portscanner.checkPortStatus(config.port, '127.0.0.1') === 'open') {
2018-07-13 10:05:49 -05:00
Logger.error(`Port ${config.port} is already in use`);
2018-07-13 09:52:28 -05:00
process.exit(1);
2016-12-28 16:49:51 -06:00
}
// Try to connect to MongoDB
checkMongoDb(config);
return config;
}
function checkMongoDb(config: Config) {
2017-05-24 06:50:17 -05:00
const mongoDBLogger = new Logger('MongoDB');
2018-08-15 10:13:24 -05:00
const u = config.mongodb.user ? encodeURIComponent(config.mongodb.user) : null;
const p = config.mongodb.pass ? encodeURIComponent(config.mongodb.pass) : null;
const uri = `mongodb://${u && p ? `${u}:****@` : ''}${config.mongodb.host}:${config.mongodb.port}/${config.mongodb.db}`;
mongoDBLogger.info(`Connecting to ${uri}`);
require('./db/mongodb');
2018-07-14 08:05:19 -05:00
mongoDBLogger.succ('Connectivity confirmed');
2016-12-28 16:49:51 -06:00
}
function spawnWorkers(limit: number) {
return new Promise(res => {
// Count the machine's CPUs
const cpuCount = os.cpus().length;
2016-12-28 16:49:51 -06:00
const count = limit || cpuCount;
const progress = new ProgressBar(count, 'Starting workers');
2016-12-28 16:49:51 -06:00
// Create a worker for each CPU
for (let i = 0; i < count; i++) {
const worker = cluster.fork();
worker.on('message', message => {
if (message === 'ready') {
progress.increment();
}
});
}
2016-12-28 16:49:51 -06:00
// On all workers started
progress.on('complete', () => {
res();
});
2017-08-10 08:06:47 -05:00
});
2016-12-28 16:49:51 -06:00
}
2018-07-28 03:57:24 -05:00
//#region Events
2017-01-23 19:28:14 -06:00
// Listen new workers
cluster.on('fork', worker => {
clusterLog(`Process forked: [${worker.id}]`);
});
// Listen online workers
cluster.on('online', worker => {
clusterLog(`Process is now online: [${worker.id}]`);
});
// Listen for dying workers
cluster.on('exit', worker => {
// Replace the dead worker,
// we're not sentimental
clusterLog(chalk.red(`[${worker.id}] died :(`));
cluster.fork();
});
// Display detail of unhandled promise rejection
process.on('unhandledRejection', console.dir);
2018-05-20 05:24:54 -05:00
// Display detail of uncaught exception
process.on('uncaughtException', err => {
console.error(err);
});
2016-12-28 16:49:51 -06:00
// Dying away...
2018-05-20 05:24:54 -05:00
process.on('exit', code => {
2018-07-13 10:41:33 -05:00
Logger.info(`The process is going to exit with code ${code}`);
2016-12-28 16:49:51 -06:00
});
2018-07-28 03:57:24 -05:00
//#endregion