Interface AnalysisCache

    • Method Detail

      • persist

        void persist()
        Deprecated.
        Persists the updated analysis results on whatever medium is used by the cache.
      • isUpToDate

        boolean isUpToDate​(File sourceFile)
        Deprecated.
        Checks if a given file is up to date in the cache and can be skipped from analysis. Regardless of the return value of this method, each call adds the parameter to the updated cache, which allows ThreadSafeReportListener.ruleViolationAdded(RuleViolation) to add a rule violation to the file. TODO is this really best behaviour? This side-effects seems counter-intuitive.
        Parameters:
        sourceFile - The file to check in the cache
        Returns:
        True if the cache is a hit, false otherwise
      • getCachedViolations

        List<RuleViolation> getCachedViolations​(File sourceFile)
        Deprecated.
        Retrieves cached violations for the given file. Make sure to call isUpToDate(File) first.
        Parameters:
        sourceFile - The file to check in the cache
        Returns:
        The list of cached violations.
      • analysisFailed

        void analysisFailed​(File sourceFile)
        Deprecated.
        Notifies the cache that analysis of the given file has failed and should not be cached.
        Parameters:
        sourceFile - The file whose analysis failed
      • checkValidity

        void checkValidity​(RuleSets ruleSets,
                           ClassLoader auxclassPathClassLoader)
        Deprecated.
        Checks if the cache is valid for the configured rulesets and class loader. If the provided rulesets and classpath don't match those of the cache, the cache is invalidated. This needs to be called before analysis, as it conditions the good behaviour of isUpToDate(File).
        Parameters:
        ruleSets - The rulesets configured for this analysis.
        auxclassPathClassLoader - The class loader for auxclasspath configured for this analysis.