All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.umd.cs.findbugs.classfile.IAnalysisCache Maven / Gradle / Ivy

There is a newer version: 4.8.6
Show newest version
/*
 * FindBugs - Find Bugs in Java programs
 * Copyright (C) 2006-2008 University of Maryland
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
package edu.umd.cs.findbugs.classfile;

import java.util.Map;

import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

import edu.umd.cs.findbugs.log.Profiler;

/**
 * The analysis cache performs analyses on classes and methods and caches the
 * results.
 *
 * @author David Hovemeyer
 */
public interface IAnalysisCache {

    /**
     * Register the given class analysis engine as producing the analysis result
     * type whose Class is given.
     *
     * @param 
     *            analysis result type
     * @param analysisResultType
     *            analysis result type Class object
     * @param classAnalysisEngine
     *            the class analysis engine to register
     */
    public  void registerClassAnalysisEngine(Class analysisResultType, IClassAnalysisEngine classAnalysisEngine);

    /**
     * Register the given method analysis engine as producing the analysis
     * result type whose Class is given.
     *
     * @param 
     *            analysis result type
     * @param analysisResultType
     *            analysis result type Class object
     * @param methodAnalysisEngine
     *            the method analysis engine to register
     */
    public  void registerMethodAnalysisEngine(Class analysisResultType, IMethodAnalysisEngine methodAnalysisEngine);

    /**
     * Get an analysis of the given class.
     *
     * @param 
     *            the type of the analysis (e.g., FoobarAnalysis)
     * @param analysisClass
     *            the analysis class object (e.g., FoobarAnalysis.class)
     * @param classDescriptor
     *            the descriptor of the class to analyze
     * @return the analysis object (e.g., instance of FoobarAnalysis for the
     *         class)
     * @throws CheckedAnalysisException
     *             if an error occurs performing the analysis
     */
    public  E getClassAnalysis(Class analysisClass, @Nonnull ClassDescriptor classDescriptor)
            throws CheckedAnalysisException;

    /**
     * See if the cache contains a cached class analysis result for given class
     * descriptor.
     *
     * @param analysisClass
     *            analysis result class
     * @param classDescriptor
     *            the class descriptor
     * @return a cached analysis result, or null if there is no cached analysis
     *         result
     */
    public  E probeClassAnalysis(Class analysisClass, @Nonnull ClassDescriptor classDescriptor);

    /**
     * Get an analysis of the given method.
     *
     * @param 
     *            the type of the analysis (e.g., FoobarAnalysis)
     * @param analysisClass
     *            the analysis class object (e.g., FoobarAnalysis.class)
     * @param methodDescriptor
     *            the descriptor of the method to analyze
     * @return the analysis object (e.g., instance of FoobarAnalysis for the
     *         method)
     * @throws CheckedAnalysisException
     *             if an error occurs performing the analysis
     */
    public  E getMethodAnalysis(Class analysisClass, @Nonnull MethodDescriptor methodDescriptor)
            throws CheckedAnalysisException;

    /**
     * Eagerly put a method analysis object in the cache. This can be necessary
     * if an method analysis engine invokes other analysis engines that might
     * recursively require the analysis being produced.
     *
     * @param 
     *            the type of the analysis (e.g., FoobarAnalysis)
     * @param analysisClass
     *            the analysis class object (e.g., FoobarAnalysis.class)
     * @param methodDescriptor
     *            the descriptor of the method to analyze
     * @param analysisObject
     */
    public  void eagerlyPutMethodAnalysis(Class analysisClass, @Nonnull MethodDescriptor methodDescriptor,
            E analysisObject);

    /**
     * Purge all analysis results for given method. This can be called when a
     * CFG is pruned and we want to compute more accurate analysis results on
     * the new CFG.
     *
     * @param methodDescriptor
     *            method whose analysis results should be purged
     */
    public void purgeMethodAnalyses(@Nonnull MethodDescriptor methodDescriptor);

    /**
     * Purge all method analysis results for all methods.
     */
    public void purgeAllMethodAnalysis();

    /**
     * Purge all class analysis results of a particular kind
     */
    public void purgeClassAnalysis(Class analysisClass);

    /**
     * Register a database factory.
     *
     * @param 
     *            type of database
     * @param databaseClass
     *            Class of database
     * @param databaseFactory
     *            the database factory
     */
    public  void registerDatabaseFactory(Class databaseClass, IDatabaseFactory databaseFactory);

    /**
     * Get a database.
     *
     * Note: an unchecked analysis exception will be thrown if the
     * database cannot be instantiated. Since instantiation of most kinds of
     * databases simply involves creating an object (and not opening a file or
     * other failure-prone operation), throwing a CheckedAnalysisException
     * creates too great of an exception-handling burden on analyses and
     * detectors which use databases.
     *
     * @param 
     *            type of database
     * @param databaseClass
     *            Class of database
     * @return the database (which is created by a database factory if required)
     */
    public  E getDatabase(Class databaseClass);

    public @CheckForNull  E getOptionalDatabase(Class databaseClass);

    /**
     * Eagerly install a database. This avoids the need to register a database
     * factory.
     *
     * @param 
     *            type of database
     * @param databaseClass
     *            Class of database
     * @param database
     *            database object
     */
    public  void eagerlyPutDatabase(Class databaseClass, E database);

    /**
     * Get the classpath from which classes are loaded.
     *
     * @return the classpath
     */
    public IClassPath getClassPath();

    /**
     * Get the error logger.
     *
     * @return the error logger
     */
    public IErrorLogger getErrorLogger();

    /**
     * Get map of analysis-local objects.
     *
     * @deprecated This method is not necessary to realize multi-thread model in SpotBugs 4.0. See
     *             {@link edu.umd.cs.findbugs.AnalysisLocal AnalysisLocal} for detail.
     */
    @Deprecated
    public Map getAnalysisLocals();

    /**
     * Get the analysis profiler instance, never null
     */
    public Profiler getProfiler();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy