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.LambdaExpressionObject Maven / Gradle / Ivy
package gr.uom.java.xmi.decomposition;
import static gr.uom.java.xmi.Constants.JAVA;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import org.eclipse.jdt.core.dom.Block;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jdt.core.dom.Expression;
import org.eclipse.jdt.core.dom.ExpressionMethodReference;
import org.eclipse.jdt.core.dom.LambdaExpression;
import org.eclipse.jdt.core.dom.SingleVariableDeclaration;
import org.eclipse.jdt.core.dom.SuperMethodReference;
import org.eclipse.jdt.core.dom.Type;
import org.eclipse.jdt.core.dom.TypeMethodReference;
import org.eclipse.jdt.core.dom.VariableDeclarationFragment;
import gr.uom.java.xmi.LocationInfo;
import gr.uom.java.xmi.LocationInfo.CodeElementType;
import gr.uom.java.xmi.diff.CodeRange;
import gr.uom.java.xmi.LocationInfoProvider;
import gr.uom.java.xmi.UMLAnonymousClass;
import gr.uom.java.xmi.UMLComment;
import gr.uom.java.xmi.UMLParameter;
import gr.uom.java.xmi.UMLType;
import gr.uom.java.xmi.VariableDeclarationContainer;
public class LambdaExpressionObject implements VariableDeclarationContainer, LocationInfoProvider {
private LocationInfo locationInfo;
private OperationBody body;
private AbstractExpression expression;
private List parameters = new ArrayList();
private List umlParameters = new ArrayList();
private boolean hasParentheses = false;
private VariableDeclarationContainer owner;
public LambdaExpressionObject(CompilationUnit cu, String filePath, LambdaExpression lambda, VariableDeclarationContainer owner) {
this.owner = owner;
this.locationInfo = new LocationInfo(cu, filePath, lambda, CodeElementType.LAMBDA_EXPRESSION);
this.hasParentheses = lambda.hasParentheses();
List params = lambda.parameters();
for(org.eclipse.jdt.core.dom.VariableDeclaration param : params) {
VariableDeclaration parameter = null;
if(param instanceof VariableDeclarationFragment) {
parameter = new VariableDeclaration(cu, filePath, (VariableDeclarationFragment)param, this);
}
else if(param instanceof SingleVariableDeclaration) {
parameter = new VariableDeclaration(cu, filePath, (SingleVariableDeclaration)param, this);
Type parameterType = ((SingleVariableDeclaration)param).getType();
String parameterName = param.getName().getFullyQualifiedName();
UMLType type = UMLType.extractTypeObject(cu, filePath, parameterType, param.getExtraDimensions());
if(((SingleVariableDeclaration)param).isVarargs()) {
type.setVarargs();
}
UMLParameter umlParameter = new UMLParameter(parameterName, type, "in", ((SingleVariableDeclaration)param).isVarargs());
umlParameter.setVariableDeclaration(parameter);
umlParameters.add(umlParameter);
}
this.parameters.add(parameter);
}
if(lambda.getBody() instanceof Block) {
this.body = new OperationBody(cu, filePath, (Block)lambda.getBody(), this, new ArrayList<>());
}
else if(lambda.getBody() instanceof Expression) {
this.expression = new AbstractExpression(cu, filePath, (Expression)lambda.getBody(), CodeElementType.LAMBDA_EXPRESSION_BODY, this);
this.expression.setLambdaOwner(this);
for(VariableDeclaration parameter : parameters) {
parameter.addStatementInScope(expression);
}
}
}
public LambdaExpressionObject(CompilationUnit cu, String filePath, ExpressionMethodReference reference, VariableDeclarationContainer owner) {
this.owner = owner;
this.locationInfo = new LocationInfo(cu, filePath, reference, CodeElementType.LAMBDA_EXPRESSION);
this.expression = new AbstractExpression(cu, filePath, reference, CodeElementType.LAMBDA_EXPRESSION_BODY, this);
}
public LambdaExpressionObject(CompilationUnit cu, String filePath, SuperMethodReference reference, VariableDeclarationContainer owner) {
this.owner = owner;
this.locationInfo = new LocationInfo(cu, filePath, reference, CodeElementType.LAMBDA_EXPRESSION);
this.expression = new AbstractExpression(cu, filePath, reference, CodeElementType.LAMBDA_EXPRESSION_BODY, this);
}
public LambdaExpressionObject(CompilationUnit cu, String filePath, TypeMethodReference reference, VariableDeclarationContainer owner) {
this.owner = owner;
this.locationInfo = new LocationInfo(cu, filePath, reference, CodeElementType.LAMBDA_EXPRESSION);
this.expression = new AbstractExpression(cu, filePath, reference, CodeElementType.LAMBDA_EXPRESSION_BODY, this);
}
public VariableDeclarationContainer getOwner() {
return owner;
}
public OperationBody getBody() {
return body;
}
public AbstractExpression getExpression() {
return expression;
}
public List getParameters() {
return parameters;
}
public List getUmlParameters() {
return umlParameters;
}
public List getParameterNameList() {
List parameterNameList = new ArrayList();
for(VariableDeclaration parameter : parameters) {
parameterNameList.add(parameter.getVariableName());
}
return parameterNameList;
}
public List getParameterTypeList() {
List parameterTypeList = new ArrayList();
for(UMLParameter parameter : umlParameters) {
parameterTypeList.add(parameter.getType());
}
return parameterTypeList;
}
public int getNumberOfNonVarargsParameters() {
int counter = 0;
for(UMLParameter parameter : umlParameters) {
if(!parameter.isVarargs()) {
counter++;
}
}
return counter;
}
public boolean hasVarargsParameter() {
for(UMLParameter parameter : umlParameters) {
if(parameter.isVarargs()) {
return true;
}
}
return false;
}
@Override
public LocationInfo getLocationInfo() {
return locationInfo;
}
public CodeRange codeRange() {
return locationInfo.codeRange();
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((locationInfo == null) ? 0 : locationInfo.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
LambdaExpressionObject other = (LambdaExpressionObject) obj;
if (locationInfo == null) {
if (other.locationInfo != null)
return false;
} else if (!locationInfo.equals(other.locationInfo))
return false;
return true;
}
public String toString() {
StringBuilder sb = new StringBuilder();
if(hasParentheses) {
sb.append("(");
}
for(int i=0; i 0 || hasParentheses) {
sb.append(JAVA.LAMBDA_ARROW);
}
if(expression != null) {
sb.append(expression.getString());
}
else if(body != null) {
List statements = body.stringRepresentation();
for(String statement : statements) {
sb.append(statement);
}
}
return sb.toString();
}
@Override
public List getParameterDeclarationList() {
return getParameters();
}
@Override
public List getParametersWithoutReturnType() {
return getUmlParameters();
}
@Override
public List getAnonymousClassList() {
if(owner != null) {
List anonymousClassList = new ArrayList<>();
for(UMLAnonymousClass anonymousClass : owner.getAnonymousClassList()) {
if(this.locationInfo.subsumes(anonymousClass.getLocationInfo())) {
anonymousClassList.add(anonymousClass);
}
}
return anonymousClassList;
}
return Collections.emptyList();
}
@Override
public List getAllLambdas() {
if(expression != null) {
return expression.getLambdas();
}
if(body != null) {
return body.getAllLambdas();
}
return Collections.emptyList();
}
@Override
public List getAllOperationInvocations() {
if(expression != null) {
return new ArrayList<>(expression.getMethodInvocations());
}
if(body != null) {
return body.getAllOperationInvocations();
}
return Collections.emptyList();
}
@Override
public List getAllCreations() {
if(expression != null) {
return new ArrayList<>(expression.getCreations());
}
if(body != null) {
return body.getAllCreations();
}
return Collections.emptyList();
}
@Override
public List getAllVariables() {
if(expression != null) {
List variables = new ArrayList<>();
for(LeafExpression variable : expression.getVariables()) {
variables.add(variable.getString());
}
return variables;
}
if(body != null) {
return body.getAllVariables();
}
return Collections.emptyList();
}
@Override
public List getComments() {
if(owner != null) {
List comments = new ArrayList<>();
for(UMLComment comment : owner.getComments()) {
if(this.locationInfo.subsumes(comment.getLocationInfo())) {
comments.add(comment);
}
}
return comments;
}
return Collections.emptyList();
}
@Override
public String getName() {
return "";
}
@Override
public String getElementType() {
return "lambda";
}
@Override
public String getClassName() {
if(owner != null) {
return owner.getClassName();
}
return null;
}
@Override
public String toQualifiedString() {
if(owner != null) {
return owner.toQualifiedString() + " -> @" + locationInfo;
}
return null;
}
@Override
public Map> variableDeclarationMap() {
Map> variableDeclarationMap = new LinkedHashMap>();
for(VariableDeclaration declaration : getAllVariableDeclarations()) {
if(variableDeclarationMap.containsKey(declaration.getVariableName())) {
variableDeclarationMap.get(declaration.getVariableName()).add(declaration);
}
else {
Set variableDeclarations = new LinkedHashSet();
variableDeclarations.add(declaration);
variableDeclarationMap.put(declaration.getVariableName(), variableDeclarations);
}
}
return variableDeclarationMap;
}
@Override
public UMLAnonymousClass findAnonymousClass(AnonymousClassDeclarationObject anonymousClassDeclaration) {
for(UMLAnonymousClass anonymousClass : this.getAnonymousClassList()) {
if(anonymousClass.getLocationInfo().equals(anonymousClassDeclaration.getLocationInfo())) {
return anonymousClass;
}
}
return null;
}
@Override
public boolean hasTestAnnotation() {
return false;
}
@Override
public boolean hasParameterizedTestAnnotation() {
return false;
}
@Override
public boolean hasSetUpAnnotation() {
return false;
}
@Override
public boolean hasTearDownAnnotation() {
return false;
}
@Override
public boolean isDeclaredInAnonymousClass() {
return false;
}
@Override
public Optional getAnonymousClassContainer() {
return Optional.empty();
}
@Override
public boolean isGetter() {
return false;
}
@Override
public boolean isConstructor() {
return false;
}
@Override
public AbstractCall isDelegate() {
return null;
}
@Override
public boolean isRecursive() {
return false;
}
}