org.jetbrains.kotlin.resolve.jvm.checkers.JvmPropertyVsFieldAmbiguityCallChecker.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* 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.jvm.checkers
import com.intellij.psi.PsiElement
import org.jetbrains.kotlin.config.LanguageFeature
import org.jetbrains.kotlin.descriptors.CallableMemberDescriptor
import org.jetbrains.kotlin.descriptors.ClassDescriptor
import org.jetbrains.kotlin.descriptors.DescriptorVisibilities
import org.jetbrains.kotlin.descriptors.Modality
import org.jetbrains.kotlin.descriptors.PropertyDescriptor
import org.jetbrains.kotlin.incremental.components.NoLookupLocation
import org.jetbrains.kotlin.load.java.lazy.descriptors.isJavaField
import org.jetbrains.kotlin.load.kotlin.computeJvmDescriptorWithoutName
import org.jetbrains.kotlin.resolve.DescriptorUtils
import org.jetbrains.kotlin.resolve.calls.checkers.CallChecker
import org.jetbrains.kotlin.resolve.calls.checkers.CallCheckerContext
import org.jetbrains.kotlin.resolve.calls.model.ResolvedCall
import org.jetbrains.kotlin.resolve.descriptorUtil.fqNameSafe
import org.jetbrains.kotlin.resolve.jvm.diagnostics.ErrorsJvm
object JvmPropertyVsFieldAmbiguityCallChecker : CallChecker {
override fun check(resolvedCall: ResolvedCall<*>, reportOn: PsiElement, context: CallCheckerContext) {
if (!context.languageVersionSettings.supportsFeature(LanguageFeature.PreferJavaFieldOverload)) return
val resultingDescriptor = resolvedCall.resultingDescriptor as? PropertyDescriptor ?: return
if (!resultingDescriptor.isJavaField) return
val ownContainingClass = resultingDescriptor.containingDeclaration as? ClassDescriptor ?: return
val field = DescriptorUtils.unwrapFakeOverride(resultingDescriptor)
val fieldClassDescriptor = field.containingDeclaration as? ClassDescriptor
if (fieldClassDescriptor === ownContainingClass) return
// If we have visible alternative property, we leave everything as is (see KT-54393)
ownContainingClass.unsubstitutedMemberScope.getContributedVariables(
resultingDescriptor.name, NoLookupLocation.FOR_ALREADY_TRACKED
).forEach { alternativePropertyDescriptor ->
if (alternativePropertyDescriptor !== resultingDescriptor) {
val basePropertyDescriptor = DescriptorUtils.unwrapSubstitutionOverride(alternativePropertyDescriptor)
val propertyClassDescriptor = basePropertyDescriptor.containingDeclaration as? ClassDescriptor
val hasLateInit = basePropertyDescriptor.selfOrBaseForFakeOverride { it.isLateInit }
val hasCustomGetter = basePropertyDescriptor.selfOrBaseForFakeOverride { it.getter?.isDefault == false }
val hasCustomSetter = basePropertyDescriptor.selfOrBaseForFakeOverride { it.setter?.isDefault == false }
val jvmDescriptorForField = resultingDescriptor.computeJvmDescriptorWithoutName()
val jvmDescriptorForProperty = alternativePropertyDescriptor.computeJvmDescriptorWithoutName()
if (!hasLateInit && !hasCustomGetter && !hasCustomSetter &&
basePropertyDescriptor.modality == Modality.FINAL &&
jvmDescriptorForField == jvmDescriptorForProperty
) return@forEach
if (fieldClassDescriptor != null && propertyClassDescriptor != null &&
DescriptorUtils.isSubclass(fieldClassDescriptor, propertyClassDescriptor)
) return@forEach
if (DescriptorVisibilities.isVisible(
/* receiver = */ resolvedCall.dispatchReceiver,
/* what = */ alternativePropertyDescriptor,
/* from = */ context.scope.ownerDescriptor,
/* useSpecialRulesForPrivateSealedConstructors = */ false
)
) {
val factory = when {
hasCustomGetter -> ErrorsJvm.BASE_CLASS_FIELD_SHADOWS_DERIVED_CLASS_PROPERTY
hasLateInit || hasCustomSetter -> ErrorsJvm.BACKING_FIELD_ACCESSED_DUE_TO_PROPERTY_FIELD_CONFLICT
basePropertyDescriptor.modality != Modality.FINAL -> ErrorsJvm.BASE_CLASS_FIELD_MAY_SHADOW_DERIVED_CLASS_PROPERTY
else -> ErrorsJvm.BASE_CLASS_FIELD_WITH_DIFFERENT_SIGNATURE_THAN_DERIVED_CLASS_PROPERTY
}
context.trace.report(
factory.on(
reportOn,
fieldClassDescriptor?.fqNameSafe?.asString() ?: "unknown class",
propertyClassDescriptor?.fqNameSafe?.asString() ?: "unknown class"
)
)
return
}
}
}
}
private fun PropertyDescriptor.selfOrBaseForFakeOverride(predicate: (PropertyDescriptor) -> Boolean): Boolean {
if (predicate(this)) return true
if (kind != CallableMemberDescriptor.Kind.FAKE_OVERRIDE) return false
return overriddenDescriptors.any { it.selfOrBaseForFakeOverride(predicate) }
}
}