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

com.github.autostyle.gradle.KotlinExtension.kt Maven / Gradle / Ivy

/*
 * Copyright 2019 Vladimir Sitnikov 
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.github.autostyle.gradle

import com.github.autostyle.FormatterStep
import com.github.autostyle.gradle.ext.asProvisioner
import com.github.autostyle.gradle.ext.conv
import com.github.autostyle.kotlin.KtLintStep
import org.gradle.api.Action
import org.gradle.api.GradleException
import org.gradle.api.Project
import org.gradle.api.plugins.JavaPluginConvention
import org.gradle.kotlin.dsl.mapProperty
import javax.inject.Inject

open class KotlinExtension @Inject constructor(name: String, root: AutostyleExtension) :
    BaseFormatExtension(name, root) {

    private var forScript = false

    internal fun kotlinDefaults() {
        filter.include("**/*.kt", "**/*.kts")
        target.conv(root.providers.provider {
            val javaPlugin = project.convention.findPlugin(JavaPluginConvention::class.java)
                ?: throw GradleException("You must apply the kotlin plugin before the Autostyle plugin if you are using the kotlin extension.")
            javaPlugin.sourceSets.map { it.allSource }
        })
    }

    internal fun kotlinGradleDefaults() {
        forScript = true
        filter.include("**/*.gradle.kts")
    }

    fun ktlint(action: Action) {
        ktlint(KtLintStep.defaultVersion(), action)
    }

    @JvmOverloads
    fun ktlint(
        version: String = KtLintStep.defaultVersion(),
        action: Action? = null
    ) {
        KotlinFormatConfig(version, root.project, forScript).also {
            action?.execute(it)
            addStep(it.createStep())
        }
    }

    class KotlinFormatConfig internal constructor(
        private val version: String,
        private val project: Project,
        private val forScript: Boolean
    ) {
        val userData = project.objects.mapProperty()

        fun userData(entries: Map) = userData.putAll(entries)

        internal fun createStep(): FormatterStep {
            return KtLintStep.create(
                version,
                project.asProvisioner(),
                forScript,
                userData.get()
            )
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy