Reflection: add KType.jvmErasure

#KT-8998 In Progress
This commit is contained in:
Alexander Udalov
2016-07-12 16:26:52 +03:00
parent e760b5ed53
commit 153e837a84
5 changed files with 131 additions and 14 deletions
@@ -0,0 +1,20 @@
// WITH_REFLECT
import kotlin.reflect.jvm.jvmErasure
import kotlin.test.assertEquals
fun string(): String = null!!
fun array(): Array<String> = null!!
fun collection(): Collection<String> = null!!
fun mutableCollection(): MutableCollection<String> = null!!
fun box(): String {
assertEquals(String::class, ::string.returnType.jvmErasure)
assertEquals(Array<String>::class, ::array.returnType.jvmErasure)
assertEquals(Collection::class, ::collection.returnType.jvmErasure)
assertEquals(MutableCollection::class, ::mutableCollection.returnType.jvmErasure)
return "OK"
}
@@ -0,0 +1,45 @@
// WITH_REFLECT
import kotlin.reflect.jvm.jvmErasure
import kotlin.reflect.KClass
import kotlin.test.assertEquals
open class O
class A {
fun <T> simple(): T = null!!
fun <T : String> string(): T = null!!
fun <T : String?> nullableString(): T = null!!
fun <T : U, U> otherTypeParameter(): T = null!!
fun <T : U, U : List<String>> otherTypeParameterWithBound(): T = null!!
fun <T : Cloneable> twoInterfaces1(): T where T : Comparable<*> = null!!
fun <T : Comparable<*>> twoInterfaces2(): T where T : Cloneable = null!!
fun <T : Cloneable> interfaceAndClass1(): T where T : O = null!!
fun <T : O> interfaceAndClass2(): T where T : Cloneable = null!!
fun <T> arrayOfAny(): Array<T> = null!!
fun <T : Number> arrayOfNumber(): Array<T> = null!!
fun <T> arrayOfArrayOfCloneable(): Array<Array<T>> where T : Cloneable, T : Comparable<*> = null!!
}
fun get(name: String): KClass<*> = A::class.members.single { it.name == name }.returnType.jvmErasure
fun box(): String {
assertEquals(Any::class, get("simple"))
assertEquals(String::class, get("string"))
assertEquals(String::class, get("nullableString"))
assertEquals(Any::class, get("otherTypeParameter"))
assertEquals(List::class, get("otherTypeParameterWithBound"))
assertEquals(Cloneable::class, get("twoInterfaces1"))
assertEquals(Comparable::class, get("twoInterfaces2"))
assertEquals(O::class, get("interfaceAndClass1"))
assertEquals(O::class, get("interfaceAndClass2"))
assertEquals(Array<Any>::class, get("arrayOfAny"))
assertEquals(Array<Number>::class, get("arrayOfNumber"))
assertEquals(Array<Array<Cloneable>>::class, get("arrayOfArrayOfCloneable"))
return "OK"
}
@@ -13008,6 +13008,18 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
doTest(fileName);
}
@TestMetadata("jvmErasureOfClass.kt")
public void testJvmErasureOfClass() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/reflection/types/jvmErasureOfClass.kt");
doTest(fileName);
}
@TestMetadata("jvmErasureOfTypeParameter.kt")
public void testJvmErasureOfTypeParameter() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/reflection/types/jvmErasureOfTypeParameter.kt");
doTest(fileName);
}
@TestMetadata("platformTypeClassifier.kt")
public void testPlatformTypeClassifier() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/reflection/types/platformTypeClassifier.kt");
@@ -0,0 +1,45 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
*
* 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.
*/
@file:JvmName("KTypesJvm")
package kotlin.reflect.jvm
import org.jetbrains.kotlin.descriptors.ClassDescriptor
import org.jetbrains.kotlin.descriptors.ClassKind.ANNOTATION_CLASS
import org.jetbrains.kotlin.descriptors.ClassKind.INTERFACE
import kotlin.reflect.*
import kotlin.reflect.jvm.internal.KTypeImpl
/**
* Returns the [KClass] instance representing the runtime class to which this type is erased to on JVM.
*/
val KType.jvmErasure: KClass<*>
get() = classifier?.jvmErasure ?: throw KotlinReflectionInternalError("Cannot calculate JVM erasure for type: $this")
internal val KClassifier.jvmErasure: KClass<*>
get() = when (this) {
is KClass<*> -> this
is KTypeParameter -> {
// See getRepresentativeUpperBound in typeSignatureMapping.kt
val bounds = upperBounds
val representativeBound = bounds.firstOrNull {
val classDescriptor = (it as KTypeImpl).type.constructor.declarationDescriptor as? ClassDescriptor
classDescriptor != null && classDescriptor.kind != INTERFACE && classDescriptor.kind != ANNOTATION_CLASS
} ?: bounds.firstOrNull()
representativeBound?.jvmErasure ?: Any::class
}
else -> throw KotlinReflectionInternalError("Cannot calculate JVM erasure for type: $this")
}
@@ -29,7 +29,11 @@ import java.lang.reflect.ParameterizedType
import java.lang.reflect.Type
import java.lang.reflect.WildcardType
import kotlin.LazyThreadSafetyMode.PUBLICATION
import kotlin.reflect.*
import kotlin.reflect.KClassifier
import kotlin.reflect.KType
import kotlin.reflect.KTypeProjection
import kotlin.reflect.KotlinReflectionInternalError
import kotlin.reflect.jvm.jvmErasure
internal class KTypeImpl(
val type: KotlinType,
@@ -48,19 +52,10 @@ internal class KTypeImpl(
if (jClass.isArray) {
// There may be no argument if it's a primitive array (such as IntArray)
val argument = type.arguments.singleOrNull()?.type ?: return KClassImpl(jClass)
val elementClassifier = convert(argument)
val elementType = when (elementClassifier) {
is KClass<*> -> elementClassifier
is KTypeParameter -> {
// For arrays of type parameters (`Array<T>`) we return the KClass representing `Array<Any>`
// since there's no other sensible option
// TODO: return `Array<erasure-of-T>`
Any::class
}
else -> TODO("Arrays of type alias classifiers are not yet supported")
}
return KClassImpl(elementType.java.createArrayType())
val elementClassifier =
convert(argument)
?: throw KotlinReflectionInternalError("Cannot determine classifier for array element type: $this")
return KClassImpl(elementClassifier.jvmErasure.java.createArrayType())
}
if (!TypeUtils.isNullableType(type)) {