@@ -3,6 +3,7 @@ package com.autonomousapps.extension
3
3
import org.gradle.api.model.ObjectFactory
4
4
import org.gradle.api.provider.Property
5
5
import org.gradle.api.tasks.Input
6
+ import org.gradle.kotlin.dsl.newInstance
6
7
import org.gradle.kotlin.dsl.property
7
8
import javax.inject.Inject
8
9
@@ -18,7 +19,7 @@ import javax.inject.Inject
18
19
* }
19
20
* ```
20
21
*/
21
- abstract class ReportingHandler @Inject constructor(objects : ObjectFactory ) {
22
+ abstract class ReportingHandler @Inject constructor(private val objects : ObjectFactory ) {
22
23
23
24
internal val onlyOnFailure: Property <Boolean > = objects.property<Boolean >().convention(false )
24
25
internal val postscript: Property <String > = objects.property<String >().convention(" " )
@@ -39,33 +40,37 @@ abstract class ReportingHandler @Inject constructor(objects: ObjectFactory) {
39
40
this .postscript.disallowChanges()
40
41
}
41
42
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
+ }
46
49
47
- class Config (
48
- @get:Input val onlyOnFailure : Property <Boolean >,
49
- @get:Input val postscript : Property <String >,
50
- ) {
50
+ interface Config {
51
51
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
+ }
59
65
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
67
74
68
- return ((onlyOnFailure && shouldFail) || alwaysPrint)
69
- }
70
- }
75
+ return ((onlyOnFailure && shouldFail) || alwaysPrint)
71
76
}
0 commit comments