Package org.apache.bcel.util
Class LruCacheClassPathRepository
- java.lang.Object
-
- org.apache.bcel.util.LruCacheClassPathRepository
-
- All Implemented Interfaces:
Repository
public class LruCacheClassPathRepository extends java.lang.ObjectMaintains a least-recently-used (LRU) cache ofJavaClasswith maximum sizecacheSize.This repository supports a class path consisting of too many JAR files to handle in
ClassPathRepositoryorMemorySensitiveClassPathRepositorywithout causingOutOfMemoryError.- Since:
- 6.4.0
-
-
Constructor Summary
Constructors Constructor Description LruCacheClassPathRepository(ClassPath path, int cacheSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clears all entries from cache.JavaClassfindClass(java.lang.String className)Finds the class with the name provided, if the class isn't there, return NULL.ClassPathgetClassPath()Gets the ClassPath associated with this RepositoryJavaClassloadClass(java.lang.Class<?> clazz)Finds the JavaClass object for a runtime Class object.JavaClassloadClass(java.lang.String className)Finds a JavaClass object by name.voidremoveClass(JavaClass javaClass)Removes class from repositoryvoidstoreClass(JavaClass javaClass)Stores the provided class under "clazz.getClassName()"
-
-
-
Constructor Detail
-
LruCacheClassPathRepository
public LruCacheClassPathRepository(ClassPath path, int cacheSize)
-
-
Method Detail
-
findClass
public JavaClass findClass(java.lang.String className)
Description copied from interface:RepositoryFinds the class with the name provided, if the class isn't there, return NULL.- Specified by:
findClassin interfaceRepository
-
storeClass
public void storeClass(JavaClass javaClass)
Description copied from interface:RepositoryStores the provided class under "clazz.getClassName()"- Specified by:
storeClassin interfaceRepository
-
removeClass
public void removeClass(JavaClass javaClass)
Description copied from interface:RepositoryRemoves class from repository- Specified by:
removeClassin interfaceRepository
-
clear
public void clear()
Description copied from interface:RepositoryClears all entries from cache.- Specified by:
clearin interfaceRepository
-
loadClass
public JavaClass loadClass(java.lang.String className) throws java.lang.ClassNotFoundException
Finds a JavaClass object by name. If it is already in this Repository, the Repository version is returned. Otherwise, the Repository's classpath is searched for the class (and it is added to the Repository if found).- Specified by:
loadClassin interfaceRepository- Parameters:
className- the name of the class- Returns:
- the JavaClass object
- Throws:
java.lang.ClassNotFoundException- if the class is not in the Repository, and could not be found on the classpath
-
loadClass
public JavaClass loadClass(java.lang.Class<?> clazz) throws java.lang.ClassNotFoundException
Finds the JavaClass object for a runtime Class object. If a class with the same name is already in this Repository, the Repository version is returned. Otherwise, getResourceAsStream() is called on the Class object to find the class's representation. If the representation is found, it is added to the Repository.- Specified by:
loadClassin interfaceRepository- Parameters:
clazz- the runtime Class object- Returns:
- JavaClass object for given runtime class
- Throws:
java.lang.ClassNotFoundException- if the class is not in the Repository, and its representation could not be found- See Also:
Class
-
getClassPath
public ClassPath getClassPath()
Description copied from interface:RepositoryGets the ClassPath associated with this Repository- Specified by:
getClassPathin interfaceRepository
-
-