/runtime/classpath/src/main/java/org/springframework/roo/classpath/layers/LayerTypeMatcher.java

http://github.com/SpringSource/spring-roo · Java · 71 lines · 47 code · 6 blank · 18 comment · 9 complexity · 5e868e2a55ab756bef301d1224fbf4b5 MD5 · raw file

  1. package org.springframework.roo.classpath.layers;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import org.apache.commons.lang3.Validate;
  5. import org.springframework.roo.classpath.customdata.CustomDataKeys;
  6. import org.springframework.roo.classpath.customdata.taggers.AnnotatedTypeMatcher;
  7. import org.springframework.roo.classpath.customdata.taggers.Matcher;
  8. import org.springframework.roo.classpath.details.MemberFindingUtils;
  9. import org.springframework.roo.classpath.details.MemberHoldingTypeDetails;
  10. import org.springframework.roo.classpath.details.annotations.AnnotationAttributeValue;
  11. import org.springframework.roo.classpath.details.annotations.AnnotationMetadata;
  12. import org.springframework.roo.classpath.details.annotations.ArrayAttributeValue;
  13. import org.springframework.roo.classpath.details.annotations.ClassAttributeValue;
  14. import org.springframework.roo.model.JavaSymbolName;
  15. import org.springframework.roo.model.JavaType;
  16. /**
  17. * A {@link Matcher} used for layering support; identifies layer components
  18. * (services, repositories, etc) by the presence of a given tag, and sets each
  19. * such component's {@link CustomDataKeys#LAYER_TYPE} tag to a list of the
  20. * domain types managed by that component (as a
  21. * <code>List&lt;{@link JavaType}&gt;</code>).
  22. *
  23. * @author Stefan Schmidt
  24. * @since 1.2.0
  25. */
  26. public class LayerTypeMatcher extends AnnotatedTypeMatcher {
  27. private final JavaSymbolName domainTypesAttribute;
  28. private final JavaType layerAnnotationType;
  29. /**
  30. * Constructor
  31. *
  32. * @param layerAnnotation the annotation type to match on and read
  33. * attributes of (required)
  34. * @param domainTypesAttribute the attribute of the above annotation that
  35. * identifies the domain type(s) being managed (required)
  36. */
  37. public LayerTypeMatcher(final JavaType layerAnnotation, final JavaSymbolName domainTypesAttribute) {
  38. super(CustomDataKeys.LAYER_TYPE, layerAnnotation);
  39. Validate.notNull(layerAnnotation, "Layer annotation is required");
  40. Validate.notNull(domainTypesAttribute, "Domain types attribute is required");
  41. this.domainTypesAttribute = domainTypesAttribute;
  42. layerAnnotationType = layerAnnotation;
  43. }
  44. @Override
  45. public Object getTagValue(final MemberHoldingTypeDetails type) {
  46. final AnnotationMetadata layerAnnotation =
  47. MemberFindingUtils.getAnnotationOfType(type.getAnnotations(), layerAnnotationType);
  48. if (layerAnnotation == null || layerAnnotation.getAttribute(domainTypesAttribute) == null) {
  49. return null;
  50. }
  51. final AnnotationAttributeValue<?> value = layerAnnotation.getAttribute(domainTypesAttribute);
  52. final List<JavaType> domainTypes = new ArrayList<JavaType>();
  53. if (value instanceof ClassAttributeValue) {
  54. domainTypes.add(((ClassAttributeValue) value).getValue());
  55. } else if (value instanceof ArrayAttributeValue<?>) {
  56. final ArrayAttributeValue<?> castValue = (ArrayAttributeValue<?>) value;
  57. for (final AnnotationAttributeValue<?> val : castValue.getValue()) {
  58. if (val instanceof ClassAttributeValue) {
  59. domainTypes.add(((ClassAttributeValue) val).getValue());
  60. }
  61. }
  62. }
  63. return domainTypes;
  64. }
  65. }