embark-area-51/lib/modules/vyper/index.js

79 lines
2.6 KiB
JavaScript
Raw Normal View History

2018-04-12 17:24:54 +00:00
let async = require('../../utils/async_extend.js');
const shelljs = require('shelljs');
const path = require('path');
2018-04-12 17:24:54 +00:00
class Vyper {
constructor(embark, options) {
this.logger = embark.logger;
this.events = embark.events;
this.contractDirectories = options.contractDirectories;
embark.registerCompiler(".py", this.compile_vyper.bind(this));
}
compile_vyper(contractFiles, cb) {
let self = this;
async.waterfall([
function compileContracts(callback) {
self.logger.info("compiling vyper contracts...");
const compiled_object = {};
2018-04-12 17:24:54 +00:00
async.each(contractFiles,
function (file, fileCb) {
2018-04-13 19:48:19 +00:00
const className = path.basename(file.filename).split('.')[0];
compiled_object[className] = {};
async.parallel([
function getByteCode(paraCb) {
2018-04-13 19:48:19 +00:00
shelljs.exec(`vyper ${file.filename}`, {silent: true}, (code, stdout, stderr) => {
if (stderr) {
return paraCb(stderr);
}
if (code !== 0) {
2018-04-13 19:48:19 +00:00
return paraCb(`Vyper exited with error code ${code}`);
}
if (!stdout) {
return paraCb('Execution returned no bytecode');
}
2018-04-13 19:48:19 +00:00
const byteCode = stdout.replace(/\n/g, '');
compiled_object[className].runtimeBytecode = byteCode;
compiled_object[className].realRuntimeBytecode = byteCode;
compiled_object[className].code = byteCode;
paraCb();
2018-04-12 17:24:54 +00:00
});
},
function getABI(paraCb) {
2018-04-13 19:48:19 +00:00
shelljs.exec(`vyper -f json ${file.filename}`, {silent: true}, (code, stdout, stderr) => {
if (stderr) {
return paraCb(stderr);
}
if (code !== 0) {
2018-04-13 19:48:19 +00:00
return paraCb(`Vyper exited with error code ${code}`);
}
if (!stdout) {
return paraCb('Execution returned no ABI');
}
let ABI = [];
try {
ABI = JSON.parse(stdout.replace(/\n/g, ''));
} catch (e) {
return paraCb('ABI is not valid JSON');
}
2018-04-13 19:48:19 +00:00
compiled_object[className].abiDefinition = ABI;
paraCb();
});
}
], fileCb);
},
function (err) {
callback(err, compiled_object);
});
2018-04-12 17:24:54 +00:00
}
], function (err, result) {
cb(err, result);
});
}
}
module.exports = Vyper;