Package org.apache.bcel.util
Class AbstractClassPathRepository
java.lang.Object
org.apache.bcel.util.AbstractClassPathRepository
- All Implemented Interfaces:
Repository
- Direct Known Subclasses:
ClassPathRepository,LruCacheClassPathRepository,MemorySensitiveClassPathRepository
This abstract class provides a logic of a loading
JavaClass objects class names via ClassPath.
Subclasses can choose caching strategy of the objects by implementing the abstract methods (e.g.,
storeClass(JavaClass) and findClass(String)).
- Since:
- 6.4.0
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidclear()Clears all entries from cache.abstract JavaClassFinds the class with the name provided, if the class isn't there, return NULL.Gets the ClassPath associated with this Repositoryprivate JavaClassloadClass(InputStream inputStream, String className) Finds the JavaClass object for a runtime Class object.Finds a JavaClass object by name.abstract voidremoveClass(JavaClass javaClass) Removes class from repositoryabstract voidstoreClass(JavaClass javaClass) Stores the provided class under "clazz.getClassName()"
-
Field Details
-
classPath
-
-
Constructor Details
-
AbstractClassPathRepository
AbstractClassPathRepository(ClassPath classPath)
-
-
Method Details
-
clear
public abstract void clear()Description copied from interface:RepositoryClears all entries from cache.- Specified by:
clearin interfaceRepository
-
findClass
Description copied from interface:RepositoryFinds the class with the name provided, if the class isn't there, return NULL.- Specified by:
findClassin interfaceRepository
-
getClassPath
Description copied from interface:RepositoryGets the ClassPath associated with this Repository- Specified by:
getClassPathin interfaceRepository
-
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:
loadClassin 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:
-
loadClass
private JavaClass loadClass(InputStream inputStream, String className) throws ClassNotFoundException - Throws:
ClassNotFoundException
-
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:
loadClassin 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
-
removeClass
Description copied from interface:RepositoryRemoves class from repository- Specified by:
removeClassin interfaceRepository
-
storeClass
Description copied from interface:RepositoryStores the provided class under "clazz.getClassName()"- Specified by:
storeClassin interfaceRepository
-