blob: 61cf86734679d6772836fe4c7d6e2fd5732960d9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.codehaus.groovy.ast;
import org.codehaus.groovy.ast.tools.GenericsUtils;
import org.codehaus.groovy.ast.tools.WideningCategories;
import java.lang.reflect.Modifier;
import java.util.HashSet;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
/**
* This class is used to describe generic type signatures for ClassNodes.
*
* @see ClassNode
*/
public class GenericsType extends ASTNode {
public static final GenericsType[] EMPTY_ARRAY = new GenericsType[0];
private String name;
private ClassNode type;
private final ClassNode lowerBound;
private final ClassNode[] upperBounds;
private boolean placeholder, resolved, wildcard;
public GenericsType(final ClassNode type, final ClassNode[] upperBounds, final ClassNode lowerBound) {
setType(type);
this.lowerBound = lowerBound;
this.upperBounds = upperBounds;
this.placeholder = type.isGenericsPlaceHolder();
setName(placeholder ? type.getUnresolvedName() : type.getName());
}
public GenericsType(final ClassNode basicType) {
this(basicType, null, null);
}
public ClassNode getType() {
return type;
}
public void setType(final ClassNode type) {
this.type = Objects.requireNonNull(type);
}
public String toString() {
return toString(this, new HashSet<>());
}
private static String toString(final GenericsType gt, final Set<String> visited) {
ClassNode type = gt.getType();
boolean wildcard = gt.isWildcard();
boolean placeholder = gt.isPlaceholder();
ClassNode lowerBound = gt.getLowerBound();
ClassNode[] upperBounds = gt.getUpperBounds();
if (placeholder) visited.add(gt.getName());
StringBuilder ret = new StringBuilder(wildcard || placeholder ? gt.getName() : genericsBounds(type, visited));
if (lowerBound != null) {
ret.append(" super ").append(genericsBounds(lowerBound, visited));
} else if (upperBounds != null
// T extends Object should just be printed as T
&& !(placeholder && upperBounds.length == 1 && !upperBounds[0].isGenericsPlaceHolder() && upperBounds[0].getName().equals("java.lang.Object"))) {
ret.append(" extends ");
for (int i = 0, n = upperBounds.length; i < n; i += 1) {
if (i != 0) ret.append(" & ");
ret.append(genericsBounds(upperBounds[i], visited));
}
}
return ret.toString();
}
private static String nameOf(final ClassNode theType) {
StringBuilder ret = new StringBuilder();
if (theType.isArray()) {
ret.append(nameOf(theType.getComponentType()));
ret.append("[]");
} else {
ret.append(theType.getName());
}
return ret.toString();
}
private static String genericsBounds(final ClassNode theType, final Set<String> visited) {
StringBuilder ret = new StringBuilder();
if (theType.isArray()) {
ret.append(nameOf(theType));
} else if (theType.getOuterClass() != null) {
String parentClassNodeName = theType.getOuterClass().getName();
if (Modifier.isStatic(theType.getModifiers()) || theType.isInterface()) {
ret.append(parentClassNodeName);
} else {
ret.append(genericsBounds(theType.getOuterClass(), new HashSet<>()));
}
ret.append('.');
ret.append(theType.getName(), parentClassNodeName.length() + 1, theType.getName().length());
} else {
ret.append(theType.getName());
}
GenericsType[] genericsTypes = theType.getGenericsTypes();
if (genericsTypes == null || genericsTypes.length == 0) {
return ret.toString();
}
// TODO: instead of catching Object<T> here stop it from being placed into type in first place
if (genericsTypes.length == 1 && genericsTypes[0].isPlaceholder() && theType.getName().equals("java.lang.Object")) {
return genericsTypes[0].getName();
}
ret.append('<');
for (int i = 0, n = genericsTypes.length; i < n; i += 1) {
if (i != 0) ret.append(", ");
GenericsType type = genericsTypes[i];
if (type.isPlaceholder() && visited.contains(type.getName())) {
ret.append(type.getName());
} else {
ret.append(toString(type, visited));
}
}
ret.append('>');
return ret.toString();
}
public String getName() {
return (isWildcard() ? "?" : name);
}
public void setName(final String name) {
this.name = Objects.requireNonNull(name);
}
public boolean isResolved() {
return (resolved || isPlaceholder());
}
public void setResolved(final boolean resolved) {
this.resolved = resolved;
}
public boolean isPlaceholder() {
return placeholder;
}
public void setPlaceholder(final boolean placeholder) {
this.placeholder = placeholder;
getType().setGenericsPlaceHolder(placeholder);
}
public boolean isWildcard() {
return wildcard;
}
public void setWildcard(final boolean wildcard) {
this.wildcard = wildcard;
}
public ClassNode getLowerBound() {
return lowerBound;
}
public ClassNode[] getUpperBounds() {
return upperBounds;
}
//--------------------------------------------------------------------------
/**
* Compares this generics type with the provided class node. If the provided
* class node is compatible with the generics specification, returns true.
* Otherwise, returns false. The check is complete, meaning that nested
* generics are also checked.
*
* @return if {@code classNode} is or is not compatible with this generics specification
*/
public boolean isCompatibleWith(final ClassNode classNode) {
GenericsType[] genericsTypes = classNode.getGenericsTypes();
if (genericsTypes != null && genericsTypes.length == 0) {
return true; // diamond always matches
}
if (classNode.isGenericsPlaceHolder()) {
// if the compare type is a generics placeholder (like <E>) then we
// only need to check that the names are equal
if (genericsTypes == null) {
return true;
}
if (isWildcard()) {
if (getLowerBound() != null) {
ClassNode lowerBound = getLowerBound();
return genericsTypes[0].name.equals(lowerBound.getUnresolvedName());
}
if (getUpperBounds() != null) {
for (ClassNode upperBound : getUpperBounds()) {
if (genericsTypes[0].name.equals(upperBound.getUnresolvedName())) {
return true;
}
}
return false;
}
}
return genericsTypes[0].name.equals(name);
}
if (isWildcard() || isPlaceholder()) {
// if the generics spec is a wildcard or a placeholder then check the bounds
ClassNode lowerBound = getLowerBound();
if (lowerBound != null) {
// for a lower bound, perform the upper bound checks with reversed arguments
if (!implementsInterfaceOrIsSubclassOf(lowerBound, classNode)) {
return false;
}
return checkGenerics(classNode);
}
ClassNode[] upperBounds = getUpperBounds();
if (upperBounds != null) {
// check that provided type extends or implements all upper bounds
for (ClassNode upperBound : upperBounds) {
if (!implementsInterfaceOrIsSubclassOf(classNode, upperBound)) {
return false;
}
}
// if the provided classnode is a subclass of the upper bound
// then check that the generic types supplied by the class node are compatible with
// this generics specification
// for example, we could have the spec saying List<String> but provided classnode
// saying List<Integer>
return checkGenerics(classNode);
}
// if there are no bounds, the generic type is basically Object, and everything is compatible
return true;
}
// last, we could have the spec saying List<String> and a classnode saying List<Integer> so
// we must check that generics are compatible
return getType().equals(classNode) && compareGenericsWithBound(classNode, type);
}
private static boolean implementsInterfaceOrIsSubclassOf(final ClassNode type, final ClassNode superOrInterface) {
if (type.equals(superOrInterface)
|| type.isDerivedFrom(superOrInterface)
|| type.implementsInterface(superOrInterface)) {
return true;
}
if (ClassHelper.GROOVY_OBJECT_TYPE.equals(superOrInterface) && type.getCompileUnit() != null) {
// type is being compiled so it will implement GroovyObject later
return true;
}
if (superOrInterface instanceof WideningCategories.LowestUpperBoundClassNode) {
WideningCategories.LowestUpperBoundClassNode lub = (WideningCategories.LowestUpperBoundClassNode) superOrInterface;
boolean result = implementsInterfaceOrIsSubclassOf(type, lub.getSuperClass());
if (result) {
for (ClassNode face : lub.getInterfaces()) {
result = implementsInterfaceOrIsSubclassOf(type, face);
if (!result) break;
}
}
if (result) return true;
}
if (type.isArray() && superOrInterface.isArray()) {
return implementsInterfaceOrIsSubclassOf(type.getComponentType(), superOrInterface.getComponentType());
}
return false;
}
/**
* Compares the bounds of this generics specification against the given type
* for compatibility. Ex: String would satisfy &lt;? extends CharSequence>.
*/
private boolean checkGenerics(final ClassNode classNode) {
ClassNode lowerBound = getLowerBound();
if (lowerBound != null) {
return compareGenericsWithBound(classNode, lowerBound);
}
ClassNode[] upperBounds = getUpperBounds();
if (upperBounds != null) {
for (ClassNode upperBound : upperBounds) {
if (!compareGenericsWithBound(classNode, upperBound)) {
return false;
}
}
}
return true;
}
/**
* Given a parameterized type (List&lt;String&gt; for example), checks that its
* generic types are compatible with those from a bound.
* @param classNode the classnode from which we will compare generics types
* @param bound the bound to which the types will be compared
* @return true if generics are compatible
*/
private static boolean compareGenericsWithBound(final ClassNode classNode, final ClassNode bound) {
if (classNode == null) {
return false;
}
if (bound.getGenericsTypes() == null || (classNode.getGenericsTypes() == null && classNode.redirect().getGenericsTypes() != null)) {
// if the bound is not using generics or the class node is a raw type, there's nothing to compare with
return true;
}
if (!classNode.equals(bound)) {
// the class nodes are on different types
// in this situation, we must choose the correct execution path : either the bound
// is an interface and we must find the implementing interface from the classnode
// to compare their parameterized generics, or the bound is a regular class and we
// must compare the bound with a superclass
if (bound.isInterface()) {
// iterate over all interfaces to check if any corresponds to the bound we are
// comparing to
for (ClassNode face : classNode.getAllInterfaces()) {
if (face.equals(bound)) {
// when we obtain an interface, the types represented by the interface
// class node are not parameterized. This means that we must create a
// new class node with the parameterized types that the current class node
// has defined.
ClassNode node = GenericsUtils.parameterizeType(classNode, face);
return compareGenericsWithBound(node, bound);
}
}
}
if (bound instanceof WideningCategories.LowestUpperBoundClassNode) {
// another special case here, where the bound is a "virtual" type
// we must then check the superclass and the interfaces
boolean success = compareGenericsWithBound(classNode, bound.getSuperClass());
if (success) {
for (ClassNode face : bound.getInterfaces()) {
success &= compareGenericsWithBound(classNode, face);
if (!success) break;
}
if (success) return true;
}
}
return compareGenericsWithBound(getParameterizedSuperClass(classNode), bound);
}
GenericsType[] cnTypes = classNode.getGenericsTypes();
if (cnTypes == null) {
cnTypes = classNode.redirect().getGenericsTypes();
}
if (cnTypes == null) {
// may happen if generic type is Foo<T extends Foo> and classnode is Foo -> Foo
return true;
}
GenericsType[] redirectBoundGenericTypes = bound.redirect().getGenericsTypes();
Map<GenericsTypeName, GenericsType> boundPlaceHolders = GenericsUtils.extractPlaceholders(bound);
Map<GenericsTypeName, GenericsType> classNodePlaceholders = GenericsUtils.extractPlaceholders(classNode);
boolean match = true;
for (int i = 0; redirectBoundGenericTypes != null && i < redirectBoundGenericTypes.length && match; i += 1) {
GenericsType redirectBoundType = redirectBoundGenericTypes[i];
GenericsType classNodeType = cnTypes[i];
if (classNodeType.isPlaceholder()) {
GenericsTypeName name = new GenericsTypeName(classNodeType.getName());
if (redirectBoundType.isPlaceholder()) {
GenericsTypeName gtn = new GenericsTypeName(redirectBoundType.getName());
match = name.equals(gtn);
if (!match) {
GenericsType genericsType = boundPlaceHolders.get(gtn);
match = false;
if (genericsType != null) {
if (genericsType.isPlaceholder()) {
match = true;
} else if (genericsType.isWildcard()) {
if (genericsType.getUpperBounds() != null) {
for (ClassNode ub : genericsType.getUpperBounds()) {
match |= redirectBoundType.isCompatibleWith(ub);
}
if (genericsType.getLowerBound() != null) {
match |= redirectBoundType.isCompatibleWith(genericsType.getLowerBound());
}
}
}
}
}
} else {
match = classNodePlaceholders.getOrDefault(name, classNodeType).isCompatibleWith(redirectBoundType.getType());
}
} else {
if (redirectBoundType.isPlaceholder()) {
if (classNodeType.isPlaceholder()) {
match = classNodeType.getName().equals(redirectBoundType.getName());
} else {
GenericsTypeName name = new GenericsTypeName(redirectBoundType.getName());
if (boundPlaceHolders.containsKey(name)) {
redirectBoundType = boundPlaceHolders.get(name);
if (redirectBoundType.isPlaceholder()) {
redirectBoundType = classNodePlaceholders.getOrDefault(name, redirectBoundType);
} else if (redirectBoundType.isWildcard()) {
if (redirectBoundType.getLowerBound() != null) {
// ex: class Comparable<Integer> <=> bound Comparable<? super T>
GenericsType gt = new GenericsType(redirectBoundType.getLowerBound());
if (gt.isPlaceholder()) {
// check for recursive generic typedef, like in <T extends Comparable<? super T>>
gt = classNodePlaceholders.getOrDefault(new GenericsTypeName(gt.getName()), gt);
}
// GROOVY-6095, GROOVY-9338
if (classNodeType.isWildcard()) {
if (classNodeType.getLowerBound() != null
|| classNodeType.getUpperBounds() != null) {
match = classNodeType.checkGenerics(gt.getType());
} else {
match = false; // "?" (from Comparable<?>) does not satisfy anything
}
} else {
match = implementsInterfaceOrIsSubclassOf(gt.getType(), classNodeType.getType());
}
} else if (redirectBoundType.getUpperBounds() != null) {
// ex: class Comparable<Integer> <=> bound Comparable<? extends T & I>
for (ClassNode upperBound : redirectBoundType.getUpperBounds()) {
GenericsType gt = new GenericsType(upperBound);
if (gt.isPlaceholder()) {
// check for recursive generic typedef, like in <T extends Comparable<? super T>>
gt = classNodePlaceholders.getOrDefault(new GenericsTypeName(gt.getName()), gt);
}
// GROOVY-6095, GROOVY-9338
if (classNodeType.isWildcard()) {
if (classNodeType.getLowerBound() != null) {
match = gt.checkGenerics(classNodeType.getLowerBound());
} else if (classNodeType.getUpperBounds() != null) {
match = gt.checkGenerics(classNodeType.getUpperBounds()[0]);
} else {
match = false; // "?" (from Comparable<?>) does not satisfy anything
}
} else {
match = implementsInterfaceOrIsSubclassOf(classNodeType.getType(), gt.getType());
}
if (!match) break;
}
}
return match;
}
}
match = redirectBoundType.isCompatibleWith(classNodeType.getType());
}
} else {
// TODO: the check for isWildcard should be replaced with a more complete check
match = redirectBoundType.isWildcard() || classNodeType.isCompatibleWith(redirectBoundType.getType());
}
}
}
return match;
}
/**
* If you have a class which extends a class using generics, returns the superclass with parameterized types. For
* example, if you have:
* <code>class MyList&lt;T&gt; extends LinkedList&lt;T&gt;
* def list = new MyList&lt;String&gt;
* </code>
* then the parameterized superclass for MyList&lt;String&gt; is LinkedList&lt;String&gt;
* @param classNode the class for which we want to return the parameterized superclass
* @return the parameterized superclass
*/
private static ClassNode getParameterizedSuperClass(final ClassNode classNode) {
if (ClassHelper.OBJECT_TYPE.equals(classNode)) return null;
ClassNode superClass = classNode.getUnresolvedSuperClass();
if (superClass == null) return ClassHelper.OBJECT_TYPE;
if (!classNode.isUsingGenerics() || !superClass.isUsingGenerics()) {
return superClass;
}
GenericsType[] genericsTypes = classNode.getGenericsTypes();
GenericsType[] redirectGenericTypes = classNode.redirect().getGenericsTypes();
superClass = superClass.getPlainNodeReference();
if (genericsTypes == null || redirectGenericTypes == null || superClass.getGenericsTypes() == null) {
return superClass;
}
for (int i = 0, genericsTypesLength = genericsTypes.length; i < genericsTypesLength; i += 1) {
if (redirectGenericTypes[i].isPlaceholder()) {
GenericsType genericsType = genericsTypes[i];
GenericsType[] superGenericTypes = superClass.getGenericsTypes();
for (int j = 0, superGenericTypesLength = superGenericTypes.length; j < superGenericTypesLength; j += 1) {
final GenericsType superGenericType = superGenericTypes[j];
if (superGenericType.isPlaceholder() && superGenericType.getName().equals(redirectGenericTypes[i].getName())) {
superGenericTypes[j] = genericsType;
}
}
}
}
return superClass;
}
/**
* Represents GenericsType name
* TODO In order to distinguish GenericsType with same name(See GROOVY-8409), we should add a property to keep the declaring class.
*
* fixing GROOVY-8409 steps:
* 1) change the signature of constructor GenericsTypeName to `GenericsTypeName(String name, ClassNode declaringClass)`
* 2) try to fix all compilation errors(if `GenericsType` has declaringClass property, the step would be a bit easy to fix...)
* 3) run all tests to see whether the change breaks anything
* 4) if all tests pass, congratulations! but if some tests are broken, try to debug and find why...
*
* We should find a way to set declaring class for `GenericsType` first, it can be completed at the resolving phase.
*/
public static class GenericsTypeName {
private String name;
public GenericsTypeName(final String name) {
this.name = Objects.requireNonNull(name);
}
public String getName() {
return name;
}
@Override
public boolean equals(Object that) {
if (this == that) return true;
if (!(that instanceof GenericsTypeName)) return false;
return getName().equals(((GenericsTypeName) that).getName());
}
@Override
public int hashCode() {
return getName().hashCode();
}
@Override
public String toString() {
return getName();
}
}
}