18
18
import io .micronaut .core .annotation .AnnotationMetadata ;
19
19
import io .micronaut .core .annotation .AnnotationValue ;
20
20
import io .micronaut .core .annotation .Internal ;
21
+ import io .micronaut .core .annotation .Nullable ;
21
22
import io .micronaut .core .naming .NameUtils ;
22
23
import io .micronaut .data .annotation .sql .JoinColumn ;
23
24
import io .micronaut .data .annotation .sql .JoinColumns ;
29
30
import java .util .Optional ;
30
31
import java .util .function .BiConsumer ;
31
32
import java .util .function .Consumer ;
33
+ import java .util .function .Predicate ;
32
34
33
35
/**
34
36
* Persistent entity utils.
@@ -81,14 +83,18 @@ public static void traversePersistentProperties(PersistentProperty property, BiC
81
83
* @param consumer The function to invoke on every property
82
84
*/
83
85
public static void traversePersistentProperties (PersistentEntity persistentEntity , BiConsumer <List <Association >, PersistentProperty > consumer ) {
86
+ traversePersistentProperties (persistentEntity , null , consumer );
87
+ }
88
+
89
+ public static void traversePersistentProperties (PersistentEntity persistentEntity , @ Nullable Predicate <Association > skipAssociationPredicate , BiConsumer <List <Association >, PersistentProperty > consumer ) {
84
90
for (PersistentProperty identityProperty : persistentEntity .getIdentityProperties ()) {
85
- traversePersistentProperties (Collections .emptyList (), identityProperty , consumer );
91
+ traversePersistentProperties (Collections .emptyList (), identityProperty , skipAssociationPredicate , consumer );
86
92
}
87
93
if (persistentEntity .getVersion () != null ) {
88
- traversePersistentProperties (Collections .emptyList (), persistentEntity .getVersion (), consumer );
94
+ traversePersistentProperties (Collections .emptyList (), persistentEntity .getVersion (), skipAssociationPredicate , consumer );
89
95
}
90
96
for (PersistentProperty property : persistentEntity .getPersistentProperties ()) {
91
- traversePersistentProperties (Collections .emptyList (), property , consumer );
97
+ traversePersistentProperties (Collections .emptyList (), property , skipAssociationPredicate , consumer );
92
98
}
93
99
}
94
100
@@ -141,7 +147,14 @@ public static int countPersistentProperties(List<Association> associations,
141
147
public static void traversePersistentProperties (List <Association > associations ,
142
148
PersistentProperty property ,
143
149
BiConsumer <List <Association >, PersistentProperty > consumerProperty ) {
144
- traversePersistentProperties (associations , property , true , consumerProperty );
150
+ traversePersistentProperties (associations , property , null , consumerProperty );
151
+ }
152
+
153
+ public static void traversePersistentProperties (List <Association > associations ,
154
+ PersistentProperty property ,
155
+ @ Nullable Predicate <Association > skipAssociationPredicate ,
156
+ BiConsumer <List <Association >, PersistentProperty > consumerProperty ) {
157
+ traversePersistentProperties (associations , property , true , skipAssociationPredicate , consumerProperty );
145
158
}
146
159
147
160
public static void traversePersistentProperties (PersistentPropertyPath propertyPath ,
@@ -165,6 +178,14 @@ public static void traversePersistentProperties(List<Association> associations,
165
178
PersistentProperty property ,
166
179
boolean traverseEmbedded ,
167
180
BiConsumer <List <Association >, PersistentProperty > consumerProperty ) {
181
+ traversePersistentProperties (associations , property , traverseEmbedded , null , consumerProperty );
182
+ }
183
+
184
+ public static void traversePersistentProperties (List <Association > associations ,
185
+ PersistentProperty property ,
186
+ boolean traverseEmbedded ,
187
+ @ Nullable Predicate <Association > skipAssociationPredicate ,
188
+ BiConsumer <List <Association >, PersistentProperty > consumerProperty ) {
168
189
if (property instanceof Embedded embedded ) {
169
190
if (traverseEmbedded ) {
170
191
PersistentEntity embeddedEntity = embedded .getAssociatedEntity ();
@@ -181,6 +202,9 @@ public static void traversePersistentProperties(List<Association> associations,
181
202
if (association .isForeignKey ()) {
182
203
return ;
183
204
}
205
+ if (skipAssociationPredicate != null && skipAssociationPredicate .test (association )) {
206
+ return ;
207
+ }
184
208
List <Association > newAssociations = new ArrayList <>(associations );
185
209
newAssociations .add ((Association ) property );
186
210
PersistentEntity associatedEntity = association .getAssociatedEntity ();
0 commit comments