walnut.js/boot/master.js

94 lines
2.4 KiB
JavaScript
Raw Permalink Normal View History

'use strict';
// TODO if RAM is very low we should not fork at all,
// but use a different process altogether
console.info('pid:', process.pid);
console.info('title:', process.title);
console.info('arch:', process.arch);
console.info('platform:', process.platform);
console.info('\n\n\n[MASTER] Welcome to WALNUT!');
2016-03-31 16:30:04 +00:00
function tryConf(pathname, def) {
try {
return require(pathname);
} catch(e) {
return def;
}
}
2016-03-29 01:12:35 +00:00
var path = require('path');
var cluster = require('cluster');
//var minWorkers = 2;
2015-11-19 07:42:20 +00:00
var numCores = 2; // Math.max(minWorkers, require('os').cpus().length);
var workers = [];
2016-03-31 06:39:15 +00:00
var state = { firstRun: true };
2016-03-31 16:30:04 +00:00
// TODO Should these be configurable? If so, where?
// TODO communicate config with environment vars?
2016-04-09 23:14:00 +00:00
var walnut = tryConf(
path.join('..', '..', 'config.walnut')
, { externalPort: 443
, externalInsecurePort: 80
}
);
2017-05-05 05:09:56 +00:00
2016-03-31 16:30:04 +00:00
var info = {
type: 'walnut.init'
, conf: {
2017-05-05 05:09:56 +00:00
protocol: 'http'
, externalPort: walnut.externalPort || 443
, externalPortInsecure: walnut.externalInsecurePort || 80 // TODO externalInsecurePort
2017-05-09 18:13:25 +00:00
, localPort: walnut.localPort || 3000 // system / local network
2017-05-05 05:09:56 +00:00
, trustProxy: true
2016-04-09 23:14:00 +00:00
, varpath: path.join(__dirname, '..', '..', 'var')
, etcpath: path.join(__dirname, '..', '..', 'etc')
2016-03-31 16:30:04 +00:00
}
};
function fork() {
if (workers.length < numCores) {
workers.push(cluster.fork());
}
}
cluster.on('online', function (worker) {
console.info('[MASTER] Worker ' + worker.process.pid + ' is online');
fork();
2016-03-31 06:39:15 +00:00
if (state.firstRun) {
state.firstRun = false;
2016-04-09 23:14:00 +00:00
// TODO dyndns in master?
2016-03-31 06:39:15 +00:00
}
function touchMaster(msg) {
2015-11-28 06:05:27 +00:00
if ('walnut.webserver.listening' !== msg.type) {
console.warn('[MASTER] received unexpected message from worker');
console.warn(msg);
return;
}
state.workers = workers;
2016-04-09 23:14:00 +00:00
// calls init if init has not been called
require('../lib/master').touch(info.conf, state).then(function (newConf) {
worker.send({ type: 'walnut.webserver.onrequest', conf: newConf });
newConf.addWorker(worker);
});
}
2016-03-31 06:39:15 +00:00
worker.send(info);
worker.on('message', touchMaster);
});
cluster.on('exit', function (worker, code, signal) {
console.info('[MASTER] Worker ' + worker.process.pid + ' died with code: ' + code + ', and signal: ' + signal);
workers = workers.filter(function (w) {
return w && w !== worker;
});
2015-11-19 07:42:20 +00:00
//console.log('WARNING: worker spawning turned off for debugging ');
fork();
});
fork();