FIR: Remove FirDelegatedMemberScope
This commit is contained in:
committed by
TeamCityServer
parent
a77cbb8f63
commit
4d28b9ea3b
-197
@@ -1,197 +0,0 @@
|
||||
/*
|
||||
* Copyright 2010-2020 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.fir.scopes.impl
|
||||
|
||||
import org.jetbrains.kotlin.descriptors.Modality
|
||||
import org.jetbrains.kotlin.descriptors.Visibilities
|
||||
import org.jetbrains.kotlin.fir.FirSession
|
||||
import org.jetbrains.kotlin.fir.declarations.*
|
||||
import org.jetbrains.kotlin.fir.declarations.utils.modality
|
||||
import org.jetbrains.kotlin.fir.declarations.utils.visibility
|
||||
import org.jetbrains.kotlin.fir.isIntersectionOverride
|
||||
import org.jetbrains.kotlin.fir.resolve.defaultType
|
||||
import org.jetbrains.kotlin.fir.scopes.*
|
||||
import org.jetbrains.kotlin.fir.symbols.ConeClassLikeLookupTag
|
||||
import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
|
||||
import org.jetbrains.kotlin.fir.symbols.impl.FirNamedFunctionSymbol
|
||||
import org.jetbrains.kotlin.fir.symbols.impl.FirPropertySymbol
|
||||
import org.jetbrains.kotlin.fir.symbols.impl.FirVariableSymbol
|
||||
import org.jetbrains.kotlin.fir.types.ConeClassLikeType
|
||||
import org.jetbrains.kotlin.fir.types.ConeFlexibleType
|
||||
import org.jetbrains.kotlin.fir.types.coneType
|
||||
import org.jetbrains.kotlin.fir.types.isMarkedNullable
|
||||
import org.jetbrains.kotlin.name.ClassId
|
||||
import org.jetbrains.kotlin.name.Name
|
||||
import org.jetbrains.kotlin.name.StandardClassIds
|
||||
|
||||
class FirDelegatedMemberScope(
|
||||
private val useSiteScope: FirTypeScope,
|
||||
private val session: FirSession,
|
||||
private val containingClass: FirClass,
|
||||
private val delegateField: FirField,
|
||||
private val declaredMemberScope: FirScope,
|
||||
) : FirTypeScope() {
|
||||
private val delegatedFunctionCache = mutableMapOf<FirNamedFunctionSymbol, FirNamedFunctionSymbol>()
|
||||
private val delegatedPropertyCache = mutableMapOf<FirPropertySymbol, FirPropertySymbol>()
|
||||
private val dispatchReceiverType = containingClass.defaultType()
|
||||
private val overrideChecker = FirStandardOverrideChecker(session)
|
||||
|
||||
override fun processFunctionsByName(name: Name, processor: (FirNamedFunctionSymbol) -> Unit) {
|
||||
useSiteScope.processFunctionsByName(name) processor@{ functionSymbol ->
|
||||
val original = functionSymbol.fir
|
||||
// KT-6014: If the original is abstract, we still need a delegation
|
||||
// For example,
|
||||
// interface IBase { override fun toString(): String }
|
||||
// object BaseImpl : IBase { override fun toString(): String = ... }
|
||||
// class Test : IBase by BaseImpl
|
||||
if (original.isPublicInAny() && original.modality != Modality.ABSTRACT) {
|
||||
processor(functionSymbol)
|
||||
return@processor
|
||||
}
|
||||
|
||||
if (original.modality == Modality.FINAL || original.visibility == Visibilities.Private) {
|
||||
processor(functionSymbol)
|
||||
return@processor
|
||||
}
|
||||
|
||||
if (declaredMemberScope.getFunctions(name).any { overrideChecker.isOverriddenFunction(it.fir, original) }) {
|
||||
processor(functionSymbol)
|
||||
return@processor
|
||||
}
|
||||
|
||||
val delegatedSymbol = delegatedFunctionCache.getOrPut(functionSymbol) {
|
||||
val newSymbol = FirNamedFunctionSymbol(
|
||||
functionSymbol.callableId,
|
||||
)
|
||||
FirFakeOverrideGenerator.createCopyForFirFunction(
|
||||
newSymbol,
|
||||
original,
|
||||
session,
|
||||
FirDeclarationOrigin.Delegated,
|
||||
newDispatchReceiverType = dispatchReceiverType,
|
||||
newModality = Modality.OPEN,
|
||||
).apply {
|
||||
delegatedWrapperData = DelegatedWrapperData(functionSymbol.fir, containingClass.symbol.toLookupTag(), delegateField)
|
||||
}.symbol
|
||||
}
|
||||
processor(delegatedSymbol)
|
||||
}
|
||||
}
|
||||
|
||||
override fun processPropertiesByName(name: Name, processor: (FirVariableSymbol<*>) -> Unit) {
|
||||
useSiteScope.processPropertiesByName(name) processor@{ propertySymbol ->
|
||||
if (propertySymbol !is FirPropertySymbol) {
|
||||
processor(propertySymbol)
|
||||
return@processor
|
||||
}
|
||||
|
||||
val original = propertySymbol.fir
|
||||
|
||||
if (original.modality == Modality.FINAL || original.visibility == Visibilities.Private) {
|
||||
processor(propertySymbol)
|
||||
return@processor
|
||||
}
|
||||
|
||||
if (declaredMemberScope.getProperties(name).any { it is FirPropertySymbol && overrideChecker.isOverriddenProperty(it.fir, original) }) {
|
||||
processor(propertySymbol)
|
||||
return@processor
|
||||
}
|
||||
|
||||
val delegatedSymbol = delegatedPropertyCache.getOrPut(propertySymbol) {
|
||||
FirFakeOverrideGenerator.createCopyForFirProperty(
|
||||
FirPropertySymbol(
|
||||
propertySymbol.callableId
|
||||
),
|
||||
original,
|
||||
session,
|
||||
FirDeclarationOrigin.Delegated,
|
||||
newModality = Modality.OPEN,
|
||||
newDispatchReceiverType = dispatchReceiverType,
|
||||
).apply {
|
||||
delegatedWrapperData = DelegatedWrapperData(propertySymbol.fir, containingClass.symbol.toLookupTag(), delegateField)
|
||||
}.symbol
|
||||
}
|
||||
processor(delegatedSymbol)
|
||||
}
|
||||
}
|
||||
|
||||
override fun processDirectOverriddenFunctionsWithBaseScope(
|
||||
functionSymbol: FirNamedFunctionSymbol,
|
||||
processor: (FirNamedFunctionSymbol, FirTypeScope) -> ProcessorAction
|
||||
): ProcessorAction {
|
||||
return processDirectOverriddenWithBaseScope(
|
||||
functionSymbol, processor, FirTypeScope::processDirectOverriddenFunctionsWithBaseScope
|
||||
)
|
||||
}
|
||||
|
||||
override fun processDirectOverriddenPropertiesWithBaseScope(
|
||||
propertySymbol: FirPropertySymbol,
|
||||
processor: (FirPropertySymbol, FirTypeScope) -> ProcessorAction
|
||||
): ProcessorAction {
|
||||
return processDirectOverriddenWithBaseScope(
|
||||
propertySymbol, processor, FirTypeScope::processDirectOverriddenPropertiesWithBaseScope
|
||||
)
|
||||
}
|
||||
|
||||
private inline fun <reified D : FirCallableSymbol<*>> processDirectOverriddenWithBaseScope(
|
||||
symbol: D,
|
||||
noinline processor: (D, FirTypeScope) -> ProcessorAction,
|
||||
processDirectOverriddenCallablesWithBaseScope: FirTypeScope.(D, ((D, FirTypeScope) -> ProcessorAction)) -> ProcessorAction,
|
||||
): ProcessorAction {
|
||||
val wrappedData = (symbol.fir as? FirCallableMemberDeclaration)?.delegatedWrapperData
|
||||
return when {
|
||||
wrappedData == null || wrappedData.containingClass != containingClass.symbol.toLookupTag() -> {
|
||||
useSiteScope.processDirectOverriddenCallablesWithBaseScope(symbol, processor)
|
||||
}
|
||||
else -> processor(wrappedData.wrapped.symbol as D, useSiteScope)
|
||||
}
|
||||
}
|
||||
|
||||
override fun getCallableNames(): Set<Name> {
|
||||
return useSiteScope.getCallableNames()
|
||||
}
|
||||
|
||||
override fun getClassifierNames(): Set<Name> {
|
||||
return useSiteScope.getClassifierNames()
|
||||
}
|
||||
}
|
||||
|
||||
private object DelegatedWrapperDataKey : FirDeclarationDataKey()
|
||||
class DelegatedWrapperData<D : FirCallableDeclaration>(
|
||||
val wrapped: D,
|
||||
val containingClass: ConeClassLikeLookupTag,
|
||||
val delegateField: FirField,
|
||||
)
|
||||
var <D : FirCallableDeclaration>
|
||||
D.delegatedWrapperData: DelegatedWrapperData<D>? by FirDeclarationDataRegistry.data(DelegatedWrapperDataKey)
|
||||
|
||||
|
||||
// From the definition of function interfaces in the Java specification (pt. 9.8):
|
||||
// "methods that are members of I that do not have the same signature as any public instance method of the class Object"
|
||||
// It means that if an interface declares `int hashCode()` then the method won't be taken into account when
|
||||
// checking if the interface is SAM.
|
||||
fun FirSimpleFunction.isPublicInAny(): Boolean {
|
||||
if (name.asString() !in PUBLIC_METHOD_NAMES_IN_ANY) return false
|
||||
|
||||
return when (name.asString()) {
|
||||
"hashCode", "toString" -> valueParameters.isEmpty()
|
||||
"equals" -> valueParameters.singleOrNull()?.hasTypeOf(StandardClassIds.Any, allowNullable = true) == true
|
||||
else -> error("Unexpected method name: $name")
|
||||
}
|
||||
}
|
||||
|
||||
fun FirValueParameter.hasTypeOf(classId: ClassId, allowNullable: Boolean): Boolean {
|
||||
val classLike = when (val type = returnTypeRef.coneType) {
|
||||
is ConeClassLikeType -> type
|
||||
is ConeFlexibleType -> type.upperBound as? ConeClassLikeType ?: return false
|
||||
else -> return false
|
||||
}
|
||||
|
||||
if (classLike.isMarkedNullable && !allowNullable) return false
|
||||
return classLike.lookupTag.classId == classId
|
||||
}
|
||||
|
||||
private val PUBLIC_METHOD_NAMES_IN_ANY = setOf("equals", "hashCode", "toString")
|
||||
+43
@@ -15,9 +15,15 @@ import org.jetbrains.kotlin.fir.resolve.scope
|
||||
import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
|
||||
import org.jetbrains.kotlin.fir.resolve.transformers.ensureResolved
|
||||
import org.jetbrains.kotlin.fir.scopes.*
|
||||
import org.jetbrains.kotlin.fir.symbols.ConeClassLikeLookupTag
|
||||
import org.jetbrains.kotlin.fir.symbols.impl.*
|
||||
import org.jetbrains.kotlin.fir.types.ConeClassLikeType
|
||||
import org.jetbrains.kotlin.fir.types.ConeFlexibleType
|
||||
import org.jetbrains.kotlin.fir.types.coneType
|
||||
import org.jetbrains.kotlin.fir.types.isMarkedNullable
|
||||
import org.jetbrains.kotlin.name.ClassId
|
||||
import org.jetbrains.kotlin.name.Name
|
||||
import org.jetbrains.kotlin.name.StandardClassIds
|
||||
|
||||
class FirNewDelegatedMemberScope(
|
||||
private val session: FirSession,
|
||||
@@ -168,3 +174,40 @@ class FirNewDelegatedMemberScope(
|
||||
private object MultipleDelegatesWithTheSameSignatureKey : FirDeclarationDataKey()
|
||||
|
||||
var FirCallableDeclaration<*>.multipleDelegatesWithTheSameSignature: Boolean? by FirDeclarationDataRegistry.data(MultipleDelegatesWithTheSameSignatureKey)
|
||||
|
||||
private object DelegatedWrapperDataKey : FirDeclarationDataKey()
|
||||
class DelegatedWrapperData<D : FirCallableDeclaration<*>>(
|
||||
val wrapped: D,
|
||||
val containingClass: ConeClassLikeLookupTag,
|
||||
val delegateField: FirField,
|
||||
)
|
||||
var <D : FirCallableDeclaration<*>>
|
||||
D.delegatedWrapperData: DelegatedWrapperData<D>? by FirDeclarationDataRegistry.data(DelegatedWrapperDataKey)
|
||||
|
||||
|
||||
// From the definition of function interfaces in the Java specification (pt. 9.8):
|
||||
// "methods that are members of I that do not have the same signature as any public instance method of the class Object"
|
||||
// It means that if an interface declares `int hashCode()` then the method won't be taken into account when
|
||||
// checking if the interface is SAM.
|
||||
fun FirSimpleFunction.isPublicInAny(): Boolean {
|
||||
if (name.asString() !in PUBLIC_METHOD_NAMES_IN_ANY) return false
|
||||
|
||||
return when (name.asString()) {
|
||||
"hashCode", "toString" -> valueParameters.isEmpty()
|
||||
"equals" -> valueParameters.singleOrNull()?.hasTypeOf(StandardClassIds.Any, allowNullable = true) == true
|
||||
else -> error("Unexpected method name: $name")
|
||||
}
|
||||
}
|
||||
|
||||
fun FirValueParameter.hasTypeOf(classId: ClassId, allowNullable: Boolean): Boolean {
|
||||
val classLike = when (val type = returnTypeRef.coneType) {
|
||||
is ConeClassLikeType -> type
|
||||
is ConeFlexibleType -> type.upperBound as? ConeClassLikeType ?: return false
|
||||
else -> return false
|
||||
}
|
||||
|
||||
if (classLike.isMarkedNullable && !allowNullable) return false
|
||||
return classLike.lookupTag.classId == classId
|
||||
}
|
||||
|
||||
private val PUBLIC_METHOD_NAMES_IN_ANY = setOf("equals", "hashCode", "toString")
|
||||
|
||||
Reference in New Issue
Block a user