Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
gr.uom.java.xmi.decomposition.Visitor Maven / Gradle / Ivy
package gr.uom.java.xmi.decomposition;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.regex.Pattern;
import javax.swing.tree.DefaultMutableTreeNode;
import org.eclipse.jdt.core.dom.ASTNode;
import org.eclipse.jdt.core.dom.ASTVisitor;
import org.eclipse.jdt.core.dom.AbstractTypeDeclaration;
import org.eclipse.jdt.core.dom.AnonymousClassDeclaration;
import org.eclipse.jdt.core.dom.ArrayAccess;
import org.eclipse.jdt.core.dom.ArrayCreation;
import org.eclipse.jdt.core.dom.ArrayInitializer;
import org.eclipse.jdt.core.dom.ArrayType;
import org.eclipse.jdt.core.dom.Assignment;
import org.eclipse.jdt.core.dom.BodyDeclaration;
import org.eclipse.jdt.core.dom.BooleanLiteral;
import org.eclipse.jdt.core.dom.CastExpression;
import org.eclipse.jdt.core.dom.CatchClause;
import org.eclipse.jdt.core.dom.CharacterLiteral;
import org.eclipse.jdt.core.dom.ClassInstanceCreation;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jdt.core.dom.ConditionalExpression;
import org.eclipse.jdt.core.dom.ConstructorInvocation;
import org.eclipse.jdt.core.dom.EnhancedForStatement;
import org.eclipse.jdt.core.dom.Expression;
import org.eclipse.jdt.core.dom.ExpressionMethodReference;
import org.eclipse.jdt.core.dom.FieldAccess;
import org.eclipse.jdt.core.dom.FieldDeclaration;
import org.eclipse.jdt.core.dom.InfixExpression;
import org.eclipse.jdt.core.dom.LambdaExpression;
import org.eclipse.jdt.core.dom.MarkerAnnotation;
import org.eclipse.jdt.core.dom.MethodDeclaration;
import org.eclipse.jdt.core.dom.MethodInvocation;
import org.eclipse.jdt.core.dom.Name;
import org.eclipse.jdt.core.dom.NullLiteral;
import org.eclipse.jdt.core.dom.NumberLiteral;
import org.eclipse.jdt.core.dom.ParameterizedType;
import org.eclipse.jdt.core.dom.ParenthesizedExpression;
import org.eclipse.jdt.core.dom.PostfixExpression;
import org.eclipse.jdt.core.dom.PrefixExpression;
import org.eclipse.jdt.core.dom.PrimitiveType;
import org.eclipse.jdt.core.dom.QualifiedName;
import org.eclipse.jdt.core.dom.QualifiedType;
import org.eclipse.jdt.core.dom.SimpleName;
import org.eclipse.jdt.core.dom.SimpleType;
import org.eclipse.jdt.core.dom.SingleVariableDeclaration;
import org.eclipse.jdt.core.dom.StringLiteral;
import org.eclipse.jdt.core.dom.SuperConstructorInvocation;
import org.eclipse.jdt.core.dom.SuperMethodInvocation;
import org.eclipse.jdt.core.dom.SuperMethodReference;
import org.eclipse.jdt.core.dom.TextBlock;
import org.eclipse.jdt.core.dom.ThisExpression;
import org.eclipse.jdt.core.dom.Type;
import org.eclipse.jdt.core.dom.TypeLiteral;
import org.eclipse.jdt.core.dom.TypeMethodReference;
import org.eclipse.jdt.core.dom.VariableDeclarationFragment;
import org.eclipse.jdt.core.dom.WildcardType;
import gr.uom.java.xmi.VariableDeclarationContainer;
import gr.uom.java.xmi.LocationInfo.CodeElementType;
public class Visitor extends ASTVisitor {
public static final Pattern METHOD_INVOCATION_PATTERN = Pattern.compile("!(\\w|\\.)*@\\w*");
public static final Pattern METHOD_SIGNATURE_PATTERN = Pattern.compile("(public|protected|private|static|\\s) +[\\w\\<\\>\\[\\]]+\\s+(\\w+) *\\([^\\)]*\\) *(\\{?|[^;])");
private CompilationUnit cu;
private String filePath;
private VariableDeclarationContainer container;
private List variables = new ArrayList<>();
private List types = new ArrayList<>();
private List methodInvocations = new ArrayList<>();
private List variableDeclarations = new ArrayList();
private List anonymousClassDeclarations = new ArrayList();
private List textBlocks = new ArrayList<>();
private List stringLiterals = new ArrayList<>();
private List charLiterals = new ArrayList<>();
private List numberLiterals = new ArrayList<>();
private List nullLiterals = new ArrayList<>();
private List booleanLiterals = new ArrayList<>();
private List typeLiterals = new ArrayList<>();
private List creations = new ArrayList<>();
private List infixExpressions = new ArrayList<>();
private List assignments = new ArrayList<>();
private List infixOperators = new ArrayList<>();
private List arrayAccesses = new ArrayList<>();
private List prefixExpressions = new ArrayList<>();
private List postfixExpressions = new ArrayList<>();
private List thisExpressions = new ArrayList<>();
private List arguments = new ArrayList<>();
private List parenthesizedExpressions = new ArrayList<>();
private List castExpressions = new ArrayList<>();
private List ternaryOperatorExpressions = new ArrayList();
private List lambdas = new ArrayList();
private DefaultMutableTreeNode root = new DefaultMutableTreeNode();
private DefaultMutableTreeNode current = root;
public Visitor(CompilationUnit cu, String filePath, VariableDeclarationContainer container) {
this.cu = cu;
this.filePath = filePath;
this.container = container;
}
public boolean visit(ArrayAccess node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.ARRAY_ACCESS, container);
arrayAccesses.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getArrayAccesses().add(expression);
}
return super.visit(node);
}
public boolean visit(PrefixExpression node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.PREFIX_EXPRESSION, container);
prefixExpressions.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getPrefixExpressions().add(expression);
}
return super.visit(node);
}
public boolean visit(PostfixExpression node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.POSTFIX_EXPRESSION, container);
postfixExpressions.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getPostfixExpressions().add(expression);
}
return super.visit(node);
}
public boolean visit(ConditionalExpression node) {
TernaryOperatorExpression ternary = new TernaryOperatorExpression(cu, filePath, node, container);
ternaryOperatorExpressions.add(ternary);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTernaryOperatorExpressions().add(ternary);
}
return super.visit(node);
}
public boolean visit(InfixExpression node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.INFIX_EXPRESSION, container);
infixExpressions.add(expression);
infixOperators.add(node.getOperator().toString());
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getInfixExpressions().add(expression);
anonymous.getInfixOperators().add(node.getOperator().toString());
}
return super.visit(node);
}
public boolean visit(Assignment node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.ASSIGNMENT, container);
assignments.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getAssignments().add(expression);
}
return super.visit(node);
}
public boolean visit(ClassInstanceCreation node) {
List arguments = node.arguments();
for(Expression argument : arguments) {
processArgument(argument);
}
ObjectCreation creation = new ObjectCreation(cu, filePath, node, container);
creations.add(creation);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getCreations().add(creation);
}
return super.visit(node);
}
public boolean visit(ArrayCreation node) {
ObjectCreation creation = new ObjectCreation(cu, filePath, node, container);
String nodeAsString = stringify(node);
creations.add(creation);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getCreations().add(creation);
}
ArrayInitializer initializer = node.getInitializer();
if(initializer != null) {
List expressions = initializer.expressions();
if(expressions.size() > 10) {
return false;
}
}
return super.visit(node);
}
public boolean visit(VariableDeclarationFragment node) {
if(!(node.getParent() instanceof LambdaExpression)) {
VariableDeclaration variableDeclaration = new VariableDeclaration(cu, filePath, node, container);
variableDeclarations.add(variableDeclaration);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariableDeclarations().add(variableDeclaration);
}
}
return super.visit(node);
}
public boolean visit(SingleVariableDeclaration node) {
VariableDeclaration variableDeclaration = new VariableDeclaration(cu, filePath, node, container, node.isVarargs());
variableDeclarations.add(variableDeclaration);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariableDeclarations().add(variableDeclaration);
}
return super.visit(node);
}
public boolean visit(AnonymousClassDeclaration node) {
DefaultMutableTreeNode childNode = insertNode(node);
AnonymousClassDeclarationObject childAnonymous = (AnonymousClassDeclarationObject)childNode.getUserObject();
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject currentAnonymous = (AnonymousClassDeclarationObject)current.getUserObject();
currentAnonymous.getAnonymousClassDeclarations().add(childAnonymous);
}
anonymousClassDeclarations.add(childAnonymous);
this.current = childNode;
return super.visit(node);
}
public void endVisit(AnonymousClassDeclaration node) {
DefaultMutableTreeNode parentNode = deleteNode(node);
removeAnonymousData();
this.current = parentNode;
}
private void removeAnonymousData() {
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
removeLast(this.variables, anonymous.getVariables());
removeLastString(this.types, anonymous.getTypes());
removeLast(this.methodInvocations, anonymous.getMethodInvocations());
removeLast(this.creations, anonymous.getCreations());
this.variableDeclarations.removeAll(anonymous.getVariableDeclarations());
removeLast(this.textBlocks, anonymous.getTextBlocks());
removeLast(this.stringLiterals, anonymous.getStringLiterals());
removeLast(this.charLiterals, anonymous.getCharLiterals());
removeLast(this.nullLiterals, anonymous.getNullLiterals());
removeLast(this.booleanLiterals, anonymous.getBooleanLiterals());
removeLast(this.typeLiterals, anonymous.getTypeLiterals());
removeLast(this.numberLiterals, anonymous.getNumberLiterals());
removeLast(this.infixExpressions, anonymous.getInfixExpressions());
removeLast(this.assignments, anonymous.getAssignments());
removeLastString(this.infixOperators, anonymous.getInfixOperators());
removeLast(this.postfixExpressions, anonymous.getPostfixExpressions());
removeLast(this.prefixExpressions, anonymous.getPrefixExpressions());
removeLast(this.thisExpressions, anonymous.getThisExpressions());
removeLast(this.parenthesizedExpressions, anonymous.getParenthesizedExpressions());
removeLast(this.castExpressions, anonymous.getCastExpressions());
removeLast(this.arguments, anonymous.getArguments());
this.ternaryOperatorExpressions.removeAll(anonymous.getTernaryOperatorExpressions());
this.anonymousClassDeclarations.removeAll(anonymous.getAnonymousClassDeclarations());
this.lambdas.removeAll(anonymous.getLambdas());
removeLast(this.arrayAccesses, anonymous.getArrayAccesses());
}
}
private static void removeLastString(List parentList, List childList) {
for(int i=childList.size()-1; i>=0; i--) {
String element = childList.get(i);
int lastIndex = parentList.lastIndexOf(element);
parentList.remove(lastIndex);
}
}
private static void removeLast(List extends LeafExpression> parentList, List extends LeafExpression> childList) {
for(int i=childList.size()-1; i>=0; i--) {
LeafExpression element = childList.get(i);
int lastIndex = parentList.lastIndexOf(element);
parentList.remove(lastIndex);
}
}
private DefaultMutableTreeNode deleteNode(AnonymousClassDeclaration childAnonymous) {
Enumeration enumeration = root.postorderEnumeration();
DefaultMutableTreeNode childNode = findNode(childAnonymous);
DefaultMutableTreeNode parentNode = root;
while(enumeration.hasMoreElements()) {
DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)enumeration.nextElement();
AnonymousClassDeclarationObject currentAnonymous = (AnonymousClassDeclarationObject)currentNode.getUserObject();
if(currentAnonymous != null && isParent(childAnonymous, currentAnonymous.getAstNode())) {
parentNode = currentNode;
break;
}
}
parentNode.remove(childNode);
AnonymousClassDeclarationObject childAnonymousObject = (AnonymousClassDeclarationObject)childNode.getUserObject();
childAnonymousObject.setAstNode(null);
return parentNode;
}
private DefaultMutableTreeNode insertNode(AnonymousClassDeclaration childAnonymous) {
Enumeration enumeration = root.postorderEnumeration();
AnonymousClassDeclarationObject anonymousObject = new AnonymousClassDeclarationObject(cu, filePath, childAnonymous);
DefaultMutableTreeNode childNode = new DefaultMutableTreeNode(anonymousObject);
DefaultMutableTreeNode parentNode = root;
while(enumeration.hasMoreElements()) {
DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)enumeration.nextElement();
AnonymousClassDeclarationObject currentAnonymous = (AnonymousClassDeclarationObject)currentNode.getUserObject();
if(currentAnonymous != null && isParent(childAnonymous, currentAnonymous.getAstNode())) {
parentNode = currentNode;
break;
}
}
parentNode.add(childNode);
return childNode;
}
private DefaultMutableTreeNode findNode(AnonymousClassDeclaration anonymous) {
Enumeration enumeration = root.postorderEnumeration();
while(enumeration.hasMoreElements()) {
DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)enumeration.nextElement();
AnonymousClassDeclarationObject currentAnonymous = (AnonymousClassDeclarationObject)currentNode.getUserObject();
if(currentAnonymous != null && currentAnonymous.getAstNode().equals(anonymous)) {
return currentNode;
}
}
return null;
}
private boolean isParent(ASTNode child, ASTNode parent) {
ASTNode current = child;
while(current.getParent() != null) {
if(current.getParent().equals(parent))
return true;
current = current.getParent();
}
return false;
}
public boolean visit(TextBlock node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.TEXT_BLOCK, container);
textBlocks.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTextBlocks().add(expression);
}
return super.visit(node);
}
public boolean visit(StringLiteral node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.STRING_LITERAL, container);
stringLiterals.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getStringLiterals().add(expression);
}
return super.visit(node);
}
public boolean visit(CharacterLiteral node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.CHAR_LITERAL, container);
charLiterals.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getCharLiterals().add(expression);
}
return super.visit(node);
}
public boolean visit(NumberLiteral node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.NUMBER_LITERAL, container);
numberLiterals.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getNumberLiterals().add(expression);
}
return super.visit(node);
}
public boolean visit(NullLiteral node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.NULL_LITERAL, container);
nullLiterals.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getNullLiterals().add(expression);
}
return super.visit(node);
}
public boolean visit(BooleanLiteral node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.BOOLEAN_LITERAL, container);
booleanLiterals.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getBooleanLiterals().add(expression);
}
return super.visit(node);
}
public boolean visit(TypeLiteral node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.TYPE_LITERAL, container);
typeLiterals.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTypeLiterals().add(expression);
}
return super.visit(node);
}
public boolean visit(ThisExpression node) {
if(!(node.getParent() instanceof FieldAccess)) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.THIS_EXPRESSION, container);
thisExpressions.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getThisExpressions().add(expression);
}
}
return super.visit(node);
}
public boolean visit(SimpleName node) {
if(node.getParent() instanceof FieldAccess && ((FieldAccess)node.getParent()).getExpression() instanceof ThisExpression) {
FieldAccess fieldAccess = (FieldAccess)node.getParent();
LeafExpression fieldAccessExpression = new LeafExpression(cu, filePath, fieldAccess, CodeElementType.FIELD_ACCESS, container);
variables.add(fieldAccessExpression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariables().add(fieldAccessExpression);
}
}
else if(node.getParent() instanceof MethodInvocation &&
((MethodInvocation)node.getParent()).getName().equals(node)) {
// skip method invocation names
}
else if(node.getParent() instanceof SuperMethodInvocation &&
((SuperMethodInvocation)node.getParent()).getName().equals(node)) {
// skip super method invocation names
}
else if(node.getParent() instanceof Type) {
// skip type names
}
else if(node.getParent() instanceof MarkerAnnotation &&
((MarkerAnnotation)node.getParent()).getTypeName().equals(node)) {
// skip marker annotation names
}
else if(node.getParent() instanceof MethodDeclaration &&
((MethodDeclaration)node.getParent()).getName().equals(node)) {
// skip method declaration names
}
else if(node.getParent() instanceof SingleVariableDeclaration &&
node.getParent().getParent() instanceof MethodDeclaration) {
// skip method parameter names
}
else if(node.getParent() instanceof SingleVariableDeclaration &&
node.getParent().getParent() instanceof CatchClause) {
// skip catch clause formal parameter names
}
else if(node.getParent() instanceof QualifiedName &&
(node.getParent().getParent() instanceof QualifiedName ||
node.getParent().getParent() instanceof MethodInvocation ||
node.getParent().getParent() instanceof SuperMethodInvocation ||
node.getParent().getParent() instanceof ClassInstanceCreation)) {
// skip names being part of qualified names
}
else {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.SIMPLE_NAME, container);
variables.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariables().add(expression);
}
}
return super.visit(node);
}
public boolean visit(ArrayType node) {
types.add(stringify(node));
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTypes().add(stringify(node));
}
return false;
}
public boolean visit(ParameterizedType node) {
types.add(stringify(node));
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTypes().add(stringify(node));
}
return false;
}
public boolean visit(WildcardType node) {
types.add(stringify(node));
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTypes().add(stringify(node));
}
return false;
}
public boolean visit(QualifiedType node) {
types.add(stringify(node));
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTypes().add(stringify(node));
}
return false;
}
public boolean visit(PrimitiveType node) {
types.add(stringify(node));
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTypes().add(stringify(node));
}
return false;
}
public boolean visit(SimpleType node) {
Name name = node.getName();
types.add(name.getFullyQualifiedName());
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTypes().add(name.getFullyQualifiedName());
}
return false;
}
public boolean visit(MethodInvocation node) {
List arguments = node.arguments();
for(Expression argument : arguments) {
processArgument(argument);
}
OperationInvocation invocation = new OperationInvocation(cu, filePath, node, container);
methodInvocations.add(invocation);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getMethodInvocations().add(invocation);
}
return super.visit(node);
}
public boolean visit(ExpressionMethodReference node) {
MethodReference reference = new MethodReference(cu, filePath, node, container);
methodInvocations.add(reference);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getMethodInvocations().add(reference);
}
return super.visit(node);
}
public boolean visit(SuperMethodReference node) {
MethodReference reference = new MethodReference(cu, filePath, node, container);
methodInvocations.add(reference);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getMethodInvocations().add(reference);
}
return super.visit(node);
}
public boolean visit(TypeMethodReference node) {
MethodReference reference = new MethodReference(cu, filePath, node, container);
methodInvocations.add(reference);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getMethodInvocations().add(reference);
}
return super.visit(node);
}
public static String processMethodInvocation(MethodInvocation node) {
StringBuilder sb = new StringBuilder();
sb.append(node.getName().getIdentifier());
sb.append("(");
List arguments = node.arguments();
if(arguments.size() > 0) {
for(int i=0; i arguments = node.arguments();
if(arguments.size() > 0) {
for(int i=0; i arguments = node.arguments();
for(Expression argument : arguments) {
processArgument(argument);
}
OperationInvocation invocation = new OperationInvocation(cu, filePath, node, container);
methodInvocations.add(invocation);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getMethodInvocations().add(invocation);
}
return super.visit(node);
}
public boolean visit(SuperConstructorInvocation node) {
List arguments = node.arguments();
for(Expression argument : arguments) {
processArgument(argument);
}
OperationInvocation invocation = new OperationInvocation(cu, filePath, node, container);
methodInvocations.add(invocation);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getMethodInvocations().add(invocation);
}
return super.visit(node);
}
public boolean visit(ConstructorInvocation node) {
List arguments = node.arguments();
for(Expression argument : arguments) {
processArgument(argument);
}
OperationInvocation invocation = new OperationInvocation(cu, filePath, node, container);
methodInvocations.add(invocation);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getMethodInvocations().add(invocation);
}
return super.visit(node);
}
private void processArgument(Expression argument) {
if(argument instanceof SuperMethodInvocation ||
argument instanceof Name ||
argument instanceof TextBlock ||
argument instanceof StringLiteral ||
argument instanceof BooleanLiteral ||
argument instanceof NumberLiteral ||
(argument instanceof FieldAccess && ((FieldAccess)argument).getExpression() instanceof ThisExpression) ||
(argument instanceof ArrayAccess && invalidArrayAccess((ArrayAccess)argument)) ||
(argument instanceof InfixExpression && invalidInfix((InfixExpression)argument)) ||
castExpressionInParenthesizedExpression(argument))
return;
if(argument instanceof ExpressionMethodReference) {
LambdaExpressionObject lambda = new LambdaExpressionObject(cu, filePath, (ExpressionMethodReference)argument, container);
lambdas.add(lambda);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getLambdas().add(lambda);
}
}
else if(argument instanceof SuperMethodReference) {
LambdaExpressionObject lambda = new LambdaExpressionObject(cu, filePath, (SuperMethodReference)argument, container);
lambdas.add(lambda);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getLambdas().add(lambda);
}
}
else if(argument instanceof TypeMethodReference) {
LambdaExpressionObject lambda = new LambdaExpressionObject(cu, filePath, (TypeMethodReference)argument, container);
lambdas.add(lambda);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getLambdas().add(lambda);
}
}
LeafExpression expression = new LeafExpression(cu, filePath, argument, CodeElementType.EXPRESSION, container);
this.arguments.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getArguments().add(expression);
}
}
private boolean castExpressionInParenthesizedExpression(Expression argument) {
if(argument instanceof ParenthesizedExpression) {
Expression parenthesizedExpression = ((ParenthesizedExpression)argument).getExpression();
if(parenthesizedExpression instanceof CastExpression) {
CastExpression castExpression = (CastExpression)parenthesizedExpression;
if(castExpression.getExpression() instanceof SimpleName) {
return true;
}
}
}
return false;
}
public boolean visit(QualifiedName node) {
Name qualifier = node.getQualifier();
if(Character.isUpperCase(qualifier.getFullyQualifiedName().charAt(0))) {
types.add(qualifier.getFullyQualifiedName());
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getTypes().add(qualifier.getFullyQualifiedName());
}
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.QUALIFIED_NAME, container);
variables.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariables().add(expression);
}
}
else if(qualifier instanceof SimpleName && !(node.getParent() instanceof QualifiedName)) {
String qualifierIdentifier = ((SimpleName)qualifier).getIdentifier();
MethodDeclaration parentMethodDeclaration = findParentMethodDeclaration(node);
if(parentMethodDeclaration != null) {
boolean qualifierIsParameter = false;
List parameters = parentMethodDeclaration.parameters();
for(SingleVariableDeclaration parameter : parameters) {
if(parameter.getName().getIdentifier().equals(qualifierIdentifier)) {
qualifierIsParameter = true;
break;
}
}
boolean qualifierIsField = false;
if(!qualifierIsParameter && !parentMethodDeclaration.isConstructor()) {
AbstractTypeDeclaration parentTypeDeclaration = findParentTypeDeclaration(parentMethodDeclaration);
if(parentTypeDeclaration != null) {
List bodyDeclarations = parentTypeDeclaration.bodyDeclarations();
for(BodyDeclaration declaration : bodyDeclarations) {
if(declaration instanceof FieldDeclaration) {
FieldDeclaration fieldDeclaration = (FieldDeclaration)declaration;
List fragments = fieldDeclaration.fragments();
for(VariableDeclarationFragment fragment : fragments) {
if(fragment.getName().getIdentifier().equals(qualifierIdentifier)) {
qualifierIsField = true;
break;
}
}
if(qualifierIsField) {
break;
}
}
}
}
}
if(qualifierIsParameter || qualifierIsField || node.getName().getIdentifier().equals("length")) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.QUALIFIED_NAME, container);
variables.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariables().add(expression);
}
}
}
EnhancedForStatement enhancedFor = findParentEnhancedForStatement(node);
if(enhancedFor != null) {
if(enhancedFor.getParameter().getName().getIdentifier().equals(qualifierIdentifier)) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.QUALIFIED_NAME, container);
variables.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariables().add(expression);
}
}
}
}
else if(qualifier instanceof QualifiedName && !(node.getParent() instanceof QualifiedName)) {
LeafExpression expression = new LeafExpression(cu, filePath, qualifier, CodeElementType.QUALIFIED_NAME, container);
variables.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariables().add(expression);
}
}
return super.visit(node);
}
private EnhancedForStatement findParentEnhancedForStatement(ASTNode node) {
ASTNode parent = node.getParent();
while(parent != null) {
if(parent instanceof EnhancedForStatement) {
return (EnhancedForStatement)parent;
}
parent = parent.getParent();
}
return null;
}
private AbstractTypeDeclaration findParentTypeDeclaration(ASTNode node) {
ASTNode parent = node.getParent();
while(parent != null) {
if(parent instanceof AbstractTypeDeclaration) {
return (AbstractTypeDeclaration)parent;
}
parent = parent.getParent();
}
return null;
}
private MethodDeclaration findParentMethodDeclaration(ASTNode node) {
ASTNode parent = node.getParent();
while(parent != null) {
if(parent instanceof MethodDeclaration) {
return (MethodDeclaration)parent;
}
parent = parent.getParent();
}
return null;
}
public boolean visit(CastExpression node) {
Expression castExpression = node.getExpression();
if(castExpression instanceof SimpleName) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.CAST_EXPRESSION, container);
variables.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getVariables().add(expression);
}
}
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.CAST_EXPRESSION, container);
castExpressions.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getCastExpressions().add(expression);
}
return super.visit(node);
}
public boolean visit(LambdaExpression node) {
LambdaExpressionObject lambda = new LambdaExpressionObject(cu, filePath, node, container);
lambdas.add(lambda);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getLambdas().add(lambda);
}
return false;
}
public boolean visit(ParenthesizedExpression node) {
LeafExpression expression = new LeafExpression(cu, filePath, node, CodeElementType.PARENTHESIZED_EXPRESSION, container);
parenthesizedExpressions.add(expression);
if(current.getUserObject() != null) {
AnonymousClassDeclarationObject anonymous = (AnonymousClassDeclarationObject)current.getUserObject();
anonymous.getParenthesizedExpressions().add(expression);
}
return super.visit(node);
}
public List getMethodInvocations() {
return methodInvocations;
}
public List getVariableDeclarations() {
return variableDeclarations;
}
public List getTypes() {
return types;
}
public List getAnonymousClassDeclarations() {
return anonymousClassDeclarations;
}
public List getTextBlocks() {
return textBlocks;
}
public List getStringLiterals() {
return stringLiterals;
}
public List getCharLiterals() {
return charLiterals;
}
public List getNumberLiterals() {
return numberLiterals;
}
public List getNullLiterals() {
return nullLiterals;
}
public List getBooleanLiterals() {
return booleanLiterals;
}
public List getTypeLiterals() {
return typeLiterals;
}
public List getCreations() {
return creations;
}
public List getInfixExpressions() {
return infixExpressions;
}
public List getAssignments() {
return assignments;
}
public List getInfixOperators() {
return infixOperators;
}
public List getArrayAccesses() {
return arrayAccesses;
}
public List getPrefixExpressions() {
return prefixExpressions;
}
public List getPostfixExpressions() {
return postfixExpressions;
}
public List getThisExpressions() {
return thisExpressions;
}
public List getArguments() {
return this.arguments;
}
public List getParenthesizedExpressions() {
return parenthesizedExpressions;
}
public List getCastExpressions() {
return castExpressions;
}
public List getTernaryOperatorExpressions() {
return ternaryOperatorExpressions;
}
public List getVariables() {
return variables;
}
public List getLambdas() {
return lambdas;
}
private static boolean invalidArrayAccess(ArrayAccess e) {
return e.getArray() instanceof SimpleName && simpleNameOrNumberLiteral(e.getIndex());
}
private static boolean invalidInfix(InfixExpression e) {
return simpleNameOrNumberLiteral(e.getLeftOperand()) && simpleNameOrNumberLiteral(e.getRightOperand());
}
private static boolean simpleNameOrNumberLiteral(Expression e) {
return e instanceof SimpleName || e instanceof NumberLiteral;
}
public static String stringify(ASTNode node) {
ASTFlattener printer = new ASTFlattener();
node.accept(printer);
return printer.getResult();
}
}