
com.jtransc.ast.ast_ref.kt Maven / Gradle / Ivy
package com.jtransc.ast
import com.jtransc.error.invalidOp
import com.jtransc.error.noImpl
import kotlin.reflect.KProperty1
interface AstRef
interface AstMemberRef : AstRef {
val classRef: AstType.REF
val containingClass: FqName
val name: String
val memberType: AstType
}
fun AstMemberRef.getClass(program: AstProgram) = program[classRef]!!
fun AstMethodRef.getMethod(program: AstProgram) = program[this]
fun AstFieldRef.getField(program: AstProgram) = program[this]
inline fun KProperty1.ast(): AstFieldRef {
return AstFieldRef(T1::class.java.name.fqname, this.name, T2::class.java.ast())
}
inline fun Class.ast(): AstType {
if (this.isPrimitive) {
noImpl("Not implemented " + T::class.java)
} else {
return AstType.REF(this.name.fqname)
}
}
object AstProgramRef : AstRef {
}
data class AstFieldRef(override val containingClass: FqName, override val name: String, val type: AstType) : AstMemberRef, FieldRef {
override val ref = this
override val classRef: AstType.REF by lazy { AstType.REF(containingClass) }
override val memberType: AstType = type
val containingTypeRef = AstType.REF(containingClass)
override fun hashCode() = containingClass.hashCode() + name.hashCode() + type.hashCode()
override fun toString() = "AstFieldRef(${containingClass.fqname},$name,${type.mangle()})"
//fun resolve(program: AstProgram): AstField = program[containingClass][this]
fun resolve(program: AstProgram): AstField = program[this]
}
data class AstMethodRef(override val containingClass: FqName, override val name: String, val type: AstType.METHOD) : AstMemberRef, MethodRef {
override val ref = this
override val classRef: AstType.REF by lazy { AstType.REF(containingClass) }
val withoutClass: AstMethodWithoutClassRef by lazy { AstMethodWithoutClassRef(this.name, this.type) }
val containingClassType: AstType.REF by lazy { AstType.REF(containingClass) }
override val memberType: AstType = type
val fid: String get() = "${containingClass.fqname}:$name:$desc"
val fidWildcard: String get() = "${containingClass.fqname}:$name:*"
val desc by lazy { type.desc }
val descWithoutRetval by lazy { type.desc2 }
val nameDesc by lazy { AstMethodWithoutClassRef(name, type) }
val nameDescStr by lazy { "$name$desc" }
val nameWithClass by lazy { "${containingClass.fqname}.${name}" }
val allClassRefs: List by lazy { type.getRefClasses() + classRef }
//fun resolve(program: AstProgram): AstMethod = program[containingClass].getMethodInAncestorsAndInterfaces(this.withoutClass) ?: invalidOp("Can't resolve method $this")
fun resolve(program: AstProgram): AstMethod = program[this]!!
override fun hashCode() = containingClass.hashCode() + name.hashCode() + type.hashCode()
override fun toString() = "AstMethodRef(${containingClass.fqname},$name,${type.desc})"
}
data class AstFieldWithoutClassRef(val name: String, val type: AstType)
data class AstFieldWithoutTypeRef(val containingClass: FqName, val name: String)
data class AstMethodWithoutClassRef(val name: String, val type: AstType.METHOD) {
val fid2: String get() = "$name:${type.mangle()}"
val fid2Wildcard: String get() = "$name:*"
val desc = type.desc
val descWithoutRetval = type.desc2
override fun toString() = "AstMethodWithoutClassRef($name,${type.desc})"
}
val AstMethodRef.methodDesc: AstMethodWithoutClassRef get() = AstMethodWithoutClassRef(this.name, this.type)
val AstMethodRef.withoutRetval: AstMethodRef get() {
return if (this.type.ret is AstType.UNKNOWN) this else AstMethodRef(containingClass, name, type.withoutRetval)
}
val AstFieldRef.withoutClass: AstFieldWithoutClassRef get() = AstFieldWithoutClassRef(this.name, this.type)
fun AstMethodRef.withClass(other: AstType.REF) = AstMethodRef(other.name, this.name, this.type)
fun AstMethodWithoutClassRef.withClass(containingClass: FqName): AstMethodRef = AstMethodRef(containingClass, this.name, this.type)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy