com.github.javaparser.symbolsolver.reflectionmodel.ReflectionAnnotationDeclaration 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-2020 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.reflectionmodel;
import java.lang.annotation.Inherited;
import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import com.github.javaparser.ast.body.AnnotationDeclaration;
import com.github.javaparser.resolution.MethodUsage;
import com.github.javaparser.resolution.declarations.ResolvedAnnotationDeclaration;
import com.github.javaparser.resolution.declarations.ResolvedAnnotationMemberDeclaration;
import com.github.javaparser.resolution.declarations.ResolvedConstructorDeclaration;
import com.github.javaparser.resolution.declarations.ResolvedFieldDeclaration;
import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration;
import com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration;
import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration;
import com.github.javaparser.resolution.types.ResolvedReferenceType;
import com.github.javaparser.resolution.types.ResolvedType;
import com.github.javaparser.symbolsolver.core.resolution.Context;
import com.github.javaparser.symbolsolver.core.resolution.MethodUsageResolutionCapability;
import com.github.javaparser.symbolsolver.logic.AbstractTypeDeclaration;
import com.github.javaparser.symbolsolver.logic.ConfilictingGenericTypesException;
import com.github.javaparser.symbolsolver.logic.InferenceContext;
import com.github.javaparser.symbolsolver.logic.MethodResolutionCapability;
import com.github.javaparser.symbolsolver.model.resolution.SymbolReference;
import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
/**
* @author Malte Skoruppa
*/
public class ReflectionAnnotationDeclaration extends AbstractTypeDeclaration implements ResolvedAnnotationDeclaration,
MethodUsageResolutionCapability,
MethodResolutionCapability {
///
/// Fields
///
private Class> clazz;
private TypeSolver typeSolver;
private ReflectionClassAdapter reflectionClassAdapter;
///
/// Constructor
///
public ReflectionAnnotationDeclaration(Class> clazz, TypeSolver typeSolver) {
if (!clazz.isAnnotation()) {
throw new IllegalArgumentException("The given type is not an annotation.");
}
this.clazz = clazz;
this.typeSolver = typeSolver;
this.reflectionClassAdapter = new ReflectionClassAdapter(clazz, typeSolver, this);
}
///
/// Public methods
///
@Override
public String getPackageName() {
if (clazz.getPackage() != null) {
return clazz.getPackage().getName();
}
return "";
}
@Override
public String getClassName() {
String qualifiedName = getQualifiedName();
if(qualifiedName.contains(".")) {
return qualifiedName.substring(qualifiedName.lastIndexOf("."), qualifiedName.length());
} else {
return qualifiedName;
}
}
@Override
public String getQualifiedName() {
return clazz.getCanonicalName();
}
@Override
public String toString() {
return getClass().getSimpleName() + "{" +
"clazz=" + clazz.getCanonicalName() +
'}';
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof ReflectionAnnotationDeclaration)) return false;
ReflectionAnnotationDeclaration that = (ReflectionAnnotationDeclaration) o;
return clazz.getCanonicalName().equals(that.clazz.getCanonicalName());
}
@Override
public int hashCode() {
return clazz.getCanonicalName().hashCode();
}
@Override
public boolean isAssignableBy(ResolvedType type) {
// TODO #1836
throw new UnsupportedOperationException();
}
@Override
public boolean isAssignableBy(ResolvedReferenceTypeDeclaration other) {
throw new UnsupportedOperationException();
}
@Override
public boolean hasDirectlyAnnotation(String canonicalName) {
return reflectionClassAdapter.hasDirectlyAnnotation(canonicalName);
}
@Override
public List getAllFields() {
return reflectionClassAdapter.getAllFields();
}
@Override
public List getAncestors(boolean acceptIncompleteList) {
// we do not attempt to perform any symbol solving when analyzing ancestors in the reflection model, so we can
// simply ignore the boolean parameter here; an UnsolvedSymbolException cannot occur
return reflectionClassAdapter.getAncestors();
}
@Override
public Set getDeclaredMethods() {
// TODO #1838
throw new UnsupportedOperationException();
}
@Override
public String getName() {
return clazz.getSimpleName();
}
@Override
public Optional containerType() {
// TODO #1841
throw new UnsupportedOperationException("containerType() is not supported for " + this.getClass().getCanonicalName());
}
/**
* Annotation declarations cannot have type parameters and hence this method always returns an empty list.
*
* @return An empty list.
*/
@Override
public List getTypeParameters() {
// Annotation declarations cannot have type parameters - i.e. we can always return an empty list.
return Collections.emptyList();
}
@Override
public Set internalTypes() {
return Arrays.stream(this.clazz.getDeclaredClasses())
.map(ic -> ReflectionFactory.typeDeclarationFor(ic, typeSolver))
.collect(Collectors.toSet());
}
@Override
public List getConstructors() {
return Collections.emptyList();
}
@Override
public List getAnnotationMembers() {
return Stream.of(clazz.getDeclaredMethods())
.map(m -> new ReflectionAnnotationMemberDeclaration(m, typeSolver))
.collect(Collectors.toList());
}
@Override
public Optional toAst() {
return Optional.empty();
}
@Override
public Optional solveMethodAsUsage(final String name,
final List parameterTypes,
final Context invokationContext,
final List typeParameterValues) {
Optional res = ReflectionMethodResolutionLogic.solveMethodAsUsage(name, parameterTypes, typeSolver, invokationContext,
typeParameterValues, this, clazz);
if (res.isPresent()) {
// We have to replace method type typeParametersValues here
InferenceContext inferenceContext = new InferenceContext(MyObjectProvider.INSTANCE);
MethodUsage methodUsage = res.get();
int i = 0;
List parameters = new LinkedList<>();
for (ResolvedType actualType : parameterTypes) {
ResolvedType formalType = methodUsage.getParamType(i);
// We need to replace the class type typeParametersValues (while we derive the method ones)
parameters.add(inferenceContext.addPair(formalType, actualType));
i++;
}
try {
ResolvedType returnType = inferenceContext.addSingle(methodUsage.returnType());
for (int j=0;j solveMethod(final String name,
final List argumentsTypes,
final boolean staticOnly) {
return ReflectionMethodResolutionLogic.solveMethod(name, argumentsTypes, staticOnly,
typeSolver,this, clazz);
}
@Override
public boolean isInheritable() {
return clazz.getAnnotation(Inherited.class) != null;
}
}