embark/lib/contracts/compiler.js

41 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-01-29 06:28:01 +00:00
/*jshint esversion: 6, loopfunc: true */
2017-03-29 17:18:00 +00:00
let async = require('../utils/async_extend.js');
2017-02-17 12:14:44 +00:00
2017-03-30 11:12:39 +00:00
class Compiler {
constructor(options) {
this.plugins = options.plugins;
this.logger = options.logger;
}
2017-01-29 02:31:09 +00:00
2017-03-30 11:12:39 +00:00
compile_contracts(contractFiles, cb) {
2017-12-16 20:39:30 +00:00
let available_compilers = {};
2017-01-29 02:31:09 +00:00
2017-12-29 13:26:31 +00:00
let pluginCompilers = this.plugins.getPluginsProperty('compilers', 'compilers');
pluginCompilers.forEach(function (compilerObject) {
available_compilers[compilerObject.extension] = compilerObject.cb;
});
2017-01-29 02:31:09 +00:00
2017-03-30 11:12:39 +00:00
let compiledObject = {};
2017-01-29 02:31:09 +00:00
2017-03-30 11:12:39 +00:00
async.eachObject(available_compilers,
function (extension, compiler, callback) {
// TODO: warn about files it doesn't know how to compile
let matchingFiles = contractFiles.filter(function (file) {
2017-06-29 11:39:12 +00:00
let fileMatch = file.filename.match(/\.[0-9a-z]+$/);
return (fileMatch && (fileMatch[0] === extension));
2017-03-30 11:12:39 +00:00
});
2016-08-14 12:04:34 +00:00
2017-03-30 11:12:39 +00:00
compiler.call(compiler, matchingFiles || [], function (err, compileResult) {
Object.assign(compiledObject, compileResult);
callback(err, compileResult);
});
},
function (err) {
cb(err, compiledObject);
}
2017-03-30 11:12:39 +00:00
);
}
}
2016-08-14 12:04:34 +00:00
module.exports = Compiler;