com.zeoflow.depot.compiler.processing.ksp.KspFieldElement.kt Maven / Gradle / Ivy
/*
* Copyright (C) 2021 ZeoFlow SRL
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.zeoflow.depot.compiler.processing.ksp
import com.zeoflow.depot.compiler.processing.XAnnotated
import com.zeoflow.depot.compiler.processing.XFieldElement
import com.zeoflow.depot.compiler.processing.XHasModifiers
import com.zeoflow.depot.compiler.processing.XType
import com.zeoflow.depot.compiler.processing.ksp.KspAnnotated.UseSiteFilter.Companion.NO_USE_SITE_OR_FIELD
import com.google.devtools.ksp.symbol.KSPropertyDeclaration
internal class KspFieldElement(
env: KspProcessingEnv,
override val declaration: KSPropertyDeclaration,
val containing: KspMemberContainer
) : KspElement(env, declaration),
XFieldElement,
XHasModifiers by KspHasModifiers.create(declaration),
XAnnotated by KspAnnotated.create(env, declaration, NO_USE_SITE_OR_FIELD) {
override val equalityItems: Array by lazy {
arrayOf(declaration, containing)
}
override val enclosingElement: KspMemberContainer by lazy {
declaration.requireEnclosingMemberContainer(env)
}
override val name: String by lazy {
declaration.simpleName.asString()
}
override val type: KspType by lazy {
env.wrap(
originatingReference = declaration.type,
ksType = declaration.typeAsMemberOf(containing.type?.ksType)
)
}
override fun asMemberOf(other: XType): XType {
if (containing.type?.isSameType(other) != false) {
return type
}
check(other is KspType)
val asMember = declaration.typeAsMemberOf(other.ksType)
return env.wrap(
originatingReference = declaration.type,
ksType = asMember
)
}
fun copyTo(newContaining: KspTypeElement) = KspFieldElement(
env = env,
declaration = declaration,
containing = newContaining
)
companion object {
fun create(
env: KspProcessingEnv,
declaration: KSPropertyDeclaration
): KspFieldElement {
return KspFieldElement(
env = env,
declaration = declaration,
containing = declaration.requireEnclosingMemberContainer(env)
)
}
}
}