summaryrefslogtreecommitdiff
path: root/plugins/kotlin/gradle/gradle-tooling/src/org/jetbrains/kotlin/idea/gradleTooling/reflect/KotlinKpmExtensionReflection.kt
blob: 2dfd39c8370600f16cf630cbc56651e2a3f5d760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
@file:Suppress("FunctionName")

package org.jetbrains.kotlin.idea.gradleTooling.reflect

fun KotlinKpmExtensionReflection(extension: Any): KotlinKpmExtensionReflection =
    KotlinKpmExtensionReflectionImpl(extension)

interface KotlinKpmExtensionReflection {
    val coreLibrariesVersion: String?
    val explicitApiCliOption: String?
    val modules: List<KotlinModuleReflection>?
}

private class KotlinKpmExtensionReflectionImpl(
    private val instance: Any
) : KotlinKpmExtensionReflection {

    override val coreLibrariesVersion: String? by lazy {
        instance.callReflectiveGetter("getCoreLibrariesVersion", logger)
    }

    override val explicitApiCliOption: String? by lazy {
        instance.callReflective("getExplicitApi", parameters(), returnType<Any?>(), logger)
            ?.callReflectiveGetter("getCliOption", logger)
    }

    override val modules: List<KotlinModuleReflection>? by lazy {
        instance.callReflective("getModules", parameters(), returnType<Iterable<Any>>(), logger)
            ?.map { module -> KotlinModuleReflection(module) }
    }

    companion object {
        val logger = ReflectionLogger(KotlinKpmExtensionReflection::class.java)
    }
}