Package org.springframework.core.type.classreading

Source Code of org.springframework.core.type.classreading.AnnotationMetadataReadingVisitor

/*
* Copyright 2002-2012 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.util.Collection;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.springframework.asm.AnnotationVisitor;
import org.springframework.asm.MethodVisitor;
import org.springframework.asm.Type;
import org.springframework.core.annotation.AnnotationAttributes;
import org.springframework.core.type.AnnotationMetadata;
import org.springframework.core.type.MethodMetadata;
import org.springframework.util.CollectionUtils;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;

/**
* ASM class visitor which looks for the class name and implemented types as
* well as for the annotations defined on the class, exposing them through
* the {@link org.springframework.core.type.AnnotationMetadata} interface.
*
* @author Juergen Hoeller
* @author Mark Fisher
* @author Costin Leau
* @since 2.5
*/
final class AnnotationMetadataReadingVisitor extends ClassMetadataReadingVisitor implements AnnotationMetadata {

  private final ClassLoader classLoader;

  private final Set<String> annotationSet = new LinkedHashSet<String>();

  private final Map<String, Set<String>> metaAnnotationMap = new LinkedHashMap<String, Set<String>>(4);

  private final Map<String, AnnotationAttributes> attributeMap = new LinkedHashMap<String, AnnotationAttributes>(4);

  private final MultiValueMap<String, MethodMetadata> methodMetadataMap = new LinkedMultiValueMap<String, MethodMetadata>();


  public AnnotationMetadataReadingVisitor(ClassLoader classLoader) {
    this.classLoader = classLoader;
  }


  @Override
  public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
    return new MethodMetadataReadingVisitor(name, access, this.getClassName(), this.classLoader, this.methodMetadataMap);
  }

  @Override
  public AnnotationVisitor visitAnnotation(final String desc, boolean visible) {
    String className = Type.getType(desc).getClassName();
    this.annotationSet.add(className);
    return new AnnotationAttributesReadingVisitor(className, this.attributeMap, this.metaAnnotationMap, this.classLoader);
  }


  public Set<String> getAnnotationTypes() {
    return this.annotationSet;
  }

  public Set<String> getMetaAnnotationTypes(String annotationType) {
    return this.metaAnnotationMap.get(annotationType);
  }

  public boolean hasAnnotation(String annotationType) {
    return this.annotationSet.contains(annotationType);
  }

  public boolean hasMetaAnnotation(String metaAnnotationType) {
    Collection<Set<String>> allMetaTypes = this.metaAnnotationMap.values();
    for (Set<String> metaTypes : allMetaTypes) {
      if (metaTypes.contains(metaAnnotationType)) {
        return true;
      }
    }
    return false;
  }

  public boolean isAnnotated(String annotationType) {
    return this.attributeMap.containsKey(annotationType);
  }

  public AnnotationAttributes getAnnotationAttributes(String annotationType) {
    return getAnnotationAttributes(annotationType, false);
  }

  public AnnotationAttributes getAnnotationAttributes(String annotationType, boolean classValuesAsString) {
    return getAnnotationAttributes(annotationType, classValuesAsString, false);
  }

  public AnnotationAttributes getAnnotationAttributes(
      String annotationType, boolean classValuesAsString, boolean nestedAttributesAsMap) {

    AnnotationAttributes raw = this.attributeMap.get(annotationType);
    return convertClassValues(raw, classValuesAsString, nestedAttributesAsMap);
  }

  private AnnotationAttributes convertClassValues(
      AnnotationAttributes original, boolean classValuesAsString, boolean nestedAttributesAsMap) {

    if (original == null) {
      return null;
    }
    AnnotationAttributes result = new AnnotationAttributes(original.size());
    for (Map.Entry<String, Object> entry : original.entrySet()) {
      try {
        Object value = entry.getValue();
        if (value instanceof AnnotationAttributes) {
          value = convertClassValues((AnnotationAttributes)value, classValuesAsString, nestedAttributesAsMap);
        }
        else if (value instanceof AnnotationAttributes[]) {
          AnnotationAttributes[] values = (AnnotationAttributes[])value;
          for (int i = 0; i < values.length; i++) {
            values[i] = convertClassValues(values[i], classValuesAsString, nestedAttributesAsMap);
          }
        }
        else if (value instanceof Type) {
          value = (classValuesAsString ? ((Type) value).getClassName() :
              this.classLoader.loadClass(((Type) value).getClassName()));
        }
        else if (value instanceof Type[]) {
          Type[] array = (Type[]) value;
          Object[] convArray = (classValuesAsString ? new String[array.length] : new Class[array.length]);
          for (int i = 0; i < array.length; i++) {
            convArray[i] = (classValuesAsString ? array[i].getClassName() :
                this.classLoader.loadClass(array[i].getClassName()));
          }
          value = convArray;
        }
        else if (classValuesAsString) {
          if (value instanceof Class) {
            value = ((Class<?>) value).getName();
          }
          else if (value instanceof Class[]) {
            Class<?>[] clazzArray = (Class[]) value;
            String[] newValue = new String[clazzArray.length];
            for (int i = 0; i < clazzArray.length; i++) {
              newValue[i] = clazzArray[i].getName();
            }
            value = newValue;
          }
        }
        result.put(entry.getKey(), value);
      }
      catch (Exception ex) {
        // Class not found - can't resolve class reference in annotation attribute.
      }
    }
    return result;
  }

  public boolean hasAnnotatedMethods(String annotationType) {
    return this.methodMetadataMap.containsKey(annotationType);
  }

  public Set<MethodMetadata> getAnnotatedMethods(String annotationType) {
    List<MethodMetadata> list = this.methodMetadataMap.get(annotationType);
    if (CollectionUtils.isEmpty(list)) {
      return new LinkedHashSet<MethodMetadata>(0);
    }
    Set<MethodMetadata> annotatedMethods = new LinkedHashSet<MethodMetadata>(list.size());
    annotatedMethods.addAll(list);
    return annotatedMethods;
  }
}
TOP

Related Classes of org.springframework.core.type.classreading.AnnotationMetadataReadingVisitor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.