Skip to content

Commit 38723e8

Browse files
refactor: ReportingHandler.Config is an interface for Gradle reasons.
1 parent 8b4f261 commit 38723e8

File tree

3 files changed

+36
-40
lines changed

3 files changed

+36
-40
lines changed

src/main/kotlin/com/autonomousapps/extension/ReportingHandler.kt

+31-26
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package com.autonomousapps.extension
33
import org.gradle.api.model.ObjectFactory
44
import org.gradle.api.provider.Property
55
import org.gradle.api.tasks.Input
6+
import org.gradle.kotlin.dsl.newInstance
67
import org.gradle.kotlin.dsl.property
78
import javax.inject.Inject
89

@@ -18,7 +19,7 @@ import javax.inject.Inject
1819
* }
1920
* ```
2021
*/
21-
abstract class ReportingHandler @Inject constructor(objects: ObjectFactory) {
22+
abstract class ReportingHandler @Inject constructor(private val objects: ObjectFactory) {
2223

2324
internal val onlyOnFailure: Property<Boolean> = objects.property<Boolean>().convention(false)
2425
internal val postscript: Property<String> = objects.property<String>().convention("")
@@ -39,33 +40,37 @@ abstract class ReportingHandler @Inject constructor(objects: ObjectFactory) {
3940
this.postscript.disallowChanges()
4041
}
4142

42-
internal fun config() = Config(
43-
onlyOnFailure = onlyOnFailure,
44-
postscript = postscript,
45-
)
43+
internal fun config(): Config {
44+
val config = objects.newInstance<Config>()
45+
config.onlyOnFailure.set(onlyOnFailure)
46+
config.postscript.set(postscript)
47+
return config
48+
}
4649

47-
class Config(
48-
@get:Input val onlyOnFailure: Property<Boolean>,
49-
@get:Input val postscript: Property<String>,
50-
) {
50+
interface Config {
5151

52-
/**
53-
* Returns the supplied [postscript], or an empty string, depending on whether we've been configured to print
54-
* [onlyOnFailure] and the actual [failure state][shouldFail] of the advice.
55-
*/
56-
internal fun getEffectivePostscript(shouldFail: Boolean): String {
57-
return if (shouldPrint(shouldFail)) postscript.get() else ""
58-
}
52+
@get:Input val onlyOnFailure: Property<Boolean>
53+
@get:Input val postscript: Property<String>
54+
}
55+
}
56+
57+
/**
58+
* Returns the supplied [postscript][ReportingHandler.Config.postscript], or an empty string, depending on whether we've
59+
* been configured to print [onlyOnFailure][ReportingHandler.Config.onlyOnFailure] and the actual
60+
* [failure state][shouldFail] of the advice.
61+
*/
62+
internal fun ReportingHandler.Config.getEffectivePostscript(shouldFail: Boolean): String {
63+
return if (shouldPrint(shouldFail)) postscript.get() else ""
64+
}
5965

60-
/**
61-
* Returns true if the [postscript] should be included in output, based on the combination of [onlyOnFailure] and
62-
* the actual [failure state][shouldFail] of the advice.
63-
*/
64-
private fun shouldPrint(shouldFail: Boolean): Boolean {
65-
val onlyOnFailure = onlyOnFailure.get()
66-
val alwaysPrint = !onlyOnFailure
66+
/**
67+
* Returns true if the [postscript][ReportingHandler.Config.postscript] should be included in output, based on the
68+
* combination of [onlyOnFailure][ReportingHandler.Config.onlyOnFailure] and the actual [failure state][shouldFail] of
69+
* the advice.
70+
*/
71+
private fun ReportingHandler.Config.shouldPrint(shouldFail: Boolean): Boolean {
72+
val onlyOnFailure = onlyOnFailure.get()
73+
val alwaysPrint = !onlyOnFailure
6774

68-
return ((onlyOnFailure && shouldFail) || alwaysPrint)
69-
}
70-
}
75+
return ((onlyOnFailure && shouldFail) || alwaysPrint)
7176
}

src/main/kotlin/com/autonomousapps/tasks/GenerateBuildHealthTask.kt

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package com.autonomousapps.tasks
55
import com.autonomousapps.DependencyAnalysisPlugin
66
import com.autonomousapps.extension.DependenciesHandler.Companion.toLambda
77
import com.autonomousapps.extension.ReportingHandler
8+
import com.autonomousapps.extension.getEffectivePostscript
89
import com.autonomousapps.internal.advice.DslKind
910
import com.autonomousapps.internal.advice.ProjectHealthConsoleReportBuilder
1011
import com.autonomousapps.internal.utils.Colors

src/main/kotlin/com/autonomousapps/tasks/GenerateProjectHealthReportTask.kt

+4-14
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package com.autonomousapps.tasks
66

77
import com.autonomousapps.extension.DependenciesHandler.Companion.toLambda
88
import com.autonomousapps.extension.ReportingHandler
9+
import com.autonomousapps.extension.getEffectivePostscript
910
import com.autonomousapps.internal.advice.DslKind
1011
import com.autonomousapps.internal.advice.ProjectHealthConsoleReportBuilder
1112
import com.autonomousapps.internal.utils.fromJson
@@ -49,9 +50,7 @@ abstract class GenerateProjectHealthReportTask @Inject constructor(
4950
@TaskAction fun action() {
5051
workerExecutor.noIsolation().submit(ProjectHealthAction::class.java) {
5152
advice.set(this@GenerateProjectHealthReportTask.projectAdvice)
52-
// reportingConfig.set(this@GenerateProjectHealthReportTask.reportingConfig)
53-
onlyOnFailure.set(this@GenerateProjectHealthReportTask.reportingConfig.flatMap { it.onlyOnFailure })
54-
postscript.set(this@GenerateProjectHealthReportTask.reportingConfig.flatMap { it.postscript })
53+
reportingConfig.set(this@GenerateProjectHealthReportTask.reportingConfig)
5554
dslKind.set(this@GenerateProjectHealthReportTask.dslKind)
5655
dependencyMap.set(this@GenerateProjectHealthReportTask.dependencyMap)
5756
output.set(this@GenerateProjectHealthReportTask.output)
@@ -60,10 +59,7 @@ abstract class GenerateProjectHealthReportTask @Inject constructor(
6059

6160
interface ProjectHealthParameters : WorkParameters {
6261
val advice: RegularFileProperty
63-
// TODO(tsr): this is annoying that this doesn't work. Asked Gradle about it.
64-
// val reportingConfig: Property<ReportingHandler.Config>
65-
val onlyOnFailure: Property<Boolean>
66-
val postscript: Property<String>
62+
val reportingConfig: Property<ReportingHandler.Config>
6763
val dslKind: Property<DslKind>
6864
val dependencyMap: MapProperty<String, String>
6965
val output: RegularFileProperty
@@ -74,16 +70,10 @@ abstract class GenerateProjectHealthReportTask @Inject constructor(
7470
override fun execute() {
7571
val output = parameters.output.getAndDelete()
7672

77-
val reportingConfig = ReportingHandler.Config(
78-
onlyOnFailure = parameters.onlyOnFailure,
79-
postscript = parameters.postscript,
80-
)
81-
8273
val projectAdvice = parameters.advice.fromJson<ProjectAdvice>()
8374
val consoleText = ProjectHealthConsoleReportBuilder(
8475
projectAdvice = projectAdvice,
85-
// postscript = parameters.reportingConfig.get().getEffectivePostscript(projectAdvice.shouldFail),
86-
postscript = reportingConfig.getEffectivePostscript(projectAdvice.shouldFail),
76+
postscript = parameters.reportingConfig.get().getEffectivePostscript(projectAdvice.shouldFail),
8777
dslKind = parameters.dslKind.get(),
8878
dependencyMap = parameters.dependencyMap.get().toLambda(),
8979
).text

0 commit comments

Comments
 (0)