.kotlin.kotlin-compiler.1.3.11.source-code.sinceKotlinUtil.kt Maven / Gradle / Ivy
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.resolve
import org.jetbrains.kotlin.config.ApiVersion
import org.jetbrains.kotlin.config.LanguageVersionSettings
import org.jetbrains.kotlin.descriptors.*
import org.jetbrains.kotlin.descriptors.annotations.Annotated
import org.jetbrains.kotlin.descriptors.impl.TypeAliasConstructorDescriptor
import org.jetbrains.kotlin.resolve.calls.util.FakeCallableDescriptorForTypeAliasObject
import org.jetbrains.kotlin.resolve.checkers.ExperimentalUsageChecker
import org.jetbrains.kotlin.resolve.constants.ArrayValue
import org.jetbrains.kotlin.resolve.constants.KClassValue
sealed class SinceKotlinAccessibility {
object Accessible : SinceKotlinAccessibility()
data class NotAccessibleButWasExperimental(
val version: ApiVersion,
val markerClasses: List
) : SinceKotlinAccessibility()
data class NotAccessible(
val version: ApiVersion
) : SinceKotlinAccessibility()
}
fun DeclarationDescriptor.checkSinceKotlinVersionAccessibility(languageVersionSettings: LanguageVersionSettings): SinceKotlinAccessibility {
val value =
if (this is CallableMemberDescriptor && !kind.isReal) getSinceKotlinVersionByOverridden(this)
else getOwnSinceKotlinVersion()
val version = value?.apiVersion
// Allow access in the following cases:
// 1) There's no @SinceKotlin annotation for this descriptor
// 2) There's a @SinceKotlin annotation but its value is some unrecognizable nonsense
// 3) The value as a version is not greater than our API version
if (version == null || version <= languageVersionSettings.apiVersion) return SinceKotlinAccessibility.Accessible
val wasExperimentalFqNames = value.wasExperimentalMarkerClasses
if (wasExperimentalFqNames.isNotEmpty()) {
return SinceKotlinAccessibility.NotAccessibleButWasExperimental(version, wasExperimentalFqNames)
}
return SinceKotlinAccessibility.NotAccessible(version)
}
private data class SinceKotlinValue(
val apiVersion: ApiVersion,
val wasExperimentalMarkerClasses: List
)
/**
* @return null if there are no overridden members or if there's at least one declaration in the hierarchy not annotated with [SinceKotlin],
* or the minimal value of the version from all declarations annotated with [SinceKotlin] otherwise.
*/
private fun getSinceKotlinVersionByOverridden(descriptor: CallableMemberDescriptor): SinceKotlinValue? {
// TODO: combine wasExperimentalMarkerClasses in case of several members with the same minimal API version
return DescriptorUtils.getAllOverriddenDeclarations(descriptor).map { it.getOwnSinceKotlinVersion() ?: return null }
.minBy { it.apiVersion }
}
/**
* @return the maximal value of API version required by the declaration or any of its "associated" declarations (class for constructor,
* property for accessor, underlying class for type alias) along with experimental marker FQ names mentioned in the @WasExperimental
*/
private fun DeclarationDescriptor.getOwnSinceKotlinVersion(): SinceKotlinValue? {
var result: SinceKotlinValue? = null
// TODO: use-site targeted annotations
fun DeclarationDescriptor.consider() {
val apiVersion = (annotations.findAnnotation(SINCE_KOTLIN_FQ_NAME)?.allValueArguments?.values?.singleOrNull()?.value as? String)
?.let(ApiVersion.Companion::parse)
if (apiVersion != null) {
// TODO: combine wasExperimentalMarkerClasses in case of several associated declarations with the same maximal API version
if (result == null || apiVersion > result!!.apiVersion) {
result = SinceKotlinValue(apiVersion, loadWasExperimentalMarkerClasses())
}
}
}
this.consider()
(this as? ConstructorDescriptor)?.containingDeclaration?.consider()
(this as? PropertyAccessorDescriptor)?.correspondingProperty?.consider()
val typeAlias = this as? TypeAliasDescriptor
?: (this as? TypeAliasConstructorDescriptor)?.typeAliasDescriptor
?: (this as? FakeCallableDescriptorForTypeAliasObject)?.typeAliasDescriptor
typeAlias?.consider()
// We should check only the upper-most classifier ('A' in 'A>') to guarantee binary compatibility.
typeAlias?.classDescriptor?.consider()
(this as? TypeAliasConstructorDescriptor)?.underlyingConstructorDescriptor?.consider()
(this as? FakeCallableDescriptorForTypeAliasObject)?.getReferencedObject()?.consider()
return result
}
private fun Annotated.loadWasExperimentalMarkerClasses(): List {
val wasExperimental = annotations.findAnnotation(ExperimentalUsageChecker.WAS_EXPERIMENTAL_FQ_NAME)
if (wasExperimental != null) {
val annotationClasses = wasExperimental.allValueArguments[ExperimentalUsageChecker.WAS_EXPERIMENTAL_ANNOTATION_CLASS]
if (annotationClasses is ArrayValue) {
return annotationClasses.value.mapNotNull { annotationClass ->
(annotationClass as? KClassValue)?.value?.constructor?.declarationDescriptor as? ClassDescriptor
}
}
}
return emptyList()
}