org.ocpsoft.rewrite.annotation.scan.AbstractClassFinder Maven / Gradle / Ivy
/*
* Copyright 2010 Lincoln Baxter, III
*
* 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.ocpsoft.rewrite.annotation.scan;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import javax.servlet.ServletContext;
import org.ocpsoft.logging.Logger;
import org.ocpsoft.rewrite.annotation.api.ClassVisitor;
import org.ocpsoft.rewrite.annotation.spi.ClassFinder;
/**
* Base class for implementations of the {@link ClassFinder} interface.
*
* @see ClassFinder
* @author Christian Kaltepoth
*/
public abstract class AbstractClassFinder implements ClassFinder
{
/**
* Common logger for all implementations
*/
protected final Logger log = Logger.getLogger(this.getClass());
/**
* The {@link ServletContext}
*/
protected final ServletContext servletContext;
/**
* The {@link ClassLoader} to get classes from
*/
protected final ClassLoader classLoader;
/**
* The filter for checking which classes to process
*/
protected final PackageFilter packageFilter;
/**
* The filter to check bytecode for interesting annotations
*/
private final ByteCodeFilter byteCodeFilter;
/**
* Initialization procedure
*
* @param servletContext The {@link ServletContext} of the web application.
* @param classLoader The {@link ClassLoader} to use for loading classes
* @param packageFilter The {@link PackageFilter} used to check if a package has to be scanned.
*/
public AbstractClassFinder(ServletContext servletContext, ClassLoader classLoader, PackageFilter packageFilter,
ByteCodeFilter byteCodeFilter)
{
this.servletContext = servletContext;
this.classLoader = classLoader;
this.packageFilter = packageFilter;
this.byteCodeFilter = byteCodeFilter;
}
/**
* Strip everything up to and including a given prefix from a string.
*
* @param str The string to process
* @param prefix The prefix
* @return the stripped string or null
if the prefix has not been found
*/
protected String stripKnownPrefix(String str, String prefix)
{
int startIndex = str.lastIndexOf(prefix);
if (startIndex != -1)
{
return str.substring(startIndex + prefix.length());
}
return null;
}
/**
*
* Creates a FQCN from an {@link URL} representing a .class
file.
*
*
* @param url The path of the class file
* @return the FQCN of the class
*/
protected static String getClassName(String filename)
{
// end index is just before ".class"
int endIndex = filename.length() - ".class".length();
// extract relevant part of the path
String relativePath = filename.substring(0, endIndex);
// replace / by . to create FQCN
return relativePath.replace('/', '.');
}
/**
* Checks if a supplied class has to be processed by checking the package name against the {@link PackageFilter}.
*
* @param className FQCN of the class
* @return true
for classes to process, false
for classes to ignore
*/
protected boolean mustProcessClass(String className)
{
// skip versioned classes in Java 9 Multi-release JAR files
if (className.startsWith("META-INF.versions")) {
return false;
}
// the default package
String packageName = "";
// find last dot in class name to determine the package name
int packageEndIndex = className.lastIndexOf(".");
if (packageEndIndex != -1)
{
packageName = className.substring(0, packageEndIndex);
}
// check filter
return packageFilter.isAllowedPackage(packageName);
}
/**
*
* Handle a single class to process. This method should only be called if the class name is accepted by the
* {@link PackageFilter}.
*
*
* If classFileStream
is not null
the method will first try to check whether the class
* files may contain annotations by scanning it with the {@link ByteCodeFilter}. If no {@link InputStream} is
* supplied, this check will be skipped. After that the method will create an instance of the class and then call
* {@link ClassVisitor#visit(Class, org.ocpsoft.prettyfaces.annotation.PrettyConfig)}.
*
*
* Please not the the called of this method is responsible to close the supplied {@link InputStream}!
*
*
* @param className The FQCN of the class
* @param classFileStream The Java class file of the class (may be null
)
* @param visitor the visitor
*/
protected void processClass(String className, InputStream classFileStream, ClassVisitor visitor)
{
// skip Java 9 module metadata class files
if (className.equals("module-info")) return ;
// bytecode check is only performed if the InputStream is available
if (classFileStream != null)
{
// we must take care of IOExceptions thrown by ByteCodeAnnotationFilter
try
{
// call bytecode filter
boolean shouldScanClass = byteCodeFilter.accept(classFileStream);
// No annotations -> abort
if (!shouldScanClass)
{
return;
}
// filter says we should scan the class
if (log.isDebugEnabled())
{
log.debug("Bytecode filter recommends to scan class: " + className);
}
}
catch (IOException e)
{
if (log.isDebugEnabled())
{
log.debug("Failed to parse class file: " + className, e);
}
}
}
try
{
// request this class from the ClassLoader
Class> clazz = Class.forName(className, false, classLoader);
// call handler
visitor.visit(clazz);
}
catch (NoClassDefFoundError e)
{
// reference to another class unknown to the classloader
log.debug("Could not load class '" + className + "': " + e.toString());
}
catch (ClassNotFoundException e)
{
// should no happen, because we found the class on the classpath
throw new IllegalStateException("Unable to load class: " + className, e);
}
}
}