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

org.jetbrains.kotlin.gradle.targets.native.internal.CopyCInteropCommonizerTaskOutputForIdeTask.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-Beta1
Show newest version
/*
 * Copyright 2010-2021 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.targets.native.internal

import org.gradle.api.provider.Provider
import org.gradle.api.tasks.*
import java.io.File

internal open class CopyCommonizeCInteropForIdeTask : AbstractCInteropCommonizerTask() {

    private val commonizeCInteropTask: TaskProvider
        get() = project.commonizeCInteropTask ?: throw IllegalStateException("Missing commonizeCInteropTask")

    @get:IgnoreEmptyDirectories
    @get:InputFiles
    @get:PathSensitive(PathSensitivity.ABSOLUTE)
    val cInteropCommonizerTaskOutputDirectories: Provider> =
        commonizeCInteropTask.map { it.allOutputDirectories }

    @get:OutputDirectory
    override val outputDirectory: File = project.rootDir.resolve(".gradle/kotlin/commonizer")
        .resolve(project.path.removePrefix(":").replace(":", "/"))

    override fun findInteropsGroup(dependent: CInteropCommonizerDependent): CInteropCommonizerGroup? {
        return commonizeCInteropTask.get().findInteropsGroup(dependent)
    }

    @TaskAction
    protected fun copy() {
        outputDirectory.mkdirs()
        for (group in commonizeCInteropTask.get().getAllInteropsGroups()) {
            val source = commonizeCInteropTask.get().outputDirectory(group)
            if (!source.exists()) continue
            val target = outputDirectory(group)
            if (target.exists()) target.deleteRecursively()
            source.copyRecursively(target, true)
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy