2017-01-29 06:28:01 +00:00
|
|
|
/*jshint esversion: 6, loopfunc: true */
|
2016-08-14 12:04:34 +00:00
|
|
|
var solc = require('solc');
|
|
|
|
|
2017-01-29 02:31:09 +00:00
|
|
|
var Compiler = function(options) {
|
|
|
|
this.plugins = options.plugins;
|
|
|
|
};
|
|
|
|
|
|
|
|
Compiler.prototype.compile_contracts = function(contractFiles) {
|
|
|
|
|
|
|
|
var available_compilers = {
|
|
|
|
//".se": this.compile_serpent
|
|
|
|
".sol": this.compile_solidity
|
|
|
|
};
|
|
|
|
|
2017-01-29 06:28:01 +00:00
|
|
|
if (this.plugins) {
|
|
|
|
var compilerPlugins = this.plugins.getPluginsFor('compilers');
|
|
|
|
if (compilerPlugins.length > 0) {
|
|
|
|
compilerPlugins.forEach(function(plugin) {
|
|
|
|
plugin.compilers.forEach(function(compilerObject) {
|
|
|
|
available_compilers[compilerObject.extension] = compilerObject.cb;
|
|
|
|
});
|
2017-01-29 02:31:09 +00:00
|
|
|
});
|
2017-01-29 06:28:01 +00:00
|
|
|
}
|
2017-01-29 02:31:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var compiledObject = {};
|
|
|
|
|
|
|
|
// TODO: warn about files it doesn't know how to compile
|
|
|
|
for (var extension in available_compilers) {
|
|
|
|
var compiler = available_compilers[extension];
|
|
|
|
var matchingFiles = contractFiles.filter(function(file) {
|
|
|
|
return (file.filename.match(/\.[0-9a-z]+$/)[0] === extension);
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.assign(compiledObject, compiler.call(compiler, matchingFiles || []));
|
|
|
|
}
|
|
|
|
|
|
|
|
return compiledObject;
|
2016-08-14 12:04:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Compiler.prototype.compile_solidity = function(contractFiles) {
|
|
|
|
var input = {};
|
|
|
|
|
|
|
|
for (var i = 0; i < contractFiles.length; i++){
|
|
|
|
// TODO: this depends on the config
|
2016-08-22 03:40:05 +00:00
|
|
|
var filename = contractFiles[i].filename.replace('app/contracts/','');
|
|
|
|
input[filename] = contractFiles[i].content.toString();
|
2016-08-14 12:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var output = solc.compile({sources: input}, 1);
|
|
|
|
|
|
|
|
if (output.errors) {
|
|
|
|
throw new Error ("Solidity errors: " + output.errors);
|
|
|
|
}
|
|
|
|
|
|
|
|
var json = output.contracts;
|
|
|
|
|
|
|
|
compiled_object = {};
|
|
|
|
|
|
|
|
for (var className in json) {
|
|
|
|
var contract = json[className];
|
|
|
|
|
|
|
|
compiled_object[className] = {};
|
|
|
|
compiled_object[className].code = contract.bytecode;
|
|
|
|
compiled_object[className].runtimeBytecode = contract.runtimeBytecode;
|
|
|
|
compiled_object[className].gasEstimates = contract.gasEstimates;
|
|
|
|
compiled_object[className].functionHashes = contract.functionHashes;
|
|
|
|
compiled_object[className].abiDefinition = JSON.parse(contract.interface);
|
|
|
|
}
|
|
|
|
|
|
|
|
return compiled_object;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Compiler;
|