Supported generic subclasses in submethods.

#KT-2776 in progress
This commit is contained in:
Evgeny Gerashchenko
2012-11-09 17:11:19 +04:00
parent e2d213f1fd
commit 89b413b7ad
7 changed files with 111 additions and 18 deletions
@@ -17,6 +17,7 @@
package org.jetbrains.jet.lang.resolve.java.resolver;
import com.google.common.collect.Lists;
import com.google.common.collect.Multimap;
import com.google.common.collect.Sets;
import com.intellij.psi.HierarchicalMethodSignature;
import com.intellij.psi.PsiClass;
@@ -37,6 +38,7 @@ import org.jetbrains.jet.lang.resolve.name.Name;
import org.jetbrains.jet.lang.resolve.scopes.JetScope;
import org.jetbrains.jet.lang.types.*;
import org.jetbrains.jet.lang.types.checker.JetTypeChecker;
import org.jetbrains.jet.lang.types.checker.TypeCheckingProcedure;
import org.jetbrains.jet.lang.types.lang.KotlinBuiltIns;
import javax.inject.Inject;
@@ -318,34 +320,71 @@ public final class JavaFunctionResolver {
}
@NotNull
private static List<TypeProjection> getTypeArgsOfReturnType(@NotNull JetType autoType, Collection<JetType> typesFromSuper) {
private static List<TypeProjection> getTypeArgsOfReturnType(@NotNull JetType autoType, @NotNull Collection<JetType> typesFromSuper) {
TypeConstructor typeConstructor = autoType.getConstructor();
List<TypeProjection> autoTypeArguments = autoType.getArguments();
List<TypeProjection> autoArguments = autoType.getArguments();
// If class is changed, then we can't say anything about type arguments
for (JetType typeFromSuper : typesFromSuper) {
if (!TypeUtils.equalClasses(autoType, typeFromSuper)) {
return autoTypeArguments;
}
if (!(typeConstructor.getDeclarationDescriptor() instanceof ClassDescriptor)) {
return autoArguments;
}
List<List<JetType>> typeArgumentsFromSuper = calculateTypeArgumentsFromSuper(autoType, typesFromSuper);
// Modify type arguments using info from typesFromSuper
List<TypeProjection> resultArguments = Lists.newArrayList();
for (int i = 0; i < autoTypeArguments.size(); i++) {
TypeProjection argument = autoTypeArguments.get(i);
JetType argType = argument.getType();
Variance varianceInClass = typeConstructor.getParameters().get(i).getVariance();
for (int i = 0; i < autoArguments.size(); i++) {
TypeProjection argument = autoArguments.get(i);
List<JetType> argTypesFromSuper = Lists.newArrayList();
for (JetType typeFromSuper : typesFromSuper) {
argTypesFromSuper.add(typeFromSuper.getArguments().get(i).getType());
}
TypeCheckingProcedure.EnrichedProjectionKind effectiveProjectionKind =
TypeCheckingProcedure.getEffectiveProjectionKind(typeConstructor.getParameters().get(i), argument);
JetType type = modifyReturnTypeAccordingToSuperMethods(argType, argTypesFromSuper, varianceInClass == Variance.OUT_VARIANCE);
JetType argumentType = argument.getType();
Collection<JetType> argumentTypesFromSuper = typeArgumentsFromSuper.get(i);
boolean covariantPosition = effectiveProjectionKind == TypeCheckingProcedure.EnrichedProjectionKind.OUT;
JetType type = modifyReturnTypeAccordingToSuperMethods(argumentType, argumentTypesFromSuper, covariantPosition);
resultArguments.add(new TypeProjection(argument.getProjectionKind(), type));
}
return resultArguments;
}
// Returns list with type arguments info from supertypes
private static List<List<JetType>> calculateTypeArgumentsFromSuper(
@NotNull JetType autoType,
@NotNull Collection<JetType> typesFromSuper
) {
ClassDescriptor klass = (ClassDescriptor) autoType.getConstructor().getDeclarationDescriptor();
// For each superclass of autoType's class and its parameters, hold their mapping to autoType's parameters
Multimap<TypeConstructor,TypeProjection> substitution = SubstitutionUtils.buildDeepSubstitutionMultimap(
TypeUtils.makeUnsubstitutedType(klass, null));
// for each parameter of autoType, hold arguments in corresponding supertypes
List<List<JetType>> parameterToArgTypesFromSuper = Lists.newArrayList();
for (TypeProjection ignored : autoType.getArguments()) {
parameterToArgTypesFromSuper.add(new ArrayList<JetType>());
}
// Enumerate all types from super and all its parameters
for (JetType typeFromSuper : typesFromSuper) {
List<TypeParameterDescriptor> typeFromSuperParameters = typeFromSuper.getConstructor().getParameters();
for (int i = 0; i < typeFromSuperParameters.size(); i++) {
TypeParameterDescriptor typeFromSuperParam = typeFromSuperParameters.get(i);
JetType typeFromSuperArgType = typeFromSuper.getArguments().get(i).getType();
// if it is mapped to autoType's parameter, then store it into map
for (TypeProjection projection : substitution.get(typeFromSuperParam.getTypeConstructor())) {
ClassifierDescriptor classifier = projection.getType().getConstructor().getDeclarationDescriptor();
if (classifier instanceof TypeParameterDescriptor && classifier.getContainingDeclaration() == klass) {
parameterToArgTypesFromSuper.get(((TypeParameterDescriptor) classifier).getIndex()).add(typeFromSuperArgType);
}
}
}
}
return parameterToArgTypesFromSuper;
}
private static boolean returnTypeMustBeNullable(JetType autoType, Collection<JetType> typesFromSuper, boolean covariantPosition) {
boolean someSupersNullable = false;
boolean someSupersNotNull = false;
@@ -103,7 +103,7 @@ public class TypeCheckingProcedure {
return true;
}
private enum EnrichedProjectionKind {
public enum EnrichedProjectionKind {
IN, OUT, INV, STAR;
@NotNull
@@ -132,7 +132,10 @@ public class TypeCheckingProcedure {
// inv * out = out
// inv * in = out
// inv * inv = inv
private EnrichedProjectionKind getEffectiveProjectionKind(@NotNull TypeParameterDescriptor typeParameter, @NotNull TypeProjection typeArgument) {
public static EnrichedProjectionKind getEffectiveProjectionKind(
@NotNull TypeParameterDescriptor typeParameter,
@NotNull TypeProjection typeArgument
) {
Variance a = typeParameter.getVariance();
Variance b = typeArgument.getProjectionKind();
@@ -0,0 +1,20 @@
package test;
import org.jetbrains.annotations.NotNull;
import java.util.List;
import java.util.Collection;
import jet.runtime.typeinfo.KotlinSignature;
public class InheritNullabilityGenericSubclassSimple {
@KotlinSignature("fun foo(): MutableCollection<String>")
public Collection<String> foo() {
throw new UnsupportedOperationException();
}
public class Sub extends InheritNullabilityGenericSubclassSimple {
public List<String> foo() {
throw new UnsupportedOperationException();
}
}
}
@@ -0,0 +1,11 @@
package test
import org.jetbrains.annotations.NotNull
public open class InheritNullabilityGenericSubclassSimple : java.lang.Object() {
public open fun foo(): MutableCollection<String> = throw UnsupportedOperationException()
public open class Sub: InheritNullabilityGenericSubclassSimple() {
override fun foo(): MutableList<String> = throw UnsupportedOperationException()
}
}
@@ -0,0 +1,10 @@
namespace test
public open class test.InheritNullabilityGenericSubclassSimple : java.lang.Object {
public final /*constructor*/ fun <init>(): test.InheritNullabilityGenericSubclassSimple
public open fun foo(): jet.MutableCollection<jet.String>
public open class test.InheritNullabilityGenericSubclassSimple.Sub : test.InheritNullabilityGenericSubclassSimple {
public final /*constructor*/ fun <init>(): test.InheritNullabilityGenericSubclassSimple.Sub
public open override /*1*/ fun foo(): jet.MutableList<jet.String>
}
}
@@ -476,6 +476,11 @@ public class LoadJavaTestGenerated extends AbstractLoadJavaTest {
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), "org.jetbrains.jet.generators.tests.GenerateTests", new File("compiler/testData/loadJava/kotlinSignature/propagation/return"), "java", true);
}
@TestMetadata("InheritNullabilityGenericSubclassSimple.java")
public void testInheritNullabilityGenericSubclassSimple() throws Exception {
doTest("compiler/testData/loadJava/kotlinSignature/propagation/return/InheritNullabilityGenericSubclassSimple.java");
}
@TestMetadata("InheritNullabilityJavaSubtype.java")
public void testInheritNullabilityJavaSubtype() throws Exception {
doTest("compiler/testData/loadJava/kotlinSignature/propagation/return/InheritNullabilityJavaSubtype.java");
@@ -1371,6 +1371,11 @@ public class LazyResolveNamespaceComparingTestGenerated extends AbstractLazyReso
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), "org.jetbrains.jet.generators.tests.GenerateTests", new File("compiler/testData/loadJava/kotlinSignature/propagation/return"), "kt", true);
}
@TestMetadata("InheritNullabilityGenericSubclassSimple.kt")
public void testInheritNullabilityGenericSubclassSimple() throws Exception {
doTestSinglePackage("compiler/testData/loadJava/kotlinSignature/propagation/return/InheritNullabilityGenericSubclassSimple.kt");
}
@TestMetadata("InheritNullabilityJavaSubtype.kt")
public void testInheritNullabilityJavaSubtype() throws Exception {
doTestSinglePackage("compiler/testData/loadJava/kotlinSignature/propagation/return/InheritNullabilityJavaSubtype.kt");