6
6
*/
7
7
package org .hibernate .jpamodelgen ;
8
8
9
- import java .util .Collection ;
10
- import java .util .HashSet ;
11
- import java .util .List ;
12
- import java .util .Map ;
13
- import java .util .Set ;
9
+ import org .checkerframework .checker .nullness .qual .Nullable ;
10
+ import org .hibernate .jpamodelgen .annotation .AnnotationMetaEntity ;
11
+ import org .hibernate .jpamodelgen .annotation .AnnotationMetaPackage ;
12
+ import org .hibernate .jpamodelgen .model .Metamodel ;
13
+ import org .hibernate .jpamodelgen .xml .JpaDescriptorParser ;
14
+
14
15
import javax .annotation .processing .AbstractProcessor ;
15
16
import javax .annotation .processing .ProcessingEnvironment ;
16
17
import javax .annotation .processing .RoundEnvironment ;
24
25
import javax .lang .model .type .TypeKind ;
25
26
import javax .lang .model .type .TypeMirror ;
26
27
import javax .tools .Diagnostic ;
27
-
28
- import org .hibernate .jpamodelgen .annotation .AnnotationMetaEntity ;
29
- import org .hibernate .jpamodelgen .annotation .AnnotationMetaPackage ;
30
- import org .hibernate .jpamodelgen .model .Metamodel ;
31
- import org .hibernate .jpamodelgen .xml .JpaDescriptorParser ;
32
-
33
- import org .checkerframework .checker .nullness .qual .Nullable ;
28
+ import java .util .Collection ;
29
+ import java .util .HashSet ;
30
+ import java .util .List ;
31
+ import java .util .Map ;
32
+ import java .util .Set ;
34
33
35
34
import static java .lang .Boolean .parseBoolean ;
36
35
import static javax .lang .model .util .ElementFilter .fieldsIn ;
37
36
import static javax .lang .model .util .ElementFilter .methodsIn ;
37
+ import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .ADD_GENERATED_ANNOTATION ;
38
+ import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .ADD_GENERATION_DATE ;
39
+ import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .ADD_SUPPRESS_WARNINGS_ANNOTATION ;
40
+ import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .DEBUG_OPTION ;
41
+ import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .FULLY_ANNOTATION_CONFIGURED_OPTION ;
42
+ import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .LAZY_XML_PARSING ;
43
+ import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .ORM_XML_OPTION ;
44
+ import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .PERSISTENCE_XML_OPTION ;
38
45
import static org .hibernate .jpamodelgen .util .Constants .*;
39
- import static org .hibernate .jpamodelgen .util .TypeUtils .*;
40
- import static org .hibernate .jpamodelgen .JPAMetaModelEntityProcessor .*;
46
+ import static org .hibernate .jpamodelgen .util .TypeUtils .containsAnnotation ;
47
+ import static org .hibernate .jpamodelgen .util .TypeUtils .getAnnotationMirror ;
48
+ import static org .hibernate .jpamodelgen .util .TypeUtils .getAnnotationValue ;
49
+ import static org .hibernate .jpamodelgen .util .TypeUtils .hasAnnotation ;
50
+ import static org .hibernate .jpamodelgen .util .TypeUtils .isClassOrRecordType ;
41
51
42
52
/**
43
53
* Main annotation processor.
@@ -281,51 +291,62 @@ else if ( element instanceof TypeElement ) {
281
291
private void createMetaModelClasses () {
282
292
283
293
for ( Metamodel aux : context .getMetaAuxiliaries () ) {
284
- final String key = aux . getQualifiedName ();
285
- if ( ! context .isAlreadyGenerated ( key ) ) {
286
- context . logMessage ( Diagnostic . Kind . OTHER , "Writing metamodel for auxiliary '" + aux + "'" );
294
+ if ( ! context . isAlreadyGenerated ( aux ) ) {
295
+ context .logMessage ( Diagnostic . Kind . OTHER ,
296
+ "Writing metamodel for auxiliary '" + aux + "'" );
287
297
ClassWriter .writeFile ( aux , context );
288
- context .markGenerated (key );
298
+ context .markGenerated (aux );
289
299
}
290
300
}
291
301
292
302
for ( Metamodel entity : context .getMetaEntities () ) {
293
- final String key = entity .isJakartaDataStyle ()
294
- ? '_' + entity .getQualifiedName ()
295
- : entity .getQualifiedName ();
296
- if ( !context .isAlreadyGenerated (key ) ) {
297
- context .logMessage ( Diagnostic .Kind .OTHER , "Writing metamodel for entity '" + entity + "'" );
303
+ if ( !context .isAlreadyGenerated (entity ) ) {
304
+ context .logMessage ( Diagnostic .Kind .OTHER ,
305
+ "Writing Jakarta Persistence metamodel for entity '" + entity + "'" );
306
+ ClassWriter .writeFile ( entity , context );
307
+ context .markGenerated (entity );
308
+ }
309
+ }
310
+
311
+ for ( Metamodel entity : context .getDataMetaEntities () ) {
312
+ if ( !context .isAlreadyGenerated (entity ) ) {
313
+ context .logMessage ( Diagnostic .Kind .OTHER ,
314
+ "Writing Jakarta Data metamodel for entity '" + entity + "'" );
298
315
ClassWriter .writeFile ( entity , context );
299
- context .markGenerated (key );
316
+ context .markGenerated (entity );
300
317
}
301
318
}
302
319
303
- // we cannot process the delayed entities in any order. There might be dependencies between them.
304
- // we need to process the top level entities first
305
- final Collection <Metamodel > toProcessEntities = context .getMetaEmbeddables ();
306
- while ( !toProcessEntities .isEmpty () ) {
307
- final Set <Metamodel > processedEntities = new HashSet <>();
308
- int toProcessCountBeforeLoop = toProcessEntities .size ();
309
- for ( Metamodel entity : toProcessEntities ) {
320
+ processEmbeddables ( context .getMetaEmbeddables () );
321
+ processEmbeddables ( context .getDataMetaEmbeddables () );
322
+ }
323
+
324
+ /**
325
+ * We cannot process the delayed classes in any order.
326
+ * There might be dependencies between them.
327
+ * We need to process the toplevel classes first.
328
+ */
329
+ private void processEmbeddables (Collection <Metamodel > models ) {
330
+ while ( !models .isEmpty () ) {
331
+ final Set <Metamodel > processed = new HashSet <>();
332
+ final int toProcessCountBeforeLoop = models .size ();
333
+ for ( Metamodel metamodel : models ) {
310
334
// see METAGEN-36
311
- final String key = entity .isJakartaDataStyle ()
312
- ? '_' + entity .getQualifiedName ()
313
- : entity .getQualifiedName ();
314
- if ( context .isAlreadyGenerated (key ) ) {
315
- processedEntities .add ( entity );
335
+ if ( context .isAlreadyGenerated (metamodel ) ) {
336
+ processed .add ( metamodel );
316
337
}
317
- else if ( !modelGenerationNeedsToBeDeferred ( toProcessEntities , entity ) ) {
338
+ else if ( !modelGenerationNeedsToBeDeferred (models , metamodel ) ) {
318
339
context .logMessage (
319
340
Diagnostic .Kind .OTHER ,
320
- "Writing meta model for embeddable/mapped superclass " + entity
341
+ "Writing metamodel for embeddable " + metamodel
321
342
);
322
- ClassWriter .writeFile ( entity , context );
323
- context .markGenerated (key );
324
- processedEntities .add ( entity );
343
+ ClassWriter .writeFile ( metamodel , context );
344
+ context .markGenerated (metamodel );
345
+ processed .add ( metamodel );
325
346
}
326
347
}
327
- toProcessEntities .removeAll ( processedEntities );
328
- if ( toProcessEntities .size () >= toProcessCountBeforeLoop ) {
348
+ models .removeAll ( processed );
349
+ if ( models .size () >= toProcessCountBeforeLoop ) {
329
350
context .logMessage (
330
351
Diagnostic .Kind .ERROR ,
331
352
"Potential endless loop in generation of entities."
@@ -398,11 +419,11 @@ private boolean hasAuxiliaryAnnotations(Element element) {
398
419
399
420
private void handleRootElementAnnotationMirrors (final Element element ) {
400
421
if ( isClassOrRecordType ( element ) ) {
401
- for ( AnnotationMirror mirror : element . getAnnotationMirrors ( ) ) {
422
+ if ( hasAnnotation ( element , ENTITY , MAPPED_SUPERCLASS , EMBEDDABLE ) ) {
402
423
final TypeElement typeElement = (TypeElement ) element ;
403
424
final String qualifiedName = typeElement .getQualifiedName ().toString ();
404
425
final Metamodel alreadyExistingMetaEntity =
405
- tryGettingExistingEntityFromContext ( mirror , qualifiedName );
426
+ tryGettingExistingEntityFromContext ( typeElement , qualifiedName );
406
427
if ( alreadyExistingMetaEntity != null && alreadyExistingMetaEntity .isMetaComplete () ) {
407
428
context .logMessage (
408
429
Diagnostic .Kind .OTHER ,
@@ -418,7 +439,7 @@ private void handleRootElementAnnotationMirrors(final Element element) {
418
439
if ( alreadyExistingMetaEntity != null ) {
419
440
metaEntity .mergeInMembers ( alreadyExistingMetaEntity );
420
441
}
421
- addMetaEntityToContext ( mirror , metaEntity );
442
+ addMetamodelToContext ( typeElement , metaEntity );
422
443
if ( context .generateJakartaDataStaticMetamodel ()
423
444
// Don't generate a Jakarta Data metamodel
424
445
// if this entity was partially mapped in XML
@@ -427,11 +448,11 @@ private void handleRootElementAnnotationMirrors(final Element element) {
427
448
AnnotationMetaEntity .create ( typeElement , context ,
428
449
requiresLazyMemberInitialization , true , true );
429
450
// final Metamodel alreadyExistingDataMetaEntity =
430
- // tryGettingExistingEntityFromContext ( mirror, '_' + qualifiedName );
451
+ // tryGettingExistingDataEntityFromContext ( mirror, '_' + qualifiedName );
431
452
// if ( alreadyExistingDataMetaEntity != null ) {
432
453
// dataMetaEntity.mergeInMembers( alreadyExistingDataMetaEntity );
433
454
// }
434
- addMetaEntityToContext ( mirror , dataMetaEntity );
455
+ addDataMetamodelToContext ( typeElement , dataMetaEntity );
435
456
}
436
457
}
437
458
}
@@ -452,29 +473,39 @@ else if ( element instanceof PackageElement ) {
452
473
//TODO: handle PackageElement
453
474
}
454
475
455
- private @ Nullable Metamodel tryGettingExistingEntityFromContext (AnnotationMirror mirror , String qualifiedName ) {
456
- if ( isAnnotationMirrorOfType ( mirror , ENTITY )
457
- || isAnnotationMirrorOfType ( mirror , MAPPED_SUPERCLASS ) ) {
476
+ private @ Nullable Metamodel tryGettingExistingEntityFromContext (TypeElement typeElement , String qualifiedName ) {
477
+ if ( hasAnnotation ( typeElement , ENTITY , MAPPED_SUPERCLASS ) ) {
458
478
return context .getMetaEntity ( qualifiedName );
459
479
}
460
- else if ( isAnnotationMirrorOfType ( mirror , EMBEDDABLE ) ) {
480
+ else if ( hasAnnotation ( typeElement , EMBEDDABLE ) ) {
461
481
return context .getMetaEmbeddable ( qualifiedName );
462
482
}
463
483
return null ;
464
484
}
465
485
466
- private void addMetaEntityToContext (AnnotationMirror mirror , AnnotationMetaEntity metaEntity ) {
467
- final String key = metaEntity .isJakartaDataStyle ()
468
- ? '_' + metaEntity .getQualifiedName ()
469
- : metaEntity .getQualifiedName ();
470
- if ( isAnnotationMirrorOfType ( mirror , ENTITY ) ) {
471
- context .addMetaEntity ( key , metaEntity );
486
+ private void addMetamodelToContext (TypeElement typeElement , AnnotationMetaEntity entity ) {
487
+ final String key = entity .getQualifiedName ();
488
+ if ( hasAnnotation ( typeElement , ENTITY ) ) {
489
+ context .addMetaEntity ( key , entity );
490
+ }
491
+ else if ( hasAnnotation ( typeElement , MAPPED_SUPERCLASS ) ) {
492
+ context .addMetaEntity ( key , entity );
493
+ }
494
+ else if ( hasAnnotation ( typeElement , EMBEDDABLE ) ) {
495
+ context .addMetaEmbeddable ( key , entity );
496
+ }
497
+ }
498
+
499
+ private void addDataMetamodelToContext (TypeElement typeElement , AnnotationMetaEntity entity ) {
500
+ final String key = entity .getQualifiedName ();
501
+ if ( hasAnnotation ( typeElement , ENTITY ) ) {
502
+ context .addDataMetaEntity ( key , entity );
472
503
}
473
- else if ( isAnnotationMirrorOfType ( mirror , MAPPED_SUPERCLASS ) ) {
474
- context .addMetaEntity ( key , metaEntity );
504
+ else if ( hasAnnotation ( typeElement , MAPPED_SUPERCLASS ) ) {
505
+ context .addDataMetaEntity ( key , entity );
475
506
}
476
- else if ( isAnnotationMirrorOfType ( mirror , EMBEDDABLE ) ) {
477
- context .addMetaEmbeddable ( key , metaEntity );
507
+ else if ( hasAnnotation ( typeElement , EMBEDDABLE ) ) {
508
+ context .addDataMetaEmbeddable ( key , entity );
478
509
}
479
510
}
480
511
0 commit comments