2018-05-08 15:30:46 +00:00
|
|
|
const asciiTable = require('ascii-table');
|
2018-07-07 13:30:47 +00:00
|
|
|
const GasEstimator = require('./gasEstimator.js');
|
2018-05-08 15:30:46 +00:00
|
|
|
|
|
|
|
class Profiler {
|
2018-08-01 17:27:50 +00:00
|
|
|
constructor(embark, options) {
|
2018-05-08 15:30:46 +00:00
|
|
|
this.embark = embark;
|
|
|
|
this.logger = embark.logger;
|
|
|
|
this.events = embark.events;
|
2018-08-01 17:27:50 +00:00
|
|
|
this.plugins = options.plugins;
|
2018-06-06 19:37:08 +00:00
|
|
|
this.gasEstimator = new GasEstimator(embark);
|
2018-05-08 15:30:46 +00:00
|
|
|
|
|
|
|
this.registerConsoleCommand();
|
2018-08-01 17:27:50 +00:00
|
|
|
this.registerApi();
|
2018-05-08 15:30:46 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 12:42:45 +00:00
|
|
|
profile(contractName, contract, callback) {
|
2018-05-08 15:30:46 +00:00
|
|
|
const self = this;
|
2018-08-01 18:10:02 +00:00
|
|
|
|
2018-08-01 19:09:16 +00:00
|
|
|
this.profileJSON(contractName, (err, profileObj) => {
|
2018-06-12 17:10:35 +00:00
|
|
|
if (err) {
|
2018-08-10 13:22:45 +00:00
|
|
|
return callback(null, "error found in method: " + name + " error: " + JSON.stringify(err));
|
2018-06-12 17:10:35 +00:00
|
|
|
}
|
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) => {
|
|
|
|
table.addRow(method.name, method.payable, method.mutability, method.inputs, method.outputs, method.gasEstimates);
|
2018-06-08 19:26:32 +00:00
|
|
|
});
|
2018-08-08 12:42:45 +00:00
|
|
|
callback(null, table.toString());
|
2018-05-08 15:30:46 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
formatParams(params) {
|
2018-05-08 15:53:34 +00:00
|
|
|
if (!params || !params.length) {
|
|
|
|
return "()";
|
2018-05-08 15:30:46 +00:00
|
|
|
}
|
2018-05-08 15:53:34 +00:00
|
|
|
let paramString = "(";
|
|
|
|
let mappedParams = params.map(param => param.type);
|
|
|
|
paramString += mappedParams.join(',');
|
|
|
|
paramString += ")";
|
|
|
|
return paramString;
|
2018-05-08 15:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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) => {
|
|
|
|
self.events.request('contracts:contract', contractName, (contract) => {
|
|
|
|
if (!contract || !contract.deployedAddress) {
|
2018-08-10 13:22:45 +00:00
|
|
|
return callback(null, "-- couldn't profile " + contractName + " - it's not deployed or could be an interface");
|
2018-08-08 12:42:45 +00:00
|
|
|
}
|
|
|
|
this.profile(contractName, contract, callback);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2018-05-08 15:30:46 +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) {
|
|
|
|
return res.send({error: err});
|
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
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-05-08 15:30:46 +00:00
|
|
|
}
|
|
|
|
|
2018-05-08 15:41:38 +00:00
|
|
|
module.exports = Profiler;
|