forked from JLLeitschuh/ktlint-gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add tests for 0.44 and 0.45 as well This resolves JLLeitschuh#589 This resolves JLLeitschuh#607
- Loading branch information
1 parent
89b7fb6
commit e40a379
Showing
11 changed files
with
433 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
292 changes: 292 additions & 0 deletions
292
plugin/src/main/kotlin/org/jlleitschuh/gradle/ktlint/worker/KtLintInvocation.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,292 @@ | ||
package org.jlleitschuh.gradle.ktlint.worker | ||
|
||
import com.pinterest.ktlint.core.LintError | ||
import com.pinterest.ktlint.core.api.FeatureInAlphaState | ||
import java.io.File | ||
import kotlin.reflect.KFunction | ||
import kotlin.reflect.full.findParameterByName | ||
import kotlin.reflect.full.instanceParameter | ||
import kotlin.reflect.full.memberFunctions | ||
import kotlin.reflect.full.memberProperties | ||
import kotlin.reflect.full.primaryConstructor | ||
|
||
/** | ||
* An abstraction for invoking ktlint across all breaking changes between versions | ||
*/ | ||
internal sealed interface KtLintInvocation { | ||
fun invokeLint(file: File, cb: (LintError, Boolean) -> Unit) | ||
fun invokeFormat(file: File, cb: (LintError, Boolean) -> Unit): String | ||
} | ||
|
||
sealed interface KtLintInvocationFactory | ||
|
||
/** | ||
* Implementation for invoking ktlint prior to 0.46.0 | ||
* Does not use reflection because the API is the same as the version of ktlint this project is compiled against | ||
*/ | ||
internal class LegacyParamsInvocation( | ||
private val editorConfigPath: String?, | ||
private val ruleSets: Set<com.pinterest.ktlint.core.RuleSet>, | ||
private val userData: Map<String, String>, | ||
private val debug: Boolean | ||
) : KtLintInvocation { | ||
companion object Factory : KtLintInvocationFactory { | ||
fun initialize( | ||
editorConfigPath: String?, | ||
ruleSets: Set<com.pinterest.ktlint.core.RuleSet>, | ||
userData: Map<String, String>, | ||
debug: Boolean | ||
): KtLintInvocation = LegacyParamsInvocation( | ||
editorConfigPath = editorConfigPath, | ||
ruleSets = ruleSets, | ||
userData = userData, | ||
debug = debug | ||
) | ||
} | ||
|
||
private fun buildParams(file: File, cb: (LintError, Boolean) -> Unit): com.pinterest.ktlint.core.KtLint.Params { | ||
val script = !file.name.endsWith(".kt", ignoreCase = true) | ||
return com.pinterest.ktlint.core.KtLint.Params( | ||
fileName = file.absolutePath, | ||
text = file.readText(), | ||
ruleSets = ruleSets, | ||
userData = userData, | ||
debug = debug, | ||
editorConfigPath = editorConfigPath, | ||
script = script, | ||
cb = cb | ||
) | ||
} | ||
|
||
override fun invokeLint(file: File, cb: (LintError, Boolean) -> Unit) { | ||
com.pinterest.ktlint.core.KtLint.lint(buildParams(file, cb)) | ||
} | ||
|
||
override fun invokeFormat(file: File, cb: (LintError, Boolean) -> Unit): String { | ||
return com.pinterest.ktlint.core.KtLint.format(buildParams(file, cb)) | ||
} | ||
} | ||
|
||
/** | ||
* Implementation for invoking ktlint 0.46.x | ||
*/ | ||
@OptIn(FeatureInAlphaState::class) | ||
internal class ExperimentalParamsInvocation( | ||
private val editorConfigPath: String?, | ||
private val ruleSets: Set<com.pinterest.ktlint.core.RuleSet>, | ||
private val userData: Map<String, String>, | ||
private val debug: Boolean | ||
) : KtLintInvocation { | ||
companion object Factory : KtLintInvocationFactory { | ||
fun initialize( | ||
editorConfigPath: String?, | ||
ruleSets: Set<com.pinterest.ktlint.core.RuleSet>, | ||
userData: Map<String, String>, | ||
debug: Boolean | ||
): KtLintInvocation = ExperimentalParamsInvocation( | ||
editorConfigPath = editorConfigPath, | ||
ruleSets = ruleSets, | ||
userData = userData, | ||
debug = debug | ||
) | ||
} | ||
|
||
private fun buildParams( | ||
file: File, | ||
cb: (LintError, Boolean) -> Unit | ||
): com.pinterest.ktlint.core.KtLint.ExperimentalParams { | ||
val script = !file.name.endsWith(".kt", ignoreCase = true) | ||
val ctor = Class.forName("com.pinterest.ktlint.core.KtLint\$ExperimentalParams").kotlin.primaryConstructor | ||
val editorConfigOverride = userDataToEditorConfigOverride(userData) | ||
return ctor!!.callBy( | ||
mapOf( | ||
ctor.findParameterByName("fileName")!! to file.absolutePath, | ||
ctor.findParameterByName("text")!! to file.readText(), | ||
ctor.findParameterByName("ruleSets")!! to ruleSets, | ||
ctor.findParameterByName("cb")!! to cb, | ||
ctor.findParameterByName("script")!! to script, | ||
ctor.findParameterByName("editorConfigPath")!! to editorConfigPath, | ||
ctor.findParameterByName("debug")!! to debug, | ||
ctor.findParameterByName("editorConfigOverride")!! to editorConfigOverride | ||
) | ||
) as com.pinterest.ktlint.core.KtLint.ExperimentalParams | ||
} | ||
|
||
override fun invokeLint(file: File, cb: (LintError, Boolean) -> Unit) { | ||
com.pinterest.ktlint.core.KtLint.lint(buildParams(file, cb)) | ||
} | ||
|
||
override fun invokeFormat(file: File, cb: (LintError, Boolean) -> Unit): String { | ||
return com.pinterest.ktlint.core.KtLint.format(buildParams(file, cb)) | ||
} | ||
} | ||
|
||
fun getCodeStyle(styleName: String): Any { | ||
return try { | ||
Class.forName("com.pinterest.ktlint.core.api.DefaultEditorConfigProperties\$CodeStyleValue") | ||
.getDeclaredField(styleName).get(null) | ||
} catch (e: ClassNotFoundException) { | ||
(Class.forName("com.pinterest.ktlint.core.api.editorconfig.CodeStyleValue").enumConstants as Array<Enum<*>>).first { | ||
it.name == styleName | ||
} | ||
} | ||
} | ||
|
||
fun getEditorConfigPropertyClass(): Class<*> { | ||
return try { | ||
Class.forName("com.pinterest.ktlint.core.api.UsesEditorConfigProperties\$EditorConfigProperty") | ||
} catch (e: ClassNotFoundException) { | ||
Class.forName("com.pinterest.ktlint.core.api.editorconfig.EditorConfigProperty") | ||
} | ||
} | ||
|
||
@Suppress("UnnecessaryOptInAnnotation") | ||
@OptIn(FeatureInAlphaState::class) | ||
fun userDataToEditorConfigOverride(userData: Map<String, String>): Any { | ||
val defaultEditorConfigPropertiesClass = | ||
Class.forName("com.pinterest.ktlint.core.api.DefaultEditorConfigProperties") | ||
val defaultEditorConfigProperties = defaultEditorConfigPropertiesClass.kotlin.objectInstance | ||
val codeStyle = getCodeStyle(if (userData["android"]?.toBoolean() == true) "android" else "official") | ||
val editorConfigOverrideClass = Class.forName("com.pinterest.ktlint.core.api.EditorConfigOverride") | ||
val editorConfigOverride = editorConfigOverrideClass.kotlin.primaryConstructor!!.call() | ||
val addMethod = editorConfigOverrideClass.getDeclaredMethod("add", getEditorConfigPropertyClass(), Any::class.java) | ||
addMethod.isAccessible = true | ||
val disabledRulesProperty = | ||
defaultEditorConfigPropertiesClass.kotlin.memberProperties.firstOrNull { it.name == "ktlintDisabledRulesProperty" } | ||
?: defaultEditorConfigPropertiesClass.kotlin.memberProperties.first { it.name == "disabledRulesProperty" } | ||
val codeStyleSetProperty = | ||
defaultEditorConfigPropertiesClass.kotlin.memberProperties.first { it.name == "codeStyleSetProperty" } | ||
addMethod.invoke( | ||
editorConfigOverride, disabledRulesProperty.getter.call(defaultEditorConfigProperties), | ||
userData["disabled_rules"] | ||
) | ||
addMethod.invoke(editorConfigOverride, codeStyleSetProperty.getter.call(defaultEditorConfigProperties), codeStyle) | ||
return editorConfigOverride | ||
} | ||
|
||
/** | ||
* Implementation for invoking ktlint 0.47.x | ||
*/ | ||
@OptIn(FeatureInAlphaState::class) | ||
internal class ExperimentalParamsProviderInvocation( | ||
private val editorConfigPath: String?, | ||
private val ruleProviders: Set<Any>, | ||
private val userData: Map<String, String>, | ||
private val debug: Boolean, | ||
) : KtLintInvocation { | ||
companion object Factory : KtLintInvocationFactory { | ||
fun initialize( | ||
editorConfigPath: String?, | ||
ruleProviders: Set<Any>, | ||
userData: Map<String, String>, | ||
debug: Boolean | ||
): ExperimentalParamsProviderInvocation = | ||
ExperimentalParamsProviderInvocation(editorConfigPath, ruleProviders, userData, debug) | ||
} | ||
|
||
private fun buildParams( | ||
file: File, | ||
cb: (LintError, Boolean) -> Unit | ||
): com.pinterest.ktlint.core.KtLint.ExperimentalParams { | ||
val script = !file.name.endsWith(".kt", ignoreCase = true) | ||
val ctor = Class.forName("com.pinterest.ktlint.core.KtLint\$ExperimentalParams").kotlin.primaryConstructor | ||
val editorConfigOverride = userDataToEditorConfigOverride(userData) | ||
return ctor!!.callBy( | ||
mapOf( | ||
ctor.findParameterByName("fileName")!! to file.absolutePath, | ||
ctor.findParameterByName("text")!! to file.readText(), | ||
ctor.findParameterByName("ruleProviders")!! to ruleProviders, | ||
ctor.findParameterByName("cb")!! to cb, | ||
ctor.findParameterByName("script")!! to script, | ||
ctor.findParameterByName("editorConfigPath")!! to editorConfigPath, | ||
ctor.findParameterByName("debug")!! to debug, | ||
ctor.findParameterByName("editorConfigOverride")!! to editorConfigOverride | ||
) | ||
) as com.pinterest.ktlint.core.KtLint.ExperimentalParams | ||
} | ||
|
||
override fun invokeLint(file: File, cb: (LintError, Boolean) -> Unit) { | ||
com.pinterest.ktlint.core.KtLint.lint(buildParams(file, cb)) | ||
} | ||
|
||
override fun invokeFormat(file: File, cb: (LintError, Boolean) -> Unit): String { | ||
return com.pinterest.ktlint.core.KtLint.format(buildParams(file, cb)) | ||
} | ||
} | ||
|
||
/** | ||
* Implementation for invoking ktlint >= 0.48 | ||
* This should be the long term API. | ||
* We can't compile against this version though, since it is compiled on a newer version of kotlin than gradle embeds. | ||
*/ | ||
internal class RuleEngineInvocation( | ||
private val engine: Any, | ||
private val lintMethod: KFunction<*>, | ||
private val formatMethod: KFunction<*> | ||
) : KtLintInvocation { | ||
companion object Factory : KtLintInvocationFactory { | ||
fun initialize(ruleProviders: Set<Any>, userData: Map<String, String>): RuleEngineInvocation { | ||
val engineClass = Class.forName("com.pinterest.ktlint.core.KtLintRuleEngine") | ||
val editorConfigOverride = userDataToEditorConfigOverride(userData) | ||
val ctor = engineClass.kotlin.primaryConstructor | ||
val engine = ctor!!.callBy( | ||
mapOf( | ||
ctor.findParameterByName("ruleProviders")!! to ruleProviders, | ||
ctor.findParameterByName("editorConfigOverride")!! to editorConfigOverride | ||
) | ||
) | ||
val lintMethod = engine::class.memberFunctions.first { | ||
it.name == "lint" && it.parameters.map { it.name }.containsAll(setOf("code", "filePath", "callback")) | ||
} | ||
val formatMethod = engine::class.memberFunctions.first { | ||
it.name == "format" && it.parameters.map { it.name }.containsAll(setOf("code", "filePath", "callback")) | ||
} | ||
return RuleEngineInvocation(engine, lintMethod, formatMethod) | ||
} | ||
} | ||
|
||
override fun invokeLint(file: File, cb: (LintError, Boolean) -> Unit) { | ||
lintMethod.callBy( | ||
mapOf( | ||
lintMethod.instanceParameter!! to engine, | ||
lintMethod.findParameterByName("code")!! to file.readText(), | ||
lintMethod.findParameterByName("filePath")!! to file.absoluteFile.toPath(), | ||
lintMethod.findParameterByName("callback")!! to { le: LintError -> cb.invoke(le, false) } | ||
) | ||
) | ||
} | ||
|
||
override fun invokeFormat(file: File, cb: (LintError, Boolean) -> Unit): String { | ||
return formatMethod.callBy( | ||
mapOf( | ||
formatMethod.instanceParameter!! to engine, | ||
formatMethod.findParameterByName("code")!! to file.readText(), | ||
formatMethod.findParameterByName("filePath")!! to file.absoluteFile.toPath(), | ||
formatMethod.findParameterByName("callback")!! to cb | ||
) | ||
) as String | ||
} | ||
} | ||
|
||
internal fun selectInvocation(): KtLintInvocationFactory { | ||
return try { | ||
// ktlint < 0.46 | ||
KtLintInvocation::class.java.classLoader.loadClass("com.pinterest.ktlint.core.KtLint\$Params") | ||
LegacyParamsInvocation | ||
} catch (e: Exception) { | ||
try { | ||
// ktlint >= 0.48.0 | ||
Class.forName("com.pinterest.ktlint.core.KtLintRuleEngine") | ||
RuleEngineInvocation | ||
} catch (e: Exception) { | ||
val ctor = Class.forName("com.pinterest.ktlint.core.KtLint\$ExperimentalParams").kotlin.primaryConstructor | ||
if (ctor?.findParameterByName("ruleProviders") != null) { | ||
// ktlint = 0.47.x | ||
ExperimentalParamsProviderInvocation | ||
} else { | ||
// ktlint = 0.46.x | ||
ExperimentalParamsInvocation | ||
} | ||
} | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
plugin/src/main/kotlin/org/jlleitschuh/gradle/ktlint/worker/KtLintRuleLoader.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package org.jlleitschuh.gradle.ktlint.worker | ||
|
||
import java.util.ServiceLoader | ||
import kotlin.reflect.full.memberProperties | ||
|
||
/** | ||
* Old API for loading rules available prior to ktlint 0.47.0 | ||
*/ | ||
internal fun loadRuleSetsFromClasspathWithRuleSetProvider(): Map<String, com.pinterest.ktlint.core.RuleSet> { | ||
return ServiceLoader | ||
.load(com.pinterest.ktlint.core.RuleSetProvider::class.java) | ||
.associateBy { | ||
val key = it.get().id | ||
// Adapted from KtLint CLI module | ||
if (key == "standard") "\u0000$key" else key | ||
} | ||
.mapValues { it.value.get() } | ||
} | ||
|
||
/** | ||
* New API for loading rules available in ktlint 0.47+ | ||
*/ | ||
internal fun loadRuleSetsFromClasspathWithRuleSetProviderV2(): Map<String, Set<Any>> { | ||
val ruleSetProviderV2Class = Class.forName("com.pinterest.ktlint.core.RuleSetProviderV2") | ||
val idProperty = ruleSetProviderV2Class.kotlin.memberProperties.first{it.name == "id"} | ||
val getRuleProviders = ruleSetProviderV2Class.getDeclaredMethod("getRuleProviders") | ||
return ServiceLoader | ||
.load(ruleSetProviderV2Class) | ||
.associateBy { | ||
val key = idProperty.getter.call(it) as String | ||
// Adapted from KtLint CLI module | ||
if (key == "standard") "\u0000$key" else key | ||
}.mapValues { | ||
getRuleProviders.invoke(it.value) as Set<Any> | ||
} | ||
} |
Oops, something went wrong.