Search in sources :

Example 1 with VariableDeclarationFragment

use of org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.VariableDeclarationFragment in project camel by apache.

the class CamelJavaParserHelper method getLiteralValue.

public static String getLiteralValue(JavaClassSource clazz, Block block, Expression expression) {
    // unwrap parenthesis
    if (expression instanceof ParenthesizedExpression) {
        expression = ((ParenthesizedExpression) expression).getExpression();
    }
    if (expression instanceof StringLiteral) {
        return ((StringLiteral) expression).getLiteralValue();
    } else if (expression instanceof BooleanLiteral) {
        return "" + ((BooleanLiteral) expression).booleanValue();
    } else if (expression instanceof NumberLiteral) {
        return ((NumberLiteral) expression).getToken();
    }
    // if it a method invocation then add a dummy value assuming the method invocation will return a valid response
    if (expression instanceof MethodInvocation) {
        String name = ((MethodInvocation) expression).getName().getIdentifier();
        return "{{" + name + "}}";
    }
    // source code we have access to
    if (expression instanceof QualifiedName) {
        QualifiedName qn = (QualifiedName) expression;
        String name = qn.getFullyQualifiedName();
        return "{{" + name + "}}";
    }
    if (expression instanceof SimpleName) {
        FieldSource<JavaClassSource> field = getField(clazz, block, (SimpleName) expression);
        if (field != null) {
            // is the field annotated with a Camel endpoint
            if (field.getAnnotations() != null) {
                for (Annotation ann : field.getAnnotations()) {
                    boolean valid = "org.apache.camel.EndpointInject".equals(ann.getQualifiedName()) || "org.apache.camel.cdi.Uri".equals(ann.getQualifiedName());
                    if (valid) {
                        Expression exp = (Expression) ann.getInternal();
                        if (exp instanceof SingleMemberAnnotation) {
                            exp = ((SingleMemberAnnotation) exp).getValue();
                        } else if (exp instanceof NormalAnnotation) {
                            List values = ((NormalAnnotation) exp).values();
                            for (Object value : values) {
                                MemberValuePair pair = (MemberValuePair) value;
                                if ("uri".equals(pair.getName().toString())) {
                                    exp = pair.getValue();
                                    break;
                                }
                            }
                        }
                        if (exp != null) {
                            return getLiteralValue(clazz, block, exp);
                        }
                    }
                }
            }
            // is the field an org.apache.camel.Endpoint type?
            if ("Endpoint".equals(field.getType().getSimpleName())) {
                // then grab the uri from the first argument
                VariableDeclarationFragment vdf = (VariableDeclarationFragment) field.getInternal();
                expression = vdf.getInitializer();
                if (expression instanceof MethodInvocation) {
                    MethodInvocation mi = (MethodInvocation) expression;
                    List args = mi.arguments();
                    if (args != null && args.size() > 0) {
                        // the first argument has the endpoint uri
                        expression = (Expression) args.get(0);
                        return getLiteralValue(clazz, block, expression);
                    }
                }
            } else {
                // no annotations so try its initializer
                VariableDeclarationFragment vdf = (VariableDeclarationFragment) field.getInternal();
                expression = vdf.getInitializer();
                if (expression == null) {
                    // its a field which has no initializer, then add a dummy value assuming the field will be initialized at runtime
                    return "{{" + field.getName() + "}}";
                } else {
                    return getLiteralValue(clazz, block, expression);
                }
            }
        } else {
            // we could not find the field in this class/method, so its maybe from some other super class, so insert a dummy value
            final String fieldName = ((SimpleName) expression).getIdentifier();
            return "{{" + fieldName + "}}";
        }
    } else if (expression instanceof InfixExpression) {
        String answer = null;
        // is it a string that is concat together?
        InfixExpression ie = (InfixExpression) expression;
        if (InfixExpression.Operator.PLUS.equals(ie.getOperator())) {
            String val1 = getLiteralValue(clazz, block, ie.getLeftOperand());
            String val2 = getLiteralValue(clazz, block, ie.getRightOperand());
            // if numeric then we plus the values, otherwise we string concat
            boolean numeric = isNumericOperator(clazz, block, ie.getLeftOperand()) && isNumericOperator(clazz, block, ie.getRightOperand());
            if (numeric) {
                Long num1 = val1 != null ? Long.valueOf(val1) : 0;
                Long num2 = val2 != null ? Long.valueOf(val2) : 0;
                answer = "" + (num1 + num2);
            } else {
                answer = (val1 != null ? val1 : "") + (val2 != null ? val2 : "");
            }
            if (!answer.isEmpty()) {
                // include extended when we concat on 2 or more lines
                List extended = ie.extendedOperands();
                if (extended != null) {
                    for (Object ext : extended) {
                        String val3 = getLiteralValue(clazz, block, (Expression) ext);
                        if (numeric) {
                            Long num3 = val3 != null ? Long.valueOf(val3) : 0;
                            Long num = Long.valueOf(answer);
                            answer = "" + (num + num3);
                        } else {
                            answer += val3 != null ? val3 : "";
                        }
                    }
                }
            }
        }
        return answer;
    }
    return null;
}
Also used : ParenthesizedExpression(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.ParenthesizedExpression) BooleanLiteral(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.BooleanLiteral) SingleMemberAnnotation(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.SingleMemberAnnotation) QualifiedName(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.QualifiedName) SimpleName(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.SimpleName) JavaClassSource(org.jboss.forge.roaster.model.source.JavaClassSource) MethodInvocation(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.MethodInvocation) SingleMemberAnnotation(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.SingleMemberAnnotation) NormalAnnotation(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.NormalAnnotation) Annotation(org.jboss.forge.roaster.model.Annotation) StringLiteral(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.StringLiteral) MemberValuePair(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.MemberValuePair) Expression(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.Expression) InfixExpression(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.InfixExpression) ParenthesizedExpression(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.ParenthesizedExpression) VariableDeclarationFragment(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.VariableDeclarationFragment) InfixExpression(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.InfixExpression) NormalAnnotation(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.NormalAnnotation) ArrayList(java.util.ArrayList) List(java.util.List) NumberLiteral(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.NumberLiteral)

Example 2 with VariableDeclarationFragment

use of org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.VariableDeclarationFragment in project camel by apache.

the class CamelJavaParserHelper method findFieldInBlock.

@SuppressWarnings("unchecked")
private static FieldSource<JavaClassSource> findFieldInBlock(JavaClassSource clazz, Block block, String fieldName) {
    for (Object statement : block.statements()) {
        // try local statements first in the block
        if (statement instanceof VariableDeclarationStatement) {
            final Type type = ((VariableDeclarationStatement) statement).getType();
            for (Object obj : ((VariableDeclarationStatement) statement).fragments()) {
                if (obj instanceof VariableDeclarationFragment) {
                    VariableDeclarationFragment fragment = (VariableDeclarationFragment) obj;
                    SimpleName name = fragment.getName();
                    if (name != null && fieldName.equals(name.getIdentifier())) {
                        return new StatementFieldSource(clazz, fragment, type);
                    }
                }
            }
        }
        // okay the field may be burried inside an anonymous inner class as a field declaration
        // outside the configure method, so lets go back to the parent and see what we can find
        ASTNode node = block.getParent();
        if (node instanceof MethodDeclaration) {
            node = node.getParent();
        }
        if (node instanceof AnonymousClassDeclaration) {
            List declarations = ((AnonymousClassDeclaration) node).bodyDeclarations();
            for (Object dec : declarations) {
                if (dec instanceof FieldDeclaration) {
                    FieldDeclaration fd = (FieldDeclaration) dec;
                    final Type type = fd.getType();
                    for (Object obj : fd.fragments()) {
                        if (obj instanceof VariableDeclarationFragment) {
                            VariableDeclarationFragment fragment = (VariableDeclarationFragment) obj;
                            SimpleName name = fragment.getName();
                            if (name != null && fieldName.equals(name.getIdentifier())) {
                                return new StatementFieldSource(clazz, fragment, type);
                            }
                        }
                    }
                }
            }
        }
    }
    return null;
}
Also used : SimpleType(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.SimpleType) Type(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.Type) VariableDeclarationFragment(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.VariableDeclarationFragment) MethodDeclaration(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.MethodDeclaration) SimpleName(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.SimpleName) ASTNode(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.ASTNode) AnonymousClassDeclaration(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.AnonymousClassDeclaration) VariableDeclarationStatement(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.VariableDeclarationStatement) StatementFieldSource(org.apache.camel.parser.roaster.StatementFieldSource) ArrayList(java.util.ArrayList) List(java.util.List) FieldDeclaration(org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.FieldDeclaration)

Aggregations

ArrayList (java.util.ArrayList)2 List (java.util.List)2 SimpleName (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.SimpleName)2 VariableDeclarationFragment (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.VariableDeclarationFragment)2 StatementFieldSource (org.apache.camel.parser.roaster.StatementFieldSource)1 ASTNode (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.ASTNode)1 AnonymousClassDeclaration (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.AnonymousClassDeclaration)1 BooleanLiteral (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.BooleanLiteral)1 Expression (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.Expression)1 FieldDeclaration (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.FieldDeclaration)1 InfixExpression (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.InfixExpression)1 MemberValuePair (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.MemberValuePair)1 MethodDeclaration (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.MethodDeclaration)1 MethodInvocation (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.MethodInvocation)1 NormalAnnotation (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.NormalAnnotation)1 NumberLiteral (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.NumberLiteral)1 ParenthesizedExpression (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.ParenthesizedExpression)1 QualifiedName (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.QualifiedName)1 SimpleType (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.SimpleType)1 SingleMemberAnnotation (org.jboss.forge.roaster._shade.org.eclipse.jdt.core.dom.SingleMemberAnnotation)1