You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
226 lines
7.1 KiB
226 lines
7.1 KiB
/**
|
|
* Methods in this file walk the AST and call the instrumenter
|
|
* functions where appropriate, which determine where to inject events.
|
|
* (Listed in alphabetical order)
|
|
*/
|
|
const Registrar = require('./registrar');
|
|
const register = new Registrar();
|
|
|
|
const parse = {};
|
|
|
|
parse.AssignmentExpression = function(contract, expression) {
|
|
register.statement(contract, expression);
|
|
};
|
|
|
|
parse.Block = function(contract, expression) {
|
|
for (let x = 0; x < expression.statements.length; x++) {
|
|
register.line(contract, expression.statements[x]);
|
|
parse[expression.statements[x].type] &&
|
|
parse[expression.statements[x].type](contract, expression.statements[x]);
|
|
}
|
|
};
|
|
|
|
parse.BinaryOperation = function(contract, expression, skipStatementRegistry) {
|
|
// Regular binary operation
|
|
if (!skipStatementRegistry){
|
|
register.statement(contract, expression);
|
|
|
|
// LogicalOR conditional search...
|
|
} else {
|
|
parse[expression.left.type] &&
|
|
parse[expression.left.type](contract, expression.left, true);
|
|
|
|
parse[expression.right.type] &&
|
|
parse[expression.right.type](contract, expression.right, true);
|
|
|
|
if (expression.operator === '||'){
|
|
register.logicalOR(contract, expression);
|
|
}
|
|
}
|
|
}
|
|
|
|
parse.TupleExpression = function(contract, expression, skipStatementRegistry) {
|
|
expression.components.forEach(component => {
|
|
parse[component.type] &&
|
|
parse[component.type](contract, component, skipStatementRegistry);
|
|
});
|
|
}
|
|
|
|
parse.FunctionCall = function(contract, expression, skipStatementRegistry) {
|
|
// In any given chain of call expressions, only the last one will fail this check.
|
|
// This makes sure we don't instrument a chain of expressions multiple times.
|
|
if (expression.expression.type !== 'FunctionCall') {
|
|
|
|
// Don't register sub-expressions (like intermediate method calls)
|
|
if (!skipStatementRegistry){
|
|
register.statement(contract, expression);
|
|
}
|
|
|
|
if (expression.expression.name === 'assert' || expression.expression.name === 'require') {
|
|
register.assertOrRequire(contract, expression);
|
|
expression.arguments.forEach(arg => {
|
|
parse[arg.type] && parse[arg.type](contract, arg, true);
|
|
});
|
|
}
|
|
parse[expression.expression.type] &&
|
|
parse[expression.expression.type](contract, expression.expression);
|
|
} else {
|
|
parse[expression.expression.type] &&
|
|
parse[expression.expression.type](contract, expression.expression);
|
|
}
|
|
};
|
|
|
|
parse.Conditional = function(contract, expression, skipStatementRegistry) {
|
|
if (!skipStatementRegistry){
|
|
register.statement(contract, expression);
|
|
}
|
|
|
|
parse[expression.condition.type] &&
|
|
parse[expression.condition.type](contract, expression.condition, skipStatementRegistry);
|
|
};
|
|
|
|
parse.ContractDefinition = function(contract, expression) {
|
|
parse.ContractOrLibraryStatement(contract, expression);
|
|
};
|
|
|
|
parse.ContractOrLibraryStatement = function(contract, expression) {
|
|
|
|
// We need to define a method to pass coverage hashes into at top of each contract.
|
|
// This lets us get a fresh stack for the hash and avoid stack-too-deep errors.
|
|
if (expression.kind !== 'interface'){
|
|
let start = 0;
|
|
|
|
// It's possible a base contract will have constructor string arg
|
|
// which contains an open curly brace. Skip ahead pass the bases...
|
|
if (expression.baseContracts && expression.baseContracts.length){
|
|
for (let base of expression.baseContracts ){
|
|
if (base.range[1] > start){
|
|
start = base.range[1];
|
|
}
|
|
}
|
|
} else {
|
|
start = expression.range[0];
|
|
}
|
|
|
|
const end = contract.instrumented.slice(start).indexOf('{') + 1;
|
|
const loc = start + end;;
|
|
|
|
(contract.injectionPoints[loc])
|
|
? contract.injectionPoints[loc].push({ type: 'injectHashMethod'})
|
|
: contract.injectionPoints[loc] = [{ type: 'injectHashMethod'}];
|
|
}
|
|
|
|
if (expression.subNodes) {
|
|
expression.subNodes.forEach(construct => {
|
|
parse[construct.type] &&
|
|
parse[construct.type](contract, construct);
|
|
});
|
|
}
|
|
};
|
|
|
|
parse.EmitStatement = function(contract, expression){
|
|
register.statement(contract, expression);
|
|
};
|
|
|
|
parse.ExpressionStatement = function(contract, content) {
|
|
parse[content.expression.type] &&
|
|
parse[content.expression.type](contract, content.expression);
|
|
};
|
|
|
|
parse.ForStatement = function(contract, expression) {
|
|
register.statement(contract, expression);
|
|
parse[expression.body.type] &&
|
|
parse[expression.body.type](contract, expression.body);
|
|
};
|
|
|
|
parse.FunctionDefinition = function(contract, expression) {
|
|
parse.Modifiers(contract, expression.modifiers);
|
|
if (expression.body) {
|
|
register.functionDeclaration(contract, expression);
|
|
parse[expression.body.type] &&
|
|
parse[expression.body.type](contract, expression.body);
|
|
}
|
|
};
|
|
|
|
parse.IfStatement = function(contract, expression) {
|
|
register.statement(contract, expression);
|
|
register.ifStatement(contract, expression);
|
|
|
|
parse[expression.condition.type] &&
|
|
parse[expression.condition.type](contract, expression.condition, true);
|
|
|
|
parse[expression.trueBody.type] &&
|
|
parse[expression.trueBody.type](contract, expression.trueBody);
|
|
|
|
if (expression.falseBody) {
|
|
parse[expression.falseBody.type] &&
|
|
parse[expression.falseBody.type](contract, expression.falseBody);
|
|
}
|
|
};
|
|
|
|
// TODO: Investigate Node structure
|
|
/*parse.MemberAccess = function(contract, expression) {
|
|
parse[expression.object.type] &&
|
|
parse[expression.object.type](contract, expression.object);
|
|
};*/
|
|
|
|
parse.Modifiers = function(contract, modifiers) {
|
|
if (modifiers) {
|
|
modifiers.forEach(modifier => {
|
|
parse[modifier.type] && parse[modifier.type](contract, modifier);
|
|
});
|
|
}
|
|
};
|
|
|
|
parse.ModifierDefinition = function(contract, expression) {
|
|
register.functionDeclaration(contract, expression);
|
|
parse[expression.body.type] &&
|
|
parse[expression.body.type](contract, expression.body);
|
|
};
|
|
|
|
parse.NewExpression = function(contract, expression) {
|
|
parse[expression.typeName.type] &&
|
|
parse[expression.typeName.type](contract, expression.typeName);
|
|
};
|
|
|
|
parse.SourceUnit = function(contract, expression) {
|
|
expression.children.forEach(construct => {
|
|
parse[construct.type] &&
|
|
parse[construct.type](contract, construct);
|
|
});
|
|
};
|
|
|
|
parse.ReturnStatement = function(contract, expression) {
|
|
register.statement(contract, expression);
|
|
|
|
expression.expression &&
|
|
parse[expression.expression.type] &&
|
|
parse[expression.expression.type](contract, expression.expression, true);
|
|
};
|
|
|
|
// TODO:Investigate node structure
|
|
/*parse.UnaryOperation = function(contract, expression) {
|
|
parse[subExpression.argument.type] &&
|
|
parse[subExpression.argument.type](contract, expression.argument);
|
|
};*/
|
|
|
|
parse.UsingStatement = function (contract, expression) {
|
|
parse[expression.for.type] &&
|
|
parse[expression.for.type](contract, expression.for);
|
|
};
|
|
|
|
parse.VariableDeclarationStatement = function (contract, expression) {
|
|
register.statement(contract, expression);
|
|
};
|
|
|
|
parse.WhileStatement = function (contract, expression) {
|
|
register.statement(contract, expression);
|
|
|
|
parse[expression.condition.type] &&
|
|
parse[expression.condition.type](contract, expression.condition, true);
|
|
|
|
parse[expression.body.type] &&
|
|
parse[expression.body.type](contract, expression.body);
|
|
};
|
|
|
|
module.exports = parse;
|
|
|