-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDependencyResolver.java
More file actions
479 lines (392 loc) · 19.1 KB
/
DependencyResolver.java
File metadata and controls
479 lines (392 loc) · 19.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
package solutions.bellatrix.data.http.infrastructure;
import solutions.bellatrix.core.utilities.Log;
import solutions.bellatrix.data.annotations.Dependency;
import solutions.bellatrix.data.configuration.RepositoryProvider;
import solutions.bellatrix.data.contracts.Repository;
import solutions.bellatrix.data.http.contracts.EntityFactory;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* Utility class for automatically resolving entity dependencies.
* This class handles the creation of dependent entities when fields
* are marked with @Dependency annotations using recursive resolution
* to handle complex dependency chains.
*/
public class DependencyResolver {
// Track entities being resolved to prevent circular dependencies
private static final Set<Class<?>> buildingEntities = new HashSet<>();
private static final Set<Class<?>> creatingEntities = new HashSet<>();
private static final Set<Class<?>> deletingEntities = new HashSet<>();
private static final Set<Class<?>> updatingEntities = new HashSet<>();
/**
* Resolves all dependencies for the given entity by creating
* dependent entities where fields are marked with @Dependency
* and the field value is null. Uses recursive resolution to handle
* complex dependency chains.
*
* @param entity The entity to resolve dependencies for
* @param <T> The entity type
* @return The entity with all dependencies resolved
*/
public static <T> T buildDependencies(T entity) {
if (entity == null) {
return null;
}
// Clear the resolving set for each top-level call
buildingEntities.clear();
return buildDependenciesRecursive(entity);
}
public static <T> T createDependencies(T entity) {
if (entity == null) {
return null;
}
// Clear the resolving set for each top-level call
creatingEntities.clear();
return createDependenciesRecursive(entity);
}
public static <T> T updateDependencies(T entity) {
if (entity == null) {
return null;
}
return updateDependenciesRecursive(entity);
}
public static <T> void deleteDependencies(T entity) {
if (entity == null) return;
deletingEntities.clear();
deleteDependenciesRecursive(entity);
}
/**
* Recursively resolves dependencies for an entity, ensuring that
* dependencies are created in the correct order (bottom-up).
*
* @param entity The entity to resolve dependencies for
* @param <T> The entity type
* @return The entity with all dependencies resolved
*/
private static <T> T buildDependenciesRecursive(T entity) {
if (entity == null) {
return null;
}
Class<?> entityClass = entity.getClass();
Log.info("Building dependencies for entity: " + entityClass.getSimpleName());
// Check for circular dependency
if (buildingEntities.contains(entityClass)) {
throw new RuntimeException("Circular dependency detected for entity: " + entityClass.getSimpleName());
}
// Add to resolving set
buildingEntities.add(entityClass);
try {
// Get all fields with @Dependency annotations
List<Field> dependencyFields = getDependencyFields(entityClass);
// Resolve each dependency field
for (Field field : dependencyFields) {
buildFieldDependencyRecursive(entity, field);
}
return entity;
} finally {
// Remove from resolving set
buildingEntities.remove(entityClass);
}
}
private static <T> T createDependenciesRecursive(T entity) {
if (entity == null) {
return null;
}
Class<?> entityClass = entity.getClass();
// Check for circular dependency
if (creatingEntities.contains(entityClass)) {
throw new RuntimeException("Circular dependency detected for entity: " + entityClass.getSimpleName());
}
// Add to resolving set
creatingEntities.add(entityClass);
try {
// Get all fields with @Dependency annotations
List<Field> dependencyFields = getDependencyFields(entityClass);
// Resolve each dependency field
for (Field field : dependencyFields) {
createFieldDependencyRecursive(entity, field);
}
return entity;
} finally {
// Remove from resolving set
creatingEntities.remove(entityClass);
}
}
private static <T> T deleteDependenciesRecursive(T entity) {
if (entity == null) {
return null;
}
Class<?> entityClass = entity.getClass();
// Check for circular dependency
if (deletingEntities.contains(entityClass)) {
throw new RuntimeException("Circular dependency detected for entity: " + entityClass.getSimpleName());
}
// Add to resolving set
deletingEntities.add(entityClass);
try {
// Get all fields with @Dependency annotations
List<Field> dependencyFields = getDependencyFields(entityClass);
// Resolve each dependency field
for (Field field : dependencyFields) {
deleteFieldDependencyRecursive(entity, field);
}
return entity;
} finally {
// Remove from resolving set
deletingEntities.remove(entityClass);
}
}
private static <T> T updateDependenciesRecursive(T entity) {
if (entity == null) {
return null;
}
Class<?> entityClass = entity.getClass();
// Check for circular dependency
if (updatingEntities.contains(entityClass)) {
throw new RuntimeException("Circular dependency detected for entity: " + entityClass.getSimpleName());
}
// Add to resolving set
updatingEntities.add(entityClass);
try {
// Get all fields with @Dependency annotations
List<Field> dependencyFields = getDependencyFields(entityClass);
// Resolve each dependency field
for (Field field : dependencyFields) {
updateFieldDependencyRecursive(entity, field);
}
return entity;
} finally {
// Remove from resolving set
updatingEntities.remove(entityClass);
}
}
/**
* Gets all fields with @Dependency annotations from the given class.
*
* @param entityClass The entity class to scan
* @return List of fields with @Dependency annotations
*/
protected static List<Field> getDependencyFields(Class<?> entityClass) {
List<Field> dependencyFields = new ArrayList<>();
Field[] fields = entityClass.getDeclaredFields();
for (Field field : fields) {
if (field.getAnnotation(Dependency.class) != null) {
dependencyFields.add(field);
}
}
return dependencyFields;
}
/**
* Recursively resolves a single field dependency by creating the required entity
* and setting its ID in the field. This method ensures that the dependency entity
* is fully resolved (including its own dependencies) before being created.
*
* @param entity The parent entity
* @param field The field that requires dependency resolution
*/
private static void buildFieldDependencyRecursive(Object entity, Field field) {
try {
field.setAccessible(true);
Dependency dependencyAnnotation = field.getAnnotation(Dependency.class);
Object currentValue = field.get(entity);
// Skip if field already has a value and forceCreate is false
if (currentValue != null && !dependencyAnnotation.forceCreate()) {
return;
}
Log.info("Building dependency for field '" + field.getName() + "' of type '" + dependencyAnnotation.entityType().getSimpleName() + "'.");
// Create the dependency entity using the factory
Object dependencyEntity = buildDependencyEntity(dependencyAnnotation);
// Recursively resolve dependencies for the dependency entity
// This ensures that all dependencies are resolved bottom-up
dependencyEntity = buildDependenciesRecursive(dependencyEntity);
//
// // Get the factory directly using the entity type from the annotation
// @SuppressWarnings("unchecked")
// EntityFactory<Entity> factory = (EntityFactory<Entity>) FactoryProvider.INSTANCE.get((Class<? extends Entity>) dependencyAnnotation.entityType());
//
// // Create the fully resolved entity in the factory (this will set the ID)
// Entity builtEntity = factory.buildDefault();
// Set the ID in the field
Log.info("Setting dependency field '" + field.getName() + "' with ID from built entity.");
if(trySetViaSetter(entity, field, dependencyEntity)) {
Log.info("Set the dependency field '" + field.getName() + "' via setter.");
} else {
field.set(entity, dependencyEntity);
Log.info("Set the dependency field '" + field.getName() + "' directly.");
}
} catch (Exception e) {
throw new RuntimeException("Failed to resolve dependency for field: " + field.getName(), e);
}
}
private static void createFieldDependencyRecursive(Object entity, Field field) {
try {
field.setAccessible(true);
Dependency dependencyAnnotation = field.getAnnotation(Dependency.class);
Entity currentValue = (Entity)field.get(entity);
// Skip if field already has a value and forceCreate is false
if (currentValue != null && !dependencyAnnotation.forceCreate() && currentValue.getIdentifier() != null) {
return;
}
// Create the dependency entity using the repository
Object builtDependencyEntity = currentValue == null ? buildDependencyEntity(dependencyAnnotation) : currentValue;
// Recursively resolve dependencies for the dependency entity
// This ensures that all dependencies are resolved bottom-up
builtDependencyEntity = createDependenciesRecursive(builtDependencyEntity);
// Get the repository directly using the entity type from the annotation
@SuppressWarnings("unchecked")
Repository<Entity> repository = (Repository<Entity>) RepositoryProvider.INSTANCE.get((Class<? extends Entity>) dependencyAnnotation.entityType());
Log.info("Creating dependency entity for field '" + field.getName() + "' of type '" + dependencyAnnotation.entityType().getSimpleName() + "'.");
Entity createdEntity = repository.create((Entity) builtDependencyEntity);
((Entity) builtDependencyEntity).setIdentifier((String)createdEntity.getIdentifier());
if (trySetViaSetter(entity, field, builtDependencyEntity)) {
Log.info("Set the dependency field '" + field.getName() + "' via setter.");
} else {
field.set(entity, builtDependencyEntity);
Log.info("Set the dependency field '" + field.getName() + "' directly.");
}
} catch (Exception e) {
throw new RuntimeException("Failed to resolve dependency for field: " + field.getName(), e);
}
}
private static void deleteFieldDependencyRecursive(Object entity, Field field) {
try {
field.setAccessible(true);
Dependency dependencyAnnotation = field.getAnnotation(Dependency.class);
Entity currentValue = (Entity)field.get(entity);
// Skip if field already has a value and forceCreate is false
if (currentValue == null || currentValue.getIdentifier() == null) {
return;
}
// Create the dependency entity using the repository
Object builtDependencyEntity = currentValue == null ? buildDependencyEntity(dependencyAnnotation) : currentValue;
// Get the repository directly using the entity type from the annotation
@SuppressWarnings("unchecked")
Repository<Entity> repository = (Repository<Entity>) RepositoryProvider.INSTANCE.get((Class<? extends Entity>) dependencyAnnotation.entityType());
Log.info("Deleting dependency entity for field '" + field.getName() + "' of type '" + dependencyAnnotation.entityType().getSimpleName() + "'.");
repository.delete((Entity) builtDependencyEntity);
// Recursively resolve dependencies for the dependency entity
// This ensures that all dependencies are resolved bottom-up
deleteDependenciesRecursive(builtDependencyEntity);
} catch (Exception e) {
throw new RuntimeException("Failed to delete dependency for field: " + field.getName(), e);
}
}
/**
* Creates a dependency entity using the specified factory method.
*
* @param dependencyAnnotation The dependency annotation containing creation info
* @return The created dependency entity
*/
private static Object buildDependencyEntity(Dependency dependencyAnnotation) {
try {
// Find the factory for the entity type
EntityFactory<?> factory = findFactoryForEntity(dependencyAnnotation.entityType());
if (factory == null) {
throw new IllegalStateException("No factory found for entity type: " + dependencyAnnotation.entityType().getSimpleName());
}
// Use the specified factory method or default
String methodName = dependencyAnnotation.factoryMethod();
Method factoryMethod = factory.getClass().getMethod(methodName);
return factoryMethod.invoke(factory);
} catch (Exception e) {
throw new RuntimeException("Failed to create dependency entity", e);
}
}
/**
* Finds the factory for the given entity type by looking for
* factory classes that implement EntityFactory.
*
* @param entityType The entity class to find a factory for
* @return The factory instance or null if not found
*/
public static EntityFactory<?> findFactoryForEntity(Class<?> entityType) {
String entityName = entityType.getSimpleName();
String factoryClassName = entityName + "RepositoryFactory";
try {
// Try to find the factory in the same package as the entity
String packageName = entityType.getPackage().getName();
Class<?> factoryClass = Class.forName(packageName + "." + factoryClassName);
// For static classes, create a temporary instance to call methods
return (EntityFactory<?>) factoryClass.getDeclaredConstructor().newInstance();
} catch (Exception e) {
throw new RuntimeException("Factory not found for entity type: " + entityType.getSimpleName(), e);
}
}
/**
* Extracts the ID from an entity object by calling the getId() method.
*
* @param entity The entity to extract ID from
* @return The entity ID as a string
*/
private static String extractEntityId(Object entity) {
try {
Method getIdMethod = entity.getClass().getMethod("getId");
Object id = getIdMethod.invoke(entity);
return id != null ? id.toString() : null;
} catch (Exception e) {
throw new RuntimeException("Failed to extract ID from entity: " + entity.getClass().getSimpleName(), e);
}
}
private static boolean trySetViaSetter(Object target, Field field, Object value) {
Class<?> clazz = target.getClass();
Class<?> fieldType = field.getType();
List<String> candidates = new ArrayList<>();
String fieldName = field.getName();
String cap = Character.toUpperCase(fieldName.charAt(0)) + fieldName.substring(1);
// Conventional JavaBean setter
candidates.add("set" + cap);
// Boolean field named like "isActive" → setter "setActive"
if ((fieldType == boolean.class || fieldType == Boolean.class)
&& fieldName.startsWith("is")
&& fieldName.length() > 2
&& Character.isUpperCase(fieldName.charAt(2))) {
candidates.add("set" + fieldName.substring(2));
}
// Fluent/Lombok-style setter (e.g., ".name(value)")
candidates.add(fieldName);
// Try to find a compatible method (single parameter assignable from value)
for (String name : candidates) {
for (Method m : clazz.getMethods()) { // includes inherited public methods
if (!m.getName().equals(name) || m.getParameterCount() != 1) continue;
Class<?> paramType = m.getParameterTypes()[0];
if (value == null ? !paramType.isPrimitive() : paramType.isAssignableFrom(value.getClass())) {
try {
if (!m.canAccess(target)) m.setAccessible(true);
m.invoke(target, value);
return true;
} catch (ReflectiveOperationException ignore) {
// try next candidate
}
}
}
}
return false;
}
private static void updateFieldDependencyRecursive(Object entity, Field field) {
try {
field.setAccessible(true);
Dependency dependencyAnnotation = field.getAnnotation(Dependency.class);
Entity currentValue = (Entity)field.get(entity);
// Skip if field already has a value and forceCreate is false
if (currentValue == null || currentValue.getIdentifier() == null) {
return;
}
// Create the dependency entity using the repository
Object builtDependencyEntity = currentValue == null ? buildDependencyEntity(dependencyAnnotation) : currentValue;
// Get the repository directly using the entity type from the annotation
@SuppressWarnings("unchecked")
Repository<Entity> repository = (Repository<Entity>) RepositoryProvider.INSTANCE.get((Class<? extends Entity>) dependencyAnnotation.entityType());
Log.info("Updating dependency entity for field '" + field.getName() + "' of type '" + dependencyAnnotation.entityType().getSimpleName() + "'.");
repository.update((Entity) builtDependencyEntity);
// Recursively resolve dependencies for the dependency entity
// This ensures that all dependencies are resolved bottom-up
updateDependenciesRecursive(builtDependencyEntity);
} catch (Exception e) {
throw new RuntimeException("Failed to update dependency for field: " + field.getName(), e);
}
}
}