walnut.js/lib/master.js

79 lines
2.0 KiB
JavaScript
Raw Normal View History

'use strict';
var cluster = require('cluster');
var PromiseA = require('bluebird');
2016-03-31 06:39:15 +00:00
function init(conf, state) {
2016-04-09 23:14:00 +00:00
var newConf = {};
if (!conf.ipcKey) {
2016-04-09 23:14:00 +00:00
conf.ipcKey = newConf.ipcKey = require('crypto').randomBytes(16).toString('base64');
}
2015-11-12 11:14:59 +00:00
if (!conf.sqlite3Sock) {
2016-04-09 23:14:00 +00:00
conf.sqlite3Sock = newConf.sqlite3Sock = '/tmp/sqlite3.' + require('crypto').randomBytes(4).toString('hex') + '.sock';
2015-11-12 11:14:59 +00:00
}
if (!conf.memstoreSock) {
2016-04-09 23:14:00 +00:00
conf.memstoreSock = newConf.memstoreSock = '/tmp/memstore.' + require('crypto').randomBytes(4).toString('hex') + '.sock';
2015-11-12 11:14:59 +00:00
}
try {
2015-11-12 11:14:59 +00:00
require('fs').unlinkSync(conf.memstoreSock);
} catch(e) {
if ('ENOENT' !== e.code) {
console.error(e.stack);
console.error(JSON.stringify(e));
}
// ignore
}
try {
require('fs').unlinkSync(conf.sqlite3Sock);
} catch(e) {
if ('ENOENT' !== e.code) {
console.error(e.stack);
console.error(JSON.stringify(e));
}
// ignore
}
var cstore = require('cluster-store');
2015-11-12 11:14:59 +00:00
var sqlite3 = require('sqlite3-cluster/server');
var promise = PromiseA.all([
cstore.create({
sock: conf.memstoreSock
, serve: cluster.isMaster && conf.memstoreSock
, store: cluster.isMaster && null //new require('express-session/session/memory')()
// TODO implement
, key: conf.ipcKey
})
, sqlite3.createServer({
verbose: null
2015-11-28 05:06:19 +00:00
, sock: conf.sqlite3Sock
2015-11-12 11:14:59 +00:00
, ipcKey: conf.ipcKey
2016-04-09 23:14:00 +00:00
})/*.then(function () {
var sqlite3 = require('sqlite3-cluster/client');
return sqliet3.createClientFactory(...);
})*/
2016-03-31 06:39:15 +00:00
]).then(function (args) {
state.memstore = args[0];
2016-04-09 23:14:00 +00:00
//state.sqlstore = args[1];
return newConf;
});
2015-11-12 11:14:59 +00:00
return promise;
}
function touch(conf, state) {
if (!state.initialize) {
state.initialize = init(conf, state);
}
// TODO if no xyz worker, start on xyz worker (unlock, for example)
2016-04-09 23:14:00 +00:00
return state.initialize.then(function (newConf) {
// TODO conf.locked = true|false;
conf.initialized = true;
2016-04-09 23:14:00 +00:00
return newConf;
});
}
module.exports.init = init;
module.exports.touch = touch;