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

108 lines
3.0 KiB
JavaScript
Raw Normal View History

const asciiTable = require('ascii-table');
const GasEstimator = require('./gasEstimator.js');
class Profiler {
2018-08-01 17:27:50 +00:00
constructor(embark, options) {
this.embark = embark;
this.logger = embark.logger;
this.events = embark.events;
2018-08-01 17:27:50 +00:00
this.plugins = options.plugins;
this.gasEstimator = new GasEstimator(embark);
this.registerConsoleCommand();
2018-08-01 17:27:50 +00:00
this.registerApi();
}
2018-08-27 20:22:53 +00:00
profileJSON(contractName, returnCb) {
const self = this;
let profileObj = {};
profileObj.name = contractName;
profileObj.methods = [];
self.events.request('contracts:contract', contractName, (contract) => {
if (!contract || !contract.deployedAddress) {
return returnCb("-- couldn't profile " + contractName + " - it's not deployed or could be an interface");
}
self.gasEstimator.estimateGas(contractName, function(_err, gastimates, _name) {
contract.abiDefinition.forEach((abiMethod) => {
let methodName = abiMethod.name;
if (['constructor', 'fallback'].indexOf(abiMethod.type) >= 0) {
methodName = abiMethod.type;
}
profileObj.methods.push({
name: methodName,
payable: abiMethod.payable,
mutability: abiMethod.stateMutability,
inputs: abiMethod.inputs || [],
outputs: abiMethod.outputs || [],
gasEstimates: gastimates && gastimates[methodName]
});
});
returnCb(null, profileObj);
});
});
}
profile(contractName, returnCb) {
const self = this;
2018-08-01 18:10:02 +00:00
2018-08-01 19:09:16 +00:00
this.profileJSON(contractName, (err, profileObj) => {
if (err) {
2018-08-27 20:22:53 +00:00
return returnCb(err);
}
2018-08-01 18:10:02 +00:00
let table = new asciiTable(contractName);
table.setHeading('Function', 'Payable', 'Mutability', 'Inputs', 'Outputs', 'Gas Estimates');
profileObj.methods.forEach((method) => {
2018-08-01 19:16:41 +00:00
table.addRow(method.name, method.payable, method.mutability, self.formatParams(method.inputs), self.formatParams(method.outputs), method.gasEstimates);
});
2018-08-27 20:22:53 +00:00
return returnCb(null, table.toString());
});
}
formatParams(params) {
2018-08-01 19:16:41 +00:00
return "(" + (params || []).map(param => param.type).join(',') + ")";
}
registerConsoleCommand() {
const self = this;
self.embark.registerConsoleCommand((cmd, _options) => {
let cmdName = cmd.split(' ')[0];
let contractName = cmd.split(' ')[1];
2018-08-08 12:42:45 +00:00
return {
match: () => cmdName === 'profile',
process: (callback) => {
2018-08-31 10:07:07 +00:00
this.profile(contractName, callback);
2018-08-08 12:42:45 +00:00
}
};
});
}
2018-08-01 17:27:50 +00:00
registerApi() {
const self = this;
let plugin = this.plugins.createPlugin('profiler', {});
plugin.registerAPICall(
'get',
'/embark-api/profiler/:contractName',
(req, res) => {
let contractName = req.params.contractName;
2018-08-01 19:09:16 +00:00
self.profileJSON(contractName, (err, table) => {
if (err) {
2018-08-09 09:38:01 +00:00
return res.send({error: err.message});
2018-08-01 17:27:50 +00:00
}
2018-08-01 19:09:16 +00:00
res.send(table);
2018-08-01 17:27:50 +00:00
});
}
);
}
}
module.exports = Profiler;