Skip to content

Commit 4ed969e

Browse files
Polish GoesFieldGenerator class
1 parent 935aecb commit 4ed969e

File tree

1 file changed

+11
-21
lines changed

1 file changed

+11
-21
lines changed

java/src/main/kotlin/io/spine/validation/java/GoesFieldGenerator.kt

+11-21
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,13 @@ import io.spine.validate.ConstraintViolation
4444
import io.spine.validation.GOES
4545
import io.spine.validation.GoesField
4646
import io.spine.validation.UnsetValue
47+
import io.spine.validation.java.ValidationCodeInjector.ValidateScope.violations
4748

49+
/**
50+
* The generator for `(goes)` option.
51+
*
52+
* Generates code for a single field represented by the provided [view].
53+
*/
4854
internal class GoesFieldGenerator(
4955
private val view: GoesField,
5056
private val converter: JavaValueConverter
@@ -57,27 +63,18 @@ internal class GoesFieldGenerator(
5763
fun generate(): FieldOptionCode {
5864
val field = view.subject
5965
val companion = view.companion
60-
val getter = This<Message>()
66+
val fieldGetter = This<Message>()
6167
.field(field)
6268
.getter<Any>()
6369
val companionGetter = This<Message>()
6470
.field(companion)
6571
.getter<Any>()
6672
val constraint = CodeBlock(
6773
"""
68-
if (!$getter.equals(${defaultValue(field)}) && $companionGetter.equals(${
69-
defaultValue(
70-
companion
71-
)
72-
})) {
73-
var fieldPath = ${
74-
fieldPath(
75-
field.name.value,
76-
ValidationCodeInjector.ValidateScope.parentPath
77-
)
78-
};
79-
var violation = ${violation(ReadVar("fieldPath"), getter)};
80-
${ValidationCodeInjector.ValidateScope.violations}.add(violation);
74+
if (!$fieldGetter.equals(${defaultValue(field)}) && $companionGetter.equals(${defaultValue(companion)})) {
75+
var fieldPath = ${fieldPath(field.name.value, ValidationCodeInjector.ValidateScope.parentPath)};
76+
var violation = ${violation(ReadVar("fieldPath"), fieldGetter)};
77+
$violations.add(violation);
8178
}
8279
""".trimIndent()
8380
)
@@ -111,13 +108,6 @@ internal class GoesFieldGenerator(
111108
return constraintViolation(errorMessage, declaringType, fieldPath, fieldValue)
112109
}
113110

114-
/**
115-
* Determines the value for each of the supported `(if_missing)` placeholders.
116-
*
117-
* Note: `FieldPaths` is a synthetic Java class, which contains Kotlin extensions
118-
* declared for [FieldPath]. It is available from Java, but not from Kotlin.
119-
* So, we specify it as a string literal here.
120-
*/
121111
private fun supportedPlaceholders(
122112
fieldPath: Expression<FieldPath>,
123113
fieldValue: Expression<*>,

0 commit comments

Comments
 (0)