@@ -44,7 +44,13 @@ import io.spine.validate.ConstraintViolation
44
44
import io.spine.validation.GOES
45
45
import io.spine.validation.GoesField
46
46
import io.spine.validation.UnsetValue
47
+ import io.spine.validation.java.ValidationCodeInjector.ValidateScope.violations
47
48
49
+ /* *
50
+ * The generator for `(goes)` option.
51
+ *
52
+ * Generates code for a single field represented by the provided [view].
53
+ */
48
54
internal class GoesFieldGenerator (
49
55
private val view : GoesField ,
50
56
private val converter : JavaValueConverter
@@ -57,27 +63,18 @@ internal class GoesFieldGenerator(
57
63
fun generate (): FieldOptionCode {
58
64
val field = view.subject
59
65
val companion = view.companion
60
- val getter = This <Message >()
66
+ val fieldGetter = This <Message >()
61
67
.field(field)
62
68
.getter<Any >()
63
69
val companionGetter = This <Message >()
64
70
.field(companion )
65
71
.getter<Any >()
66
72
val constraint = CodeBlock (
67
73
"""
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);
81
78
}
82
79
""" .trimIndent()
83
80
)
@@ -111,13 +108,6 @@ internal class GoesFieldGenerator(
111
108
return constraintViolation(errorMessage, declaringType, fieldPath, fieldValue)
112
109
}
113
110
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
- */
121
111
private fun supportedPlaceholders (
122
112
fieldPath : Expression <FieldPath >,
123
113
fieldValue : Expression <* >,
0 commit comments