embark-area-51/lib/pipeline/pipeline.js

224 lines
7.7 KiB
JavaScript
Raw Normal View History

const fs = require('../core/fs.js');
const async = require('async');
const child_process = require('child_process');
const utils = require('../utils/utils.js');
const constants = require('../constants');
//require("../utils/debug_util.js")(__filename, async);
2016-08-21 16:02:02 +00:00
2018-01-17 00:17:52 +00:00
require("babel-preset-react");
require("babel-preset-es2015");
require("babel-preset-es2016");
require("babel-preset-es2017");
2017-03-30 11:12:39 +00:00
class Pipeline {
2017-03-30 11:12:39 +00:00
constructor(options) {
this.buildDir = options.buildDir;
this.contractsFiles = options.contractsFiles;
this.assetFiles = options.assetFiles;
this.events = options.events;
this.logger = options.logger;
2018-05-10 15:14:25 +00:00
this.normalizeInput = options.normalizeInput;
this.plugins = options.plugins;
2018-05-10 14:48:06 +00:00
this.pipelinePlugins = this.plugins.getPluginsFor('pipeline');
2017-03-30 11:12:39 +00:00
}
build(abi, contractsJSON, path, callback) {
2017-03-30 11:12:39 +00:00
let self = this;
2018-05-08 13:36:50 +00:00
const importsList = {};
2018-05-08 13:36:50 +00:00
async.waterfall([
function buildTheContracts(next) {
2018-05-16 16:48:17 +00:00
self.buildContracts(next);
2018-05-08 13:36:50 +00:00
},
function buildWeb3(next) {
2018-05-15 22:21:00 +00:00
self.buildWeb3JS(next);
2018-05-08 13:36:50 +00:00
},
function createImportList(next) {
importsList["Embark/EmbarkJS"] = fs.dappPath(".embark", 'embark.js');
importsList["Embark/web3"] = fs.dappPath(".embark", 'web3_instance.js');
self.plugins.getPluginsProperty('imports', 'imports').forEach(function (importObject) {
2018-05-08 13:36:50 +00:00
let [importName, importLocation] = importObject;
importsList[importName] = importLocation;
});
2017-12-12 21:10:12 +00:00
2018-05-08 13:36:50 +00:00
next();
},
function writeContracts(next) {
2018-05-16 16:48:17 +00:00
self.events.request('contracts:list', (contracts) => {
async.each(contracts, (contract, eachCb) => {
self.events.request('code-generator:contract', contract.className, (contractCode) => {
let filePath = fs.dappPath(".embark", contract.className + '.js');
importsList["Embark/contracts/" + contract.className] = filePath;
fs.writeFile(filePath, contractCode, eachCb);
});
}, next);
});
2018-05-08 13:36:50 +00:00
},
function assetFileWrite(next) {
2018-05-10 14:43:10 +00:00
async.eachOf(self.assetFiles, function (files, targetFile, cb) {
async.map(files,
2018-05-08 13:36:50 +00:00
function (file, fileCb) {
self.logger.trace("reading " + file.filename);
2018-05-08 13:36:50 +00:00
2018-05-10 14:48:06 +00:00
// Not a JS file
2018-05-08 13:36:50 +00:00
if (file.filename.indexOf('.js') < 0) {
return file.content(function (fileContent) {
self.runPlugins(file, fileContent, fileCb);
});
}
2018-05-08 13:36:50 +00:00
// JS files
async.waterfall([
function runWebpack(next) {
const webpackProcess = child_process.fork(utils.joinPath(__dirname, 'webpackProcess.js'));
webpackProcess.send({action: constants.pipeline.init, options: {}});
webpackProcess.send({action: constants.pipeline.build, file, importsList});
webpackProcess.on('message', function (msg) {
if (msg.result === constants.pipeline.built) {
webpackProcess.disconnect();
2018-05-10 14:48:06 +00:00
return next(msg.error);
}
2018-05-08 13:25:37 +00:00
if (msg.result === constants.pipeline.log) {
if (self.logger[msg.type]) {
return self.logger[msg.type](self.normalizeInput(msg.message));
}
self.logger.debug(self.normalizeInput(msg.message));
}
});
2018-05-08 13:36:50 +00:00
},
function readFile(next) {
fs.readFile('./.embark/' + file.filename, (err, data) => {
if (err) {
return next(err);
}
next(null, data.toString());
});
},
2018-05-08 13:25:37 +00:00
2018-05-08 13:36:50 +00:00
function runPluginsOnContent(fileContent, next) {
self.runPlugins(file, fileContent, next);
}
2018-05-08 13:25:37 +00:00
2018-05-08 13:36:50 +00:00
], function (err, contentFile) {
2018-05-08 13:04:53 +00:00
if (err) {
self.logger.error(err);
2018-05-08 13:36:50 +00:00
return fileCb(err);
2018-05-08 13:04:53 +00:00
}
2018-05-08 13:36:50 +00:00
fileCb(null, contentFile);
});
},
function (err, contentFiles) {
if (err) {
2018-05-08 21:49:46 +00:00
self.logger.error(__('errors found while generating') + ' ' + targetFile);
2018-05-08 13:36:50 +00:00
}
let dir = targetFile.split('/').slice(0, -1).join('/');
self.logger.trace("creating dir " + self.buildDir + dir);
2018-05-08 13:36:50 +00:00
fs.mkdirpSync(self.buildDir + dir);
2018-05-08 13:02:46 +00:00
2018-05-08 13:36:50 +00:00
// if it's a directory
if (targetFile.slice(-1) === '/' || targetFile.indexOf('.') === -1) {
let targetDir = targetFile;
2018-05-08 13:02:46 +00:00
2018-05-08 13:36:50 +00:00
if (targetDir.slice(-1) !== '/') {
targetDir = targetDir + '/';
2018-05-08 13:25:37 +00:00
}
2018-05-08 13:04:53 +00:00
2018-05-08 13:36:50 +00:00
async.each(contentFiles, function (file, mapCb) {
let filename = file.filename.replace(file.basedir + '/', '');
self.logger.info("writing file " + (self.buildDir + targetDir + filename).bold.dim);
2018-05-08 13:25:37 +00:00
2018-05-08 13:36:50 +00:00
fs.copy(file.path, self.buildDir + targetDir + filename, {overwrite: true}, mapCb);
}, cb);
return;
2018-05-08 13:25:37 +00:00
}
2018-05-08 13:36:50 +00:00
let content = contentFiles.map(function (file) {
if (file === undefined) {
return "";
}
return file.content;
}).join("\n");
2018-05-08 21:49:46 +00:00
self.logger.info(__("writing file") + " " + (self.buildDir + targetFile).bold.dim);
2018-05-08 13:36:50 +00:00
fs.writeFile(self.buildDir + targetFile, content, cb);
}
);
},
next);
}
], callback);
2017-12-12 17:20:57 +00:00
}
2018-02-28 23:09:10 +00:00
runPlugins(file, fileContent, fileCb) {
const self = this;
2018-05-10 14:48:06 +00:00
if (self.pipelinePlugins.length <= 0) {
return fileCb(null, {content: fileContent, filename: file.filename, path: file.path, basedir: file.basedir, modified: true});
2018-02-28 23:09:10 +00:00
}
2018-05-10 14:48:06 +00:00
async.eachSeries(self.pipelinePlugins,
function(plugin, pluginCB) {
2018-02-28 23:09:10 +00:00
if (file.options && file.options.skipPipeline) {
return pluginCB();
}
fileContent = plugin.runPipeline({targetFile: file.filename, source: fileContent});
file.modified = true;
pluginCB();
},
function (err) {
if (err) {
self.logger.error(err.message);
2018-02-28 23:09:10 +00:00
}
return fileCb(null, {content: fileContent, filename: file.filename, path: file.path, basedir: file.basedir, modified: true});
2018-02-28 23:09:10 +00:00
}
);
}
buildContracts(cb) {
2018-05-16 16:48:17 +00:00
const self = this;
async.waterfall([
function makeDirectory(next) {
fs.mkdirp(fs.dappPath(self.buildDir, 'contracts'), (err, _result) => {
next(err)
});
},
function getContracts(next) {
self.events.request('contracts:list', (contracts) => {
next(null, contracts);
});
},
function writeContractsJSON(contracts, next) {
2018-05-16 16:48:17 +00:00
async.each(contracts, (contract, eachCb) => {
fs.writeJson(fs.dappPath(self.buildDir, 'contracts', contract.className + ".json"), contract, {spaces: 2}, eachCb);
}, () => {next()});
}
], cb);
2016-08-21 16:02:02 +00:00
}
2018-05-15 22:21:00 +00:00
buildWeb3JS(cb) {
const self = this;
async.waterfall([
function makeDirectory(next) {
2018-05-15 22:21:00 +00:00
fs.mkdirp(fs.dappPath(".embark"), (err, _result) => {
next(err);
2018-05-15 22:21:00 +00:00
});
},
function getWeb3Code(next) {
self.events.request('code-generator:web3js', next);
},
2018-05-15 22:21:00 +00:00
function writeFile(code, next) {
fs.writeFile(fs.dappPath(".embark", 'web3_instance.js'), code, next);
}
], cb);
}
2017-03-30 11:12:39 +00:00
}
2016-08-21 16:02:02 +00:00
module.exports = Pipeline;