Package org.apache.bcel.util
Class LruCacheClassPathRepository
java.lang.Object
org.apache.bcel.util.LruCacheClassPathRepository
- All Implemented Interfaces:
Repository
Maintains a least-recently-used (LRU) cache of
JavaClass
with maximum size cacheSize
.
This repository supports a class path consisting of too many JAR files to handle in ClassPathRepository
or
MemorySensitiveClassPathRepository
without causing OutOfMemoryError
.
- Since:
- 6.4.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Clears all entries from cache.Finds the class with the name provided, if the class isn't there, return NULL.Gets the ClassPath associated with this RepositoryFinds the JavaClass object for a runtime Class object.Finds a JavaClass object by name.void
removeClass
(JavaClass javaClass) Removes class from repositoryvoid
storeClass
(JavaClass javaClass) Stores the provided class under "clazz.getClassName()"
-
Constructor Details
-
LruCacheClassPathRepository
-
-
Method Details
-
findClass
Description copied from interface:Repository
Finds the class with the name provided, if the class isn't there, return NULL.- Specified by:
findClass
in interfaceRepository
-
storeClass
Description copied from interface:Repository
Stores the provided class under "clazz.getClassName()"- Specified by:
storeClass
in interfaceRepository
-
removeClass
Description copied from interface:Repository
Removes class from repository- Specified by:
removeClass
in interfaceRepository
-
clear
public void clear()Description copied from interface:Repository
Clears all entries from cache.- Specified by:
clear
in interfaceRepository
-
loadClass
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:
loadClass
in interfaceRepository
- Parameters:
className
- the name of the class- Returns:
- the JavaClass object
- Throws:
ClassNotFoundException
- if the class is not in the Repository, and could not be found on the classpath
-
loadClass
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:
loadClass
in interfaceRepository
- Parameters:
clazz
- the runtime Class object- Returns:
- JavaClass object for given runtime class
- Throws:
ClassNotFoundException
- if the class is not in the Repository, and its representation could not be found- See Also:
-
getClassPath
Description copied from interface:Repository
Gets the ClassPath associated with this Repository- Specified by:
getClassPath
in interfaceRepository
-