/runtime/classpath/src/main/java/org/springframework/roo/classpath/customdata/taggers/FieldMatcher.java

http://github.com/SpringSource/spring-roo · Java · 159 lines · 116 code · 13 blank · 30 comment · 12 complexity · 52c0a2f48196cdcdbacde2670ac0cd86 MD5 · raw file

  1. package org.springframework.roo.classpath.customdata.taggers;
  2. import static org.springframework.roo.classpath.customdata.CustomDataKeys.COLUMN_FIELD;
  3. import static org.springframework.roo.classpath.customdata.CustomDataKeys.EMBEDDED_FIELD;
  4. import static org.springframework.roo.classpath.customdata.CustomDataKeys.EMBEDDED_ID_FIELD;
  5. import static org.springframework.roo.classpath.customdata.CustomDataKeys.ENUMERATED_FIELD;
  6. import static org.springframework.roo.classpath.customdata.CustomDataKeys.IDENTIFIER_FIELD;
  7. import static org.springframework.roo.classpath.customdata.CustomDataKeys.LOB_FIELD;
  8. import static org.springframework.roo.classpath.customdata.CustomDataKeys.MANY_TO_MANY_FIELD;
  9. import static org.springframework.roo.classpath.customdata.CustomDataKeys.MANY_TO_ONE_FIELD;
  10. import static org.springframework.roo.classpath.customdata.CustomDataKeys.ONE_TO_MANY_FIELD;
  11. import static org.springframework.roo.classpath.customdata.CustomDataKeys.ONE_TO_ONE_FIELD;
  12. import static org.springframework.roo.classpath.customdata.CustomDataKeys.TRANSIENT_FIELD;
  13. import static org.springframework.roo.classpath.customdata.CustomDataKeys.VERSION_FIELD;
  14. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_COLUMN_ANNOTATION;
  15. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_EMBEDDED_ANNOTATION;
  16. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_EMBEDDED_ID_ANNOTATION;
  17. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_ENUMERATED_ANNOTATION;
  18. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_ID_ANNOTATION;
  19. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_LOB_ANNOTATION;
  20. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_MANY_TO_MANY_ANNOTATION;
  21. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_MANY_TO_ONE_ANNOTATION;
  22. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_ONE_TO_MANY_ANNOTATION;
  23. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_ONE_TO_ONE_ANNOTATION;
  24. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_TRANSIENT_ANNOTATION;
  25. import static org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder.JPA_VERSION_ANNOTATION;
  26. import java.util.ArrayList;
  27. import java.util.Arrays;
  28. import java.util.Collection;
  29. import java.util.HashMap;
  30. import java.util.List;
  31. import java.util.Map;
  32. import org.apache.commons.lang3.Validate;
  33. import org.springframework.roo.classpath.details.FieldMetadata;
  34. import org.springframework.roo.classpath.details.MemberHoldingTypeDetails;
  35. import org.springframework.roo.classpath.details.annotations.AnnotationMetadata;
  36. import org.springframework.roo.model.CustomDataKey;
  37. import org.springframework.roo.model.JavaSymbolName;
  38. /**
  39. * A {@link Matcher} for {@link FieldMetadata}-that matches on the presence of
  40. * at least one of a given list of annotations.
  41. *
  42. * @author James Tyrrell
  43. * @author Andrew Swan
  44. * @since 1.1.3
  45. */
  46. public class FieldMatcher implements Matcher<FieldMetadata> {
  47. public static final FieldMatcher JPA_COLUMN = new FieldMatcher(COLUMN_FIELD,
  48. JPA_COLUMN_ANNOTATION);
  49. public static final FieldMatcher JPA_EMBEDDED = new FieldMatcher(EMBEDDED_FIELD,
  50. JPA_EMBEDDED_ANNOTATION);
  51. public static final FieldMatcher JPA_EMBEDDED_ID = new FieldMatcher(EMBEDDED_ID_FIELD,
  52. JPA_EMBEDDED_ID_ANNOTATION);
  53. public static final FieldMatcher JPA_ENUMERATED = new FieldMatcher(ENUMERATED_FIELD,
  54. JPA_ENUMERATED_ANNOTATION);
  55. public static final FieldMatcher JPA_ID = new FieldMatcher(IDENTIFIER_FIELD, JPA_ID_ANNOTATION);
  56. public static final FieldMatcher JPA_LOB = new FieldMatcher(LOB_FIELD, JPA_LOB_ANNOTATION);
  57. public static final FieldMatcher JPA_MANY_TO_MANY = new FieldMatcher(MANY_TO_MANY_FIELD,
  58. JPA_MANY_TO_MANY_ANNOTATION);
  59. public static final FieldMatcher JPA_MANY_TO_ONE = new FieldMatcher(MANY_TO_ONE_FIELD,
  60. JPA_MANY_TO_ONE_ANNOTATION);
  61. public static final FieldMatcher JPA_ONE_TO_MANY = new FieldMatcher(ONE_TO_MANY_FIELD,
  62. JPA_ONE_TO_MANY_ANNOTATION);
  63. public static final FieldMatcher JPA_ONE_TO_ONE = new FieldMatcher(ONE_TO_ONE_FIELD,
  64. JPA_ONE_TO_ONE_ANNOTATION);
  65. public static final FieldMatcher JPA_TRANSIENT = new FieldMatcher(TRANSIENT_FIELD,
  66. JPA_TRANSIENT_ANNOTATION);
  67. public static final FieldMatcher JPA_VERSION = new FieldMatcher(VERSION_FIELD,
  68. JPA_VERSION_ANNOTATION);
  69. private final List<AnnotationMetadata> annotations;
  70. private final CustomDataKey<FieldMetadata> customDataKey;
  71. /**
  72. * Constructor for matching on any of the given annotations
  73. *
  74. * @param customDataKey the custom data key indicating the type of field
  75. * (required)
  76. * @param annotations the annotations to match upon
  77. * @since 1.2.0
  78. */
  79. public FieldMatcher(final CustomDataKey<FieldMetadata> customDataKey,
  80. final AnnotationMetadata... annotations) {
  81. this(customDataKey, Arrays.asList(annotations));
  82. }
  83. /**
  84. * Constructor for matching on any of the given annotations
  85. *
  86. * @param customDataKey the custom data key indicating the type of field
  87. * (required)
  88. * @param annotations the annotations to match upon (can be null)
  89. */
  90. public FieldMatcher(final CustomDataKey<FieldMetadata> customDataKey,
  91. final Collection<AnnotationMetadata> annotations) {
  92. Validate.notNull(customDataKey, "Custom data key is required");
  93. this.annotations = new ArrayList<AnnotationMetadata>();
  94. this.customDataKey = customDataKey;
  95. if (annotations != null) {
  96. this.annotations.addAll(annotations);
  97. }
  98. }
  99. private Map<String, Object> getAttributeMap(final FieldMetadata field) {
  100. final Map<String, Object> map = new HashMap<String, Object>();
  101. final AnnotationMetadata annotationMetadata = getMatchingAnnotation(field);
  102. if (annotationMetadata != null) {
  103. for (final JavaSymbolName attributeName : annotationMetadata.getAttributeNames()) {
  104. map.put(attributeName.getSymbolName(), annotationMetadata.getAttribute(attributeName)
  105. .getValue());
  106. }
  107. }
  108. return map;
  109. }
  110. public CustomDataKey<FieldMetadata> getCustomDataKey() {
  111. return customDataKey;
  112. }
  113. /**
  114. * Returns the first annotation of the given field that matches any of this
  115. * matcher's target annotations
  116. *
  117. * @param field the field whose annotations are to be checked (required)
  118. * @return
  119. */
  120. private AnnotationMetadata getMatchingAnnotation(final FieldMetadata field) {
  121. for (final AnnotationMetadata fieldAnnotation : field.getAnnotations()) {
  122. for (final AnnotationMetadata matchingAnnotation : annotations) {
  123. if (fieldAnnotation.getAnnotationType().getFullyQualifiedTypeName()
  124. .equals(matchingAnnotation.getAnnotationType().getFullyQualifiedTypeName())) {
  125. return fieldAnnotation;
  126. }
  127. }
  128. }
  129. return null;
  130. }
  131. public Object getTagValue(final FieldMetadata field) {
  132. return getAttributeMap(field);
  133. }
  134. public List<FieldMetadata> matches(
  135. final List<MemberHoldingTypeDetails> memberHoldingTypeDetailsList) {
  136. final List<FieldMetadata> fields = new ArrayList<FieldMetadata>();
  137. for (final MemberHoldingTypeDetails memberHoldingTypeDetails : memberHoldingTypeDetailsList) {
  138. for (final FieldMetadata field : memberHoldingTypeDetails.getDeclaredFields()) {
  139. if (getMatchingAnnotation(field) != null) {
  140. fields.add(field);
  141. }
  142. }
  143. }
  144. return fields;
  145. }
  146. }