blob: 9570c33d2dea6915581b24bce2ada9b965363c77 [file] [log] [blame]
/*
* Copyright 2016 Federico Tomassetti
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.javaparser.symbolsolver.javassistmodel;
import com.github.javaparser.symbolsolver.core.resolution.Context;
import com.github.javaparser.symbolsolver.logic.AbstractTypeDeclaration;
import com.github.javaparser.symbolsolver.model.declarations.*;
import com.github.javaparser.symbolsolver.model.methods.MethodUsage;
import com.github.javaparser.symbolsolver.model.resolution.SymbolReference;
import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
import com.github.javaparser.symbolsolver.model.resolution.UnsolvedSymbolException;
import com.github.javaparser.symbolsolver.model.typesystem.ReferenceType;
import com.github.javaparser.symbolsolver.model.typesystem.ReferenceTypeImpl;
import com.github.javaparser.symbolsolver.model.typesystem.Type;
import com.github.javaparser.symbolsolver.resolution.MethodResolutionLogic;
import javassist.CtClass;
import javassist.CtField;
import javassist.CtMethod;
import javassist.NotFoundException;
import javassist.bytecode.AccessFlag;
import javassist.bytecode.SyntheticAttribute;
import java.lang.reflect.Modifier;
import java.util.*;
import java.util.function.Predicate;
import java.util.stream.Collectors;
/**
* @author Federico Tomassetti
*/
public class JavassistInterfaceDeclaration extends AbstractTypeDeclaration implements InterfaceDeclaration {
private CtClass ctClass;
private TypeSolver typeSolver;
private JavassistTypeDeclarationAdapter javassistTypeDeclarationAdapter;
@Override
public String toString() {
return "JavassistInterfaceDeclaration{" +
"ctClass=" + ctClass.getName() +
", typeSolver=" + typeSolver +
'}';
}
public JavassistInterfaceDeclaration(CtClass ctClass, TypeSolver typeSolver) {
if (!ctClass.isInterface()) {
throw new IllegalArgumentException("Not an interface: " + ctClass.getName());
}
this.ctClass = ctClass;
this.typeSolver = typeSolver;
this.javassistTypeDeclarationAdapter = new JavassistTypeDeclarationAdapter(ctClass, typeSolver);
}
@Override
public List<ReferenceType> getInterfacesExtended() {
try {
return Arrays.stream(ctClass.getInterfaces()).map(i -> new JavassistInterfaceDeclaration(i, typeSolver))
.map(i -> new ReferenceTypeImpl(i, typeSolver)).collect(Collectors.toList());
} catch (NotFoundException e) {
throw new RuntimeException(e);
}
}
@Override
public String getPackageName() {
return ctClass.getPackageName();
}
@Override
public String getClassName() {
String className = ctClass.getName().replace('$', '.');
if (getPackageName() != null) {
return className.substring(getPackageName().length() + 1, className.length());
}
return className;
}
@Override
public String getQualifiedName() {
return ctClass.getName().replace('$', '.');
}
@Deprecated
public Optional<MethodUsage> solveMethodAsUsage(String name, List<Type> argumentsTypes, TypeSolver typeSolver,
Context invokationContext, List<Type> typeParameterValues) {
return JavassistUtils.getMethodUsage(ctClass, name, argumentsTypes, typeSolver, invokationContext);
}
@Deprecated
public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, boolean staticOnly) {
List<MethodDeclaration> candidates = new ArrayList<>();
Predicate<CtMethod> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getModifiers()));
for (CtMethod method : ctClass.getDeclaredMethods()) {
boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null;
boolean isNotBridge = (method.getMethodInfo().getAccessFlags() & AccessFlag.BRIDGE) == 0;
if (method.getName().equals(name) && !isSynthetic && isNotBridge && staticOnlyCheck.test(method)) {
candidates.add(new JavassistMethodDeclaration(method, typeSolver));
}
}
try {
CtClass superClass = ctClass.getSuperclass();
if (superClass != null) {
SymbolReference<MethodDeclaration> ref = new JavassistClassDeclaration(superClass, typeSolver).solveMethod(name, argumentsTypes, staticOnly);
if (ref.isSolved()) {
candidates.add(ref.getCorrespondingDeclaration());
}
}
} catch (NotFoundException e) {
throw new RuntimeException(e);
}
try {
for (CtClass interfaze : ctClass.getInterfaces()) {
SymbolReference<MethodDeclaration> ref = new JavassistInterfaceDeclaration(interfaze, typeSolver).solveMethod(name, argumentsTypes, staticOnly);
if (ref.isSolved()) {
candidates.add(ref.getCorrespondingDeclaration());
}
}
} catch (NotFoundException e) {
throw new RuntimeException(e);
}
return MethodResolutionLogic.findMostApplicable(candidates, name, argumentsTypes, typeSolver);
}
@Override
public boolean isAssignableBy(Type type) {
throw new UnsupportedOperationException();
}
@Override
public List<FieldDeclaration> getAllFields() {
return javassistTypeDeclarationAdapter.getDeclaredFields();
}
@Override
public boolean isAssignableBy(ReferenceTypeDeclaration other) {
throw new UnsupportedOperationException();
}
@Override
public List<ReferenceType> getAncestors() {
List<ReferenceType> ancestors = new ArrayList<>();
try {
for (CtClass interfaze : ctClass.getInterfaces()) {
ReferenceType superInterfaze = JavassistFactory.typeUsageFor(interfaze, typeSolver).asReferenceType();
ancestors.add(superInterfaze);
}
} catch (NotFoundException e) {
throw new RuntimeException(e);
}
ancestors = ancestors.stream().filter(a -> a.getQualifiedName() != Object.class.getCanonicalName())
.collect(Collectors.toList());
ancestors.add(new ReferenceTypeImpl(typeSolver.solveType(Object.class.getCanonicalName()), typeSolver));
return ancestors;
}
@Override
public Set<MethodDeclaration> getDeclaredMethods() {
return Arrays.stream(ctClass.getDeclaredMethods())
.map(m -> new JavassistMethodDeclaration(m, typeSolver))
.collect(Collectors.toSet());
}
@Override
public boolean hasDirectlyAnnotation(String canonicalName) {
try {
for (Object annotationRaw : ctClass.getAnnotations()) {
if (annotationRaw.getClass().getCanonicalName().equals(canonicalName)) {
return true;
}
if (Arrays.stream(annotationRaw.getClass().getInterfaces()).anyMatch(it -> it.getCanonicalName().equals(canonicalName))) {
return true;
}
}
} catch (ClassNotFoundException e) {
throw new RuntimeException(e);
}
return false;
}
@Override
public String getName() {
String[] nameElements = ctClass.getSimpleName().replace('$', '.').split("\\.");
return nameElements[nameElements.length - 1];
}
@Override
public List<TypeParameterDeclaration> getTypeParameters() {
return javassistTypeDeclarationAdapter.getTypeParameters();
}
@Override
public AccessLevel accessLevel() {
return JavassistFactory.modifiersToAccessLevel(ctClass.getModifiers());
}
@Override
public InterfaceDeclaration asInterface() {
return this;
}
@Deprecated
public SymbolReference<? extends ValueDeclaration> solveSymbol(String name, TypeSolver typeSolver) {
for (CtField field : ctClass.getDeclaredFields()) {
if (field.getName().equals(name)) {
return SymbolReference.solved(new JavassistFieldDeclaration(field, typeSolver));
}
}
try {
for (CtClass interfaze : ctClass.getInterfaces()) {
SymbolReference<? extends ValueDeclaration> ref = new JavassistInterfaceDeclaration(interfaze, typeSolver).solveSymbol(name, typeSolver);
if (ref.isSolved()) {
return ref;
}
}
} catch (NotFoundException e) {
throw new RuntimeException(e);
}
return SymbolReference.unsolved(ValueDeclaration.class);
}
@Override
public Optional<ReferenceTypeDeclaration> containerType() {
return javassistTypeDeclarationAdapter.containerType();
}
@Override
public Set<ReferenceTypeDeclaration> internalTypes() {
try {
/*
Get all internal types of the current class and get their corresponding ReferenceTypeDeclaration.
Finally, return them in a Set.
*/
return Arrays.stream(ctClass.getDeclaredClasses()).map(itype -> JavassistFactory.toTypeDeclaration(itype, typeSolver)).collect(Collectors.toSet());
} catch (NotFoundException e) {
throw new RuntimeException(e);
}
}
@Override
public ReferenceTypeDeclaration getInternalType(String name) {
/*
The name of the ReferenceTypeDeclaration could be composed on the internal class and the outer class, e.g. A$B. That's why we search the internal type in the ending part.
In case the name is composed of the internal type only, i.e. f.getName() returns B, it will also works.
*/
Optional<ReferenceTypeDeclaration> type =
this.internalTypes().stream().filter(f -> f.getName().endsWith(name)).findFirst();
return type.orElseThrow(() ->
new UnsolvedSymbolException("Internal type not found: " + name));
}
@Override
public boolean hasInternalType(String name) {
/*
The name of the ReferenceTypeDeclaration could be composed on the internal class and the outer class, e.g. A$B. That's why we search the internal type in the ending part.
In case the name is composed of the internal type only, i.e. f.getName() returns B, it will also works.
*/
return this.internalTypes().stream().anyMatch(f -> f.getName().endsWith(name));
}
}