All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.gradle.dsl.KotlinSourceSetConvention.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-RC
Show newest version
/*
 * Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
 * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
 */

package org.jetbrains.kotlin.gradle.dsl

import org.gradle.api.NamedDomainObjectContainer
import org.gradle.api.NamedDomainObjectProvider
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
import org.jetbrains.kotlin.tooling.core.extrasReadWriteProperty
import kotlin.properties.ReadOnlyProperty
import kotlin.reflect.KProperty

/**
 * Can be used to implement static conventions to access certain Source Sets:
 * Example: commonMain and commonTest conventions are implemented as:
 *
 * ```kotlin
 * val NamedDomainObjectContainer.commonMain by KotlinSourceSetConvention
 *
 * val NamedDomainObjectContainer.commonTest by KotlinSourceSetConvention
 * ```
 *
 * And then can be accessed in buildscripts as
 * ```kotlin
 * kotlin {
 *     sourceSets.commonMain.dependencies {
 *         // ...
 *     }
 *
 *     sourceSets.commonTest.dependencies {
 *         // ...
 *     }
 * }
 * ```
 */
@ExperimentalKotlinGradlePluginApi
object KotlinSourceSetConvention :
    ReadOnlyProperty, NamedDomainObjectProvider> {

    internal class Trace : Throwable()

    override fun getValue(
        thisRef: NamedDomainObjectContainer, property: KProperty<*>,
    ): NamedDomainObjectProvider {
        val name = property.name
        if (name in thisRef.names) return thisRef.named(name)
        val trace = Trace()
        return thisRef.register(name) { sourceSet ->
            sourceSet.isRegisteredByKotlinSourceSetConventionAt = trace
        }
    }

    /**
     * @return the stacktrace when the user was using a [KotlinSourceSetConvention] that indeed created/registered a new SourceSet.
     * This will be null if SourceSet already existed and was referenced using the convention, or of no convention was used at all.
     */
    @Suppress("UnusedReceiverParameter") // Diagnostic is wrong
    internal var KotlinSourceSet.isRegisteredByKotlinSourceSetConventionAt: Trace?
            by extrasReadWriteProperty("isRegisteredByKotlinSourceSetConvention")
        private set
}








© 2015 - 2024 Weber Informatics LLC | Privacy Policy