/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.jersey.spi.scanning; import com.sun.jersey.core.reflection.ReflectionHelper; import com.sun.jersey.core.spi.scanning.ScannerListener; import java.io.IOException; import java.io.InputStream; import java.lang.annotation.Annotation; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.Set; import org.objectweb.asm.AnnotationVisitor; import org.objectweb.asm.Attribute; import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassVisitor; import org.objectweb.asm.FieldVisitor; import org.objectweb.asm.MethodVisitor; import org.objectweb.asm.Opcodes; /** * A scanner listener that processes Java class files (resource names * ending in ".class") annotated with one or more of a set of declared * annotations. * <p> * Java classes of a Java class file are processed, using ASM, to ascertain * if those classes are annotated with one or more of the set of declared * annotations. * <p> * Such an annotated Java class of a Java class file is loaded if the class * is public or is an inner class that is static and public. * * @author Paul.Sandoz@Sun.Com */ public class AnnotationScannerListener implements ScannerListener { private final ClassLoader classloader; private final Set<Class<?>> classes; private final Set<String> annotations; private final AnnotatedClassVisitor classVisitor; /** * Create a scanner listener to check for annotated Java classes in Java * class files. * * @param annotations the set of annotation classes to check on Java class * files. */ public AnnotationScannerListener(Class<? extends Annotation>... annotations) { this(ReflectionHelper.getContextClassLoader(), annotations); } /** * Create a scanner listener to check for annotated Java classes in Java * class files. * * @param classloader the class loader to use to load Java classes that * are annotated with any one of the annotations. * @param annotations the set of annotation classes to check on Java class * files. */ public AnnotationScannerListener(ClassLoader classloader, Class<? extends Annotation>... annotations) { this.classloader = classloader; this.classes = new LinkedHashSet<Class<?>>(); this.annotations = getAnnotationSet(annotations); this.classVisitor = new AnnotatedClassVisitor(); } /** * Get the set of annotated classes. * * @return the set of annotated classes. */ public Set<Class<?>> getAnnotatedClasses() { return classes; } private Set<String> getAnnotationSet(Class<? extends Annotation>... annotations) { Set<String> a = new HashSet<String>(); for (Class c : annotations) { a.add("L" + c.getName().replaceAll("\\.", "/") + ";"); } return a; } // ScannerListener public boolean onAccept(String name) { return name.endsWith(".class"); } public void onProcess(String name, InputStream in) throws IOException { new ClassReader(in).accept(classVisitor, 0); } // private final class AnnotatedClassVisitor implements ClassVisitor { /** * The name of the visited class. */ private String className; /** * True if the class has the correct scope */ private boolean isScoped; /** * True if the class has the correct declared annotations */ private boolean isAnnotated; public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) { className = name; isScoped = (access & Opcodes.ACC_PUBLIC) != 0; isAnnotated = false; } public AnnotationVisitor visitAnnotation(String desc, boolean visible) { isAnnotated |= annotations.contains(desc); return null; } public void visitInnerClass(String name, String outerName, String innerName, int access) { // If the name of the class that was visited is equal // to the name of this visited inner class then // this access field needs to be used for checking the scope // of the inner class if (className.equals(name)) { isScoped = (access & Opcodes.ACC_PUBLIC) != 0; // Inner classes need to be statically scoped isScoped &= (access & Opcodes.ACC_STATIC) == Opcodes.ACC_STATIC; } } public void visitEnd() { if (isScoped && isAnnotated) { // Correctly scoped and annotated // add to the set of matching classes. classes.add(getClassForName(className.replaceAll("/", "."))); } } public void visitOuterClass(String string, String string0, String string1) { // Do nothing } public FieldVisitor visitField(int i, String string, String string0, String string1, Object object) { // Do nothing return null; } public void visitSource(String string, String string0) { // Do nothing } public void visitAttribute(Attribute attribute) { // Do nothing } public MethodVisitor visitMethod(int i, String string, String string0, String string1, String[] string2) { // Do nothing return null; } private Class getClassForName(String className) { try { return ReflectionHelper.classForNameWithException(className, classloader); } catch (ClassNotFoundException ex) { String s = "A class file of the class name, " + className + "is identified but the class could not be found"; throw new RuntimeException(s, ex); } } }; }