com.github.javaparser.symbolsolver.javassistmodel.JavassistAnnotationMemberDeclaration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaparser-symbol-solver-core Show documentation
Show all versions of javaparser-symbol-solver-core Show documentation
A Symbol Solver for Java, built on top of JavaParser (core)
The newest version!
/*
* Copyright (C) 2015-2016 Federico Tomassetti
* Copyright (C) 2017-2024 The JavaParser Team.
*
* This file is part of JavaParser.
*
* JavaParser can be used either under the terms of
* a) the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* b) the terms of the Apache License
*
* You should have received a copy of both licenses in LICENCE.LGPL and
* LICENCE.APACHE. Please refer to those files for details.
*
* JavaParser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
package com.github.javaparser.symbolsolver.javassistmodel;
import com.github.javaparser.ast.expr.*;
import com.github.javaparser.resolution.TypeSolver;
import com.github.javaparser.resolution.declarations.ResolvedAnnotationMemberDeclaration;
import com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration;
import com.github.javaparser.resolution.model.SymbolReference;
import com.github.javaparser.resolution.model.typesystem.ReferenceTypeImpl;
import com.github.javaparser.resolution.types.ResolvedType;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Function;
import javassist.CtMethod;
import javassist.bytecode.AnnotationDefaultAttribute;
import javassist.bytecode.BadBytecode;
import javassist.bytecode.SignatureAttribute;
import javassist.bytecode.annotation.*;
/**
* @author Malte Skoruppa
*/
public class JavassistAnnotationMemberDeclaration implements ResolvedAnnotationMemberDeclaration {
private static Map, Function>
memberValueAsExressionConverter = new HashMap<>();
static {
memberValueAsExressionConverter.put(
BooleanMemberValue.class,
(memberValue) -> new BooleanLiteralExpr(
BooleanMemberValue.class.cast(memberValue).getValue()));
memberValueAsExressionConverter.put(
CharMemberValue.class,
(memberValue) -> new CharLiteralExpr(
CharMemberValue.class.cast(memberValue).getValue()));
memberValueAsExressionConverter.put(
DoubleMemberValue.class,
(memberValue) -> new DoubleLiteralExpr(
DoubleMemberValue.class.cast(memberValue).getValue()));
memberValueAsExressionConverter.put(
IntegerMemberValue.class,
(memberValue) -> new IntegerLiteralExpr(
IntegerMemberValue.class.cast(memberValue).getValue()));
memberValueAsExressionConverter.put(
LongMemberValue.class,
(memberValue) -> new LongLiteralExpr(
LongMemberValue.class.cast(memberValue).getValue()));
memberValueAsExressionConverter.put(
StringMemberValue.class,
(memberValue) -> new StringLiteralExpr(
StringMemberValue.class.cast(memberValue).getValue()));
}
private CtMethod annotationMember;
private TypeSolver typeSolver;
public JavassistAnnotationMemberDeclaration(CtMethod annotationMember, TypeSolver typeSolver) {
this.annotationMember = annotationMember;
this.typeSolver = typeSolver;
}
@Override
public Expression getDefaultValue() {
AnnotationDefaultAttribute defaultAttribute = (AnnotationDefaultAttribute)
annotationMember.getMethodInfo().getAttribute(AnnotationDefaultAttribute.tag);
if (defaultAttribute == null) return null;
MemberValue memberValue = defaultAttribute.getDefaultValue();
Function fn = memberValueAsExressionConverter.get(memberValue.getClass());
if (fn == null)
throw new UnsupportedOperationException(String.format(
"Obtaining the type of the annotation member %s is not supported yet.",
annotationMember.getName()));
return fn.apply(memberValue);
}
@Override
public ResolvedType getType() {
try {
String descriptor = annotationMember.getMethodInfo().getDescriptor();
SignatureAttribute.MethodSignature signature = SignatureAttribute.toMethodSignature(descriptor);
SymbolReference returnType =
typeSolver.tryToSolveType(signature.getReturnType().jvmTypeName());
if (returnType.isSolved()) {
return new ReferenceTypeImpl(returnType.getCorrespondingDeclaration());
}
} catch (BadBytecode e) {
// We don't expect this to happen, but we handle it anyway.
throw new IllegalStateException("An invalid descriptor was received from JavaAssist.", e);
}
throw new UnsupportedOperationException(String.format(
"Obtaining the type of the annotation member %s is not supported yet.",
annotationMember.getLongName()));
}
@Override
public String getName() {
return annotationMember.getName();
}
}