[Gradle] Implement IdeDependencyLogger

KT-54977
This commit is contained in:
Sebastian Sellmair
2022-11-29 16:00:52 +01:00
committed by Space Team
parent 0ad45cc196
commit c30b554dc4
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,27 @@
/*
* Copyright 2010-2022 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.plugin.ide
import org.jetbrains.kotlin.gradle.idea.tcs.IdeaKotlinDependency
import org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet
import org.jetbrains.kotlin.gradle.plugin.sources.project
internal object IdeDependencyLogger : IdeDependencyEffect {
private const val propertyKey = "IdeDependencyLogger.log"
override fun invoke(sourceSet: KotlinSourceSet, dependencies: Set<IdeaKotlinDependency>) {
val log = sourceSet.project.properties[propertyKey]?.toString() ?: return
val coordinates = IdeaKotlinSourceCoordinates(sourceSet)
if (log.isEmpty() || Regex(log).matches(coordinates.toString())) {
IdeMultiplatformImport.logger.quiet(
"\n$coordinates resolved:\n" + dependencies.mapNotNull { it.coordinates }
.joinToString("\n") { it.toString().prependIndent(" ") } +
"\n"
)
}
}
}
@@ -96,6 +96,11 @@ internal fun IdeMultiplatformImport(extension: KotlinProjectExtension): IdeMulti
level = IdeMultiplatformImport.DependencyResolutionLevel.Overwrite
)
registerDependencyEffect(
effect = IdeDependencyLogger,
constraint = SourceSetConstraint.unconstrained
)
registerExtrasSerializationExtension {
register(kotlinDebugKey, IdeaKotlinExtrasSerializer.javaIoSerializable())
}