org.jetbrains.kotlin.analysis.decompiler.stub.ClsContractBuilder.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-2023 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.analysis.decompiler.stub
import org.jetbrains.kotlin.contracts.description.KtBooleanValueParameterReference
import org.jetbrains.kotlin.contracts.description.KtConstantReference
import org.jetbrains.kotlin.contracts.description.KtEffectDeclaration
import org.jetbrains.kotlin.contracts.description.KtValueParameterReference
import org.jetbrains.kotlin.metadata.ProtoBuf
import org.jetbrains.kotlin.metadata.deserialization.isInstanceType
import org.jetbrains.kotlin.name.StandardClassIds
import org.jetbrains.kotlin.psi.stubs.impl.*
import org.jetbrains.kotlin.psi.stubs.impl.KotlinContractEffectType.Companion.IGNORE_REFERENCE_PARAMETER_NAME
import org.jetbrains.kotlin.serialization.deserialization.ProtoBufContractDeserializer
import org.jetbrains.kotlin.serialization.deserialization.getClassId
import org.jetbrains.kotlin.metadata.deserialization.type
import org.jetbrains.kotlin.metadata.deserialization.receiverType
class ClsContractBuilder(private val c: ClsStubBuilderContext, private val typeStubBuilder: TypeClsStubBuilder) :
ProtoBufContractDeserializer() {
fun loadContract(proto: ProtoBuf.Function): List>? {
return proto.contract.effectList.map { loadPossiblyConditionalEffect(it, proto) ?: return null }
}
override fun extractVariable(valueParameterIndex: Int, owner: ProtoBuf.Function): KtValueParameterReference {
val type = if (valueParameterIndex < 0) {
owner.receiverType(c.typeTable)
} else owner.valueParameterList[valueParameterIndex].type(c.typeTable)
return if (type?.hasClassName() == true && c.nameResolver.getClassId(type.className) == StandardClassIds.Boolean) {
KtBooleanValueParameterReference(valueParameterIndex, name = IGNORE_REFERENCE_PARAMETER_NAME)
} else KtValueParameterReference(valueParameterIndex, name = IGNORE_REFERENCE_PARAMETER_NAME)
}
override fun extractType(proto: ProtoBuf.Expression): KotlinTypeBean? {
return typeStubBuilder.createKotlinTypeBean(proto.isInstanceType(c.typeTable))
}
override fun loadConstant(value: ProtoBuf.Expression.ConstantValue): KtConstantReference {
return when (value) {
ProtoBuf.Expression.ConstantValue.TRUE -> KotlinContractConstantValues.TRUE
ProtoBuf.Expression.ConstantValue.FALSE -> KotlinContractConstantValues.FALSE
ProtoBuf.Expression.ConstantValue.NULL -> KotlinContractConstantValues.NULL
}
}
override fun getNotNull(): KtConstantReference {
return KotlinContractConstantValues.NOT_NULL
}
override fun getWildcard(): KtConstantReference {
return KotlinContractConstantValues.WILDCARD
}
}