Class LruCacheClassPathRepository

    • Constructor Detail

      • LruCacheClassPathRepository

        public LruCacheClassPathRepository​(ClassPath path,
                                           int cacheSize)
    • Method Detail

      • findClass

        public JavaClass findClass​(String className)
        Description copied from interface: Repository
        Finds the class with the name provided, if the class isn't there, return NULL.
        Specified by:
        findClass in interface Repository
      • storeClass

        public void storeClass​(JavaClass javaClass)
        Description copied from interface: Repository
        Stores the provided class under "clazz.getClassName()"
        Specified by:
        storeClass in interface Repository
      • clear

        public void clear()
        Description copied from interface: Repository
        Clears all entries from cache.
        Specified by:
        clear in interface Repository
      • loadClass

        public JavaClass loadClass​(String className)
                            throws 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:
        loadClass in interface Repository
        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

        public JavaClass loadClass​(Class<?> clazz)
                            throws 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:
        loadClass in interface Repository
        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:
        Class