/* * Copyright 2002-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.core.type.classreading; import java.lang.annotation.Annotation; import java.lang.reflect.Modifier; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; import org.springframework.core.annotation.AnnotationAttributes; import org.springframework.core.annotation.AnnotationUtils; import org.springframework.util.MultiValueMap; /** * ASM visitor which looks for the annotations defined on a class or method, including * tracking meta-annotations. * *

As of Spring 3.1.1, this visitor is fully recursive, taking into account any nested * annotations or nested annotation arrays. These annotations are in turn read into * {@link AnnotationAttributes} map structures. * * @author Juergen Hoeller * @author Chris Beams * @author Phillip Webb * @author Sam Brannen * @since 3.0 */ final class AnnotationAttributesReadingVisitor extends RecursiveAnnotationAttributesVisitor { private final String annotationType; private final MultiValueMap attributesMap; private final Map> metaAnnotationMap; public AnnotationAttributesReadingVisitor(String annotationType, MultiValueMap attributesMap, Map> metaAnnotationMap, ClassLoader classLoader) { super(annotationType, new AnnotationAttributes(), classLoader); this.annotationType = annotationType; this.attributesMap = attributesMap; this.metaAnnotationMap = metaAnnotationMap; } @Override public void doVisitEnd(Class annotationClass) { super.doVisitEnd(annotationClass); List attributes = this.attributesMap.get(this.annotationType); if (attributes == null) { this.attributesMap.add(this.annotationType, this.attributes); } else { attributes.add(0, this.attributes); } Set metaAnnotationTypeNames = new LinkedHashSet(); for (Annotation metaAnnotation : AnnotationUtils.getAnnotations(annotationClass)) { if (!AnnotationUtils.isInJavaLangAnnotationPackage(metaAnnotation)) { recursivelyCollectMetaAnnotations(metaAnnotationTypeNames, metaAnnotation); } } if (this.metaAnnotationMap != null) { this.metaAnnotationMap.put(annotationClass.getName(), metaAnnotationTypeNames); } } private void recursivelyCollectMetaAnnotations(Set visited, Annotation annotation) { String annotationName = annotation.annotationType().getName(); if (!AnnotationUtils.isInJavaLangAnnotationPackage(annotation) && visited.add(annotationName)) { // Only do further scanning for public annotations; we'd run into // IllegalAccessExceptions otherwise, and we don't want to mess with // accessibility in a SecurityManager environment. if (Modifier.isPublic(annotation.annotationType().getModifiers())) { this.attributesMap.add(annotationName, AnnotationUtils.getAnnotationAttributes(annotation, false, true)); for (Annotation metaMetaAnnotation : annotation.annotationType().getAnnotations()) { recursivelyCollectMetaAnnotations(visited, metaMetaAnnotation); } } } } }