embark-area-51/lib/processes/storageProcesses/storageProcessesLauncher.js

58 lines
1.9 KiB
JavaScript
Raw Normal View History

const fs = require('../../core/fs');
const utils = require('../../utils/utils');
2018-05-28 15:50:39 +00:00
const ProcessLauncher = require('../../process/processLauncher');
const constants = require('../../constants');
class StorageProcessesLauncher {
constructor(options) {
this.logger = options.logger;
this.events = options.events;
2018-05-28 15:50:01 +00:00
this.storageConfig = options.storageConfig;
this.webServerConfig = options.webServerConfig;
this.processes = {};
}
processExited(storageName, code) {
this.logger.error(__(`Storage process for ${storageName} ended before the end of this process. Code: ${code}`));
}
launchProcess(storageName, callback) {
const self = this;
if (self.processes[storageName]) {
return callback(__('Storage process already started'));
}
const filePath = utils.joinPath(__dirname, `./${storageName}.js`);
fs.access(filePath, (err) => {
if (err) {
2018-05-24 14:51:05 +00:00
return callback(__('No process file for this storage type exists. Please start the process locally.'));
}
self.logger.info(__(`Starting ${storageName} process`).cyan);
self.processes[storageName] = new ProcessLauncher({
modulePath: filePath,
logger: self.logger,
events: self.events,
2018-05-28 15:52:49 +00:00
silent: true,
exitCallback: self.processExited.bind(this, storageName)
});
self.processes[storageName].send({
action: constants.blockchain.init, options: {
storageConfig: self.storageConfig,
webServerConfig: self.webServerConfig
}
});
2018-05-28 15:50:01 +00:00
self.processes[storageName].on('result', constants.storage.initiated, (msg) => {
if (msg.error) {
self.processes[storageName].disconnect();
delete self.processes[storageName];
return callback(msg.error);
}
2018-05-24 14:51:05 +00:00
self.logger.info(__(`${storageName} process started`).cyan);
2018-05-28 15:50:01 +00:00
callback();
});
});
}
}
module.exports = StorageProcessesLauncher;