2017-01-29 06:28:01 +00:00
|
|
|
/*jshint esversion: 6, loopfunc: true */
|
2017-02-17 12:14:44 +00:00
|
|
|
var async = require('async');
|
2017-02-25 00:27:27 +00:00
|
|
|
var SolcW = require('./solcW.js');
|
2017-02-17 12:14:44 +00:00
|
|
|
|
|
|
|
function asyncEachObject(object, iterator, callback) {
|
|
|
|
async.each(
|
|
|
|
Object.keys(object || {}),
|
|
|
|
function(key, next){
|
|
|
|
iterator(key, object[key], next);
|
|
|
|
},
|
|
|
|
callback
|
|
|
|
);
|
|
|
|
}
|
|
|
|
async.eachObject = asyncEachObject;
|
2016-08-14 12:04:34 +00:00
|
|
|
|
2017-01-29 02:31:09 +00:00
|
|
|
var Compiler = function(options) {
|
|
|
|
this.plugins = options.plugins;
|
2017-02-25 03:49:34 +00:00
|
|
|
this.logger = options.logger;
|
2017-01-29 02:31:09 +00:00
|
|
|
};
|
|
|
|
|
2017-02-17 12:14:44 +00:00
|
|
|
Compiler.prototype.compile_contracts = function(contractFiles, cb) {
|
2017-01-29 02:31:09 +00:00
|
|
|
|
|
|
|
var available_compilers = {
|
|
|
|
//".se": this.compile_serpent
|
2017-02-25 03:49:34 +00:00
|
|
|
".sol": this.compile_solidity.bind(this)
|
2017-01-29 02:31:09 +00:00
|
|
|
};
|
|
|
|
|
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 = {};
|
|
|
|
|
2017-02-17 12:14:44 +00:00
|
|
|
async.eachObject(available_compilers,
|
|
|
|
function(extension, compiler, callback) {
|
|
|
|
// TODO: warn about files it doesn't know how to compile
|
|
|
|
var matchingFiles = contractFiles.filter(function(file) {
|
|
|
|
return (file.filename.match(/\.[0-9a-z]+$/)[0] === extension);
|
|
|
|
});
|
2017-01-29 02:31:09 +00:00
|
|
|
|
2017-02-17 12:14:44 +00:00
|
|
|
compiler.call(compiler, matchingFiles || [], function(compileResult) {
|
|
|
|
Object.assign(compiledObject, compileResult);
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function (err) {
|
|
|
|
cb(compiledObject);
|
|
|
|
}
|
|
|
|
);
|
2016-08-14 12:04:34 +00:00
|
|
|
};
|
|
|
|
|
2017-02-17 12:14:44 +00:00
|
|
|
Compiler.prototype.compile_solidity = function(contractFiles, cb) {
|
2017-02-25 03:49:34 +00:00
|
|
|
var self = this;
|
2016-08-14 12:04:34 +00:00
|
|
|
var input = {};
|
2017-02-25 03:49:34 +00:00
|
|
|
var solcW;
|
|
|
|
async.waterfall([
|
|
|
|
function prepareInput(callback) {
|
|
|
|
for (var i = 0; i < contractFiles.length; i++){
|
|
|
|
// TODO: this depends on the config
|
|
|
|
var filename = contractFiles[i].filename.replace('app/contracts/','');
|
|
|
|
input[filename] = contractFiles[i].content.toString();
|
|
|
|
}
|
|
|
|
callback();
|
|
|
|
},
|
|
|
|
function loadCompiler(callback) {
|
|
|
|
// TODO: there ino need to load this twice
|
|
|
|
self.logger.info("loading solc compiler..");
|
|
|
|
solcW = new SolcW();
|
|
|
|
solcW.load_compiler(function(){
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function compileContracts(callback) {
|
|
|
|
self.logger.info("compiling contracts...");
|
|
|
|
solcW.compile({sources: input}, 1, function(output) {
|
|
|
|
// TODO: check error is handled properly
|
|
|
|
//if (output.errors) {
|
|
|
|
// throw new Error ("Solidity errors: " + output.errors);
|
|
|
|
//}
|
|
|
|
callback(null, output);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function createCompiledObject(output, callback) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
callback(null, compiled_object);
|
|
|
|
}
|
|
|
|
], function(err, result) {
|
|
|
|
cb(result);
|
2017-02-25 00:27:27 +00:00
|
|
|
});
|
2016-08-14 12:04:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Compiler;
|