Kotlin 多平台注释处理

问题描述 投票:0回答:1

当拥有 jvm 目标时,可以使用

kapt
完成 Kotlin 多平台中的注释处理。

但是如果没有 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

那么当存在no

jvm
目标时如何处理注解呢?

kotlin annotations annotation-processing kotlin-multiplatform kapt
1个回答
1
投票

你似乎已经解决了你的问题,但如果有人最终来到这里......

我可以在通用代码上使用 kapt,没有任何问题,如下所示:

val commonMain by getting {
    dependencies {
        ...
         configurations.get("kapt").dependencies.add(project(": annotationProcessor"))
    }
}

它可以毫无问题地处理

commonMain
代码上的注释。不过,我确实有一个 android 目标,所以如果问题仅在根本没有 jvm 目标时才出现,那么 ymmv。还有适用于 Kotlin Native 的注释处理器,例如https://github.com/Foso/MpApt

© www.soinside.com 2019 - 2024. All rights reserved.