Обработка аннотаций в Kotlin Мультиплатформенность можно выполнить с помощью kapt
, если у вас есть цель jvm.
Но как обрабатывать аннотации, если нет цели jvm?
Специально Я хочу генерировать код при обработке аннотаций из commonMain
. Но я не могу понять, как их обрабатывать.
Мой процессор аннотаций в данный момент просто регистрирует:
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedAnnotationTypes("ch.hippmann.annotation.Register")
@SupportedOptions(RegisterAnnotationProcessor.KAPT_KOTLIN_GENERATED_OPTION_NAME)
class RegisterAnnotationProcessor : AbstractProcessor(){
companion object {
const val KAPT_KOTLIN_GENERATED_OPTION_NAME = "kapt.kotlin.generated"
}
override fun process(annotations: MutableSet<out TypeElement>?, roundEnv: RoundEnvironment?): Boolean {
processingEnv.messager.printMessage(Diagnostic.Kind.WARNING, "Processing")
return true
}
}
Аннотация находится в отдельном многоплатформенном модуле и находится в commonMain
:
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
annotation class Register
И используется в проекте в commonMain
:
часть build.gradle
:
kotlin {
jvm()
// For ARM, should be changed to iosArm32 or iosArm64
// For Linux, should be changed to e.g. linuxX64
// For MacOS, should be changed to e.g. macosX64
// For Windows, should be changed to e.g. mingwX64
linuxX64("linux")
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib-common')
implementation project(":annotations")
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
}
}
jvmTest {
dependencies {
implementation kotlin('test')
implementation kotlin('test-junit')
}
}
linuxMain {
}
linuxTest {
}
}
}
dependencies {
kapt project(":annotationProcessor")
}
Это работает как журнал, так как jvm()
цель настоящее. Но если я удаляю его, я не могу использовать kapt
.
Так как обрабатывать аннотации, когда есть нет jvm
target?