2016-12-29 07:49:51 +09:00
|
|
|
/**
|
2017-01-03 06:09:17 +09:00
|
|
|
* Misskey Entry Point!
|
2016-12-29 07:49:51 +09:00
|
|
|
*/
|
|
|
|
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as os from 'os';
|
|
|
|
import * as cluster from 'cluster';
|
2017-01-24 10:28:14 +09:00
|
|
|
import * as debug from 'debug';
|
2016-12-29 23:09:21 +09:00
|
|
|
import Logger from './utils/logger';
|
2016-12-29 07:49:51 +09:00
|
|
|
import * as chalk from 'chalk';
|
2017-03-18 02:24:14 +09:00
|
|
|
//import portUsed = require('tcp-port-used');
|
2017-01-03 05:49:37 +09:00
|
|
|
import isRoot = require('is-root');
|
2016-12-29 07:49:51 +09:00
|
|
|
import ProgressBar from './utils/cli/progressbar';
|
2016-12-31 03:35:19 +09:00
|
|
|
import EnvironmentInfo from './utils/environmentInfo';
|
2016-12-31 03:19:59 +09:00
|
|
|
import MachineInfo from './utils/machineInfo';
|
2016-12-31 03:24:07 +09:00
|
|
|
import DependencyInfo from './utils/dependencyInfo';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-01-17 08:19:34 +09:00
|
|
|
import { path as configPath } from './config';
|
|
|
|
import loadConfig from './config';
|
|
|
|
|
2017-01-24 10:28:14 +09:00
|
|
|
const clusterLog = debug('misskey:cluster');
|
|
|
|
|
2017-01-03 05:15:01 +09:00
|
|
|
enum InitResult {
|
|
|
|
Success,
|
|
|
|
Warn,
|
|
|
|
Failure
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
process.title = 'Misskey';
|
|
|
|
|
|
|
|
// Start app
|
|
|
|
main();
|
|
|
|
|
|
|
|
/**
|
2017-02-27 16:11:49 +09:00
|
|
|
* Init process
|
2016-12-29 07:49:51 +09:00
|
|
|
*/
|
2017-01-24 10:28:14 +09:00
|
|
|
function main() {
|
2016-12-29 07:49:51 +09:00
|
|
|
if (cluster.isMaster) {
|
2017-01-03 05:17:21 +09:00
|
|
|
masterMain();
|
2017-01-03 05:15:50 +09:00
|
|
|
} else {
|
2017-01-03 05:17:21 +09:00
|
|
|
workerMain();
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-27 16:11:49 +09:00
|
|
|
* Init master process
|
2016-12-29 07:49:51 +09:00
|
|
|
*/
|
2017-01-24 10:28:14 +09:00
|
|
|
async function masterMain() {
|
2017-01-03 05:15:01 +09:00
|
|
|
let initResult: InitResult;
|
2016-12-29 07:49:51 +09:00
|
|
|
|
|
|
|
try {
|
|
|
|
// initialize app
|
2017-01-03 05:15:01 +09:00
|
|
|
initResult = await init();
|
2016-12-29 07:49:51 +09:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2017-01-03 05:15:01 +09:00
|
|
|
switch (initResult) {
|
2017-01-03 05:15:27 +09:00
|
|
|
case InitResult.Success:
|
|
|
|
Logger.info(chalk.green('Successfully initialized :)'));
|
|
|
|
break;
|
|
|
|
case InitResult.Warn:
|
|
|
|
Logger.warn(chalk.yellow('Initialized with some problem(s) :|'));
|
|
|
|
break;
|
2017-01-03 05:15:01 +09:00
|
|
|
case InitResult.Failure:
|
2016-12-30 02:28:51 +09:00
|
|
|
Logger.error(chalk.red('Fatal error occurred during initializing :('));
|
2016-12-29 07:49:51 +09:00
|
|
|
process.exit();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-03 05:18:03 +09:00
|
|
|
spawnWorkers(() => {
|
2017-01-24 10:28:14 +09:00
|
|
|
Logger.info(chalk.bold.green(`Now listening on port ${loadConfig().port}`));
|
2016-12-29 07:49:51 +09:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-27 16:11:49 +09:00
|
|
|
* Init worker process
|
2016-12-29 07:49:51 +09:00
|
|
|
*/
|
2017-01-24 10:28:14 +09:00
|
|
|
function workerMain() {
|
2017-01-17 09:12:33 +09:00
|
|
|
// start server
|
|
|
|
require('./server');
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
2017-01-24 10:28:14 +09:00
|
|
|
async function init() {
|
2016-12-29 20:39:46 +09:00
|
|
|
let warn = false;
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2016-12-29 23:09:21 +09:00
|
|
|
Logger.info('Welcome to Misskey!');
|
2017-01-19 09:53:29 +09:00
|
|
|
Logger.info(chalk.bold('Misskey <aoi>'));
|
2016-12-29 23:09:21 +09:00
|
|
|
Logger.info('Initializing...');
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2016-12-31 03:35:19 +09:00
|
|
|
EnvironmentInfo.show();
|
2016-12-31 03:19:59 +09:00
|
|
|
MachineInfo.show();
|
2016-12-31 03:24:07 +09:00
|
|
|
new DependencyInfo().showAll();
|
2016-12-31 03:14:38 +09:00
|
|
|
|
2016-12-31 02:54:08 +09:00
|
|
|
let configLogger = new Logger('Config');
|
2017-01-17 08:19:34 +09:00
|
|
|
if (!fs.existsSync(configPath)) {
|
2016-12-31 02:54:08 +09:00
|
|
|
configLogger.error('Configuration not found');
|
2017-01-03 05:15:01 +09:00
|
|
|
return InitResult.Failure;
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2017-01-17 08:19:34 +09:00
|
|
|
const config = loadConfig();
|
|
|
|
|
2016-12-29 23:09:21 +09:00
|
|
|
configLogger.info('Successfully loaded');
|
|
|
|
configLogger.info(`maintainer: ${config.maintainer}`);
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2016-12-30 01:35:25 +09:00
|
|
|
if (process.platform === 'linux' && !isRoot() && config.port < 1024) {
|
2016-12-30 08:23:03 +09:00
|
|
|
Logger.error('You need root privileges to listen on port below 1024 on Linux');
|
2017-01-03 05:15:01 +09:00
|
|
|
return InitResult.Failure;
|
2016-12-30 01:35:25 +09:00
|
|
|
}
|
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
// Check if a port is being used
|
2017-03-13 18:22:58 +09:00
|
|
|
/* https://github.com/stdarg/tcp-port-used/issues/3
|
2016-12-29 07:49:51 +09:00
|
|
|
if (await portUsed.check(config.port)) {
|
2016-12-30 02:56:37 +09:00
|
|
|
Logger.error(`Port ${config.port} is already used`);
|
2017-01-03 05:15:01 +09:00
|
|
|
return InitResult.Failure;
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
2017-03-13 18:22:58 +09:00
|
|
|
*/
|
2016-12-29 07:49:51 +09:00
|
|
|
|
|
|
|
// Try to connect to MongoDB
|
2016-12-29 23:09:21 +09:00
|
|
|
let mongoDBLogger = new Logger('MongoDB');
|
2016-12-29 07:49:51 +09:00
|
|
|
try {
|
2017-01-17 09:12:33 +09:00
|
|
|
const db = require('./db/mongodb').default;
|
2016-12-29 23:09:21 +09:00
|
|
|
mongoDBLogger.info('Successfully connected');
|
2016-12-29 07:49:51 +09:00
|
|
|
db.close();
|
|
|
|
} catch (e) {
|
2017-01-03 05:31:08 +09:00
|
|
|
mongoDBLogger.error(e);
|
2017-01-03 05:15:01 +09:00
|
|
|
return InitResult.Failure;
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2017-01-03 05:15:01 +09:00
|
|
|
return warn ? InitResult.Warn : InitResult.Success;
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2017-01-24 10:28:14 +09:00
|
|
|
function spawnWorkers(onComplete: any) {
|
2016-12-29 07:49:51 +09:00
|
|
|
// Count the machine's CPUs
|
|
|
|
const cpuCount = os.cpus().length;
|
|
|
|
|
|
|
|
const progress = new ProgressBar(cpuCount, 'Starting workers');
|
|
|
|
|
|
|
|
// Create a worker for each CPU
|
|
|
|
for (let i = 0; i < cpuCount; i++) {
|
|
|
|
const worker = cluster.fork();
|
|
|
|
worker.on('message', message => {
|
|
|
|
if (message === 'ready') {
|
|
|
|
progress.increment();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// On all workers started
|
|
|
|
progress.on('complete', () => {
|
2017-01-03 05:22:25 +09:00
|
|
|
onComplete();
|
2016-12-29 07:49:51 +09:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-01-24 10:28:14 +09: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();
|
|
|
|
});
|
|
|
|
|
2017-01-19 08:04:17 +09:00
|
|
|
// Display detail of unhandled promise rejection
|
|
|
|
process.on('unhandledRejection', console.dir);
|
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
// Dying away...
|
|
|
|
process.on('exit', () => {
|
2016-12-30 01:12:49 +09:00
|
|
|
Logger.info('The process is going exit');
|
2016-12-29 07:49:51 +09:00
|
|
|
});
|