2015-09-14 12:20:08 -04:00
|
|
|
#!/usr/bin/env node
|
2017-09-27 09:09:25 -04:00
|
|
|
//One begins with the clustering
|
2015-09-22 08:50:45 -04:00
|
|
|
var cluster = require('cluster');
|
|
|
|
|
|
|
|
// Code to run if we're in the master process
|
|
|
|
if (cluster.isMaster) {
|
|
|
|
// Count the machine's CPUs
|
|
|
|
var cpuCount = require('os').cpus().length;
|
|
|
|
|
|
|
|
// Create a worker for each CPU
|
|
|
|
for (var i = 0; i < cpuCount; i += 1) {
|
|
|
|
console.log('Création du fork ' + i);
|
|
|
|
cluster.fork();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Listen for dying workers
|
|
|
|
cluster.on('exit', function (worker) {
|
|
|
|
// Replace the dead worker, we're not sentimental
|
|
|
|
console.log('Worker ' + worker.id + ' died :(');
|
|
|
|
cluster.fork();
|
2015-09-23 17:44:02 -04:00
|
|
|
console.log('Remplacement du worker ');
|
2015-09-22 08:50:45 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
// Code to run if we're in a worker process
|
|
|
|
} else {
|
|
|
|
/**
|
|
|
|
* Module dependencies.
|
|
|
|
*/
|
|
|
|
var app = require('../app');
|
|
|
|
var debug = require('debug')('plex_webdown:server');
|
|
|
|
var http = require('http');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get port from environment and store in Express.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var port = normalizePort(process.env.PORT || '3000');
|
|
|
|
app.set('port', port);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create HTTP server.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var server = http.createServer(app);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Listen on provided port, on all network interfaces.
|
|
|
|
*/
|
|
|
|
|
|
|
|
server.listen(port);
|
|
|
|
server.on('error', onError);
|
|
|
|
server.on('listening', onListening);
|
|
|
|
}
|
2015-09-14 12:20:08 -04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normalize a port into a number, string, or false.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function normalizePort(val) {
|
|
|
|
var port = parseInt(val, 10);
|
|
|
|
|
|
|
|
if (isNaN(port)) {
|
|
|
|
// named pipe
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (port >= 0) {
|
|
|
|
// port number
|
|
|
|
return port;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event listener for HTTP server "error" event.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function onError(error) {
|
|
|
|
if (error.syscall !== 'listen') {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
var bind = typeof port === 'string'
|
|
|
|
? 'Pipe ' + port
|
|
|
|
: 'Port ' + port;
|
|
|
|
|
|
|
|
// handle specific listen errors with friendly messages
|
|
|
|
switch (error.code) {
|
|
|
|
case 'EACCES':
|
|
|
|
console.error(bind + ' requires elevated privileges');
|
|
|
|
process.exit(1);
|
|
|
|
break;
|
|
|
|
case 'EADDRINUSE':
|
|
|
|
console.error(bind + ' is already in use');
|
|
|
|
process.exit(1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event listener for HTTP server "listening" event.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function onListening() {
|
|
|
|
var addr = server.address();
|
|
|
|
var bind = typeof addr === 'string'
|
|
|
|
? 'pipe ' + addr
|
|
|
|
: 'port ' + addr.port;
|
|
|
|
debug('Listening on ' + bind);
|
|
|
|
}
|