public class WholeProgramInferenceScenesStorage extends Object
The set of annotations inferred for a certain class is stored in an AScene, which writeScenes() can write into a file. For example,
 a class my.pakkage.MyClass will have its members' inferred types stored in a Scene, and
 later written into a file named my.pakkage.MyClass.jaif if using WholeProgramInference.OutputFormat.JAIF, or my.pakkage.MyClass.astub if using WholeProgramInference.OutputFormat.STUB.
 
This class populates the initial Scenes by reading existing .jaif files on the JAIF_FILES_PATH directory (regardless of output format). Having more information in those
 initial .jaif files means that the precision achieved by the whole-program inference analysis
 will be better. writeScenes(org.checkerframework.common.wholeprograminference.WholeProgramInference.OutputFormat, org.checkerframework.common.basetype.BaseTypeChecker) rewrites the initial .jaif files, and may create new ones.
| Modifier and Type | Class and Description | 
|---|---|
static class  | 
WholeProgramInferenceScenesStorage.AnnotationsInContexts
Maps the toString() representation of an ATypeElement and its TypeUseLocation to a set of
 names of annotations. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
static String | 
JAIF_FILES_PATH
Directory where .jaif files will be written to and read from. 
 | 
| Constructor and Description | 
|---|
WholeProgramInferenceScenesStorage(boolean ignoreNullAssignments)
Default constructor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
protected scenelib.annotations.el.AClass | 
getAClass(@BinaryName String className,
         String jaifPath)
Returns the scene-lib representation of the given className in the scene identified by the
 given jaifPath. 
 | 
protected scenelib.annotations.el.AClass | 
getAClass(@BinaryName String className,
         String jaifPath,
         @Nullable com.sun.tools.javac.code.Symbol.ClassSymbol classSymbol)
Returns the scene-lib representation of the given className in the scene identified by the
 given jaifPath. 
 | 
protected String | 
getJaifPath(String className)
Returns the String representing the .jaif path of a class given its name. 
 | 
protected ASceneWrapper | 
getScene(String jaifPath)
Reads a Scene from the given .jaif file, or returns an empty Scene if the file does not
 exist. 
 | 
protected void | 
updateAnnotationSetInScene(scenelib.annotations.el.ATypeElement type,
                          AnnotatedTypeFactory atf,
                          String jaifPath,
                          AnnotatedTypeMirror rhsATM,
                          AnnotatedTypeMirror lhsATM,
                          TypeUseLocation defLoc)
Updates the set of annotations in a location of a Scene. 
 | 
void | 
writeScenes(WholeProgramInference.OutputFormat outputFormat,
           BaseTypeChecker checker)
Write all modified scenes into files. 
 | 
public static final String JAIF_FILES_PATH
public WholeProgramInferenceScenesStorage(boolean ignoreNullAssignments)
ignoreNullAssignments - indicates whether assignments where the rhs is null should be
     ignoredpublic void writeScenes(WholeProgramInference.OutputFormat outputFormat, BaseTypeChecker checker)
updateAnnotationSetInScene(scenelib.annotations.el.ATypeElement, org.checkerframework.framework.type.AnnotatedTypeFactory, java.lang.String, org.checkerframework.framework.type.AnnotatedTypeMirror, org.checkerframework.framework.type.AnnotatedTypeMirror, org.checkerframework.framework.qual.TypeUseLocation).)outputFormat - the output format to use when writing fileschecker - the checker from which this method is called, for naming stub filesprotected String getJaifPath(String className)
className - the simple name of a classprotected ASceneWrapper getScene(String jaifPath)
jaifPath - the .jaif fileprotected scenelib.annotations.el.AClass getAClass(@BinaryName String className, String jaifPath, @Nullable com.sun.tools.javac.code.Symbol.ClassSymbol classSymbol)
className - the name of the class to get, in binary formjaifPath - the path to the jaif file that would represent that class (must end in
     ".jaif")classSymbol - optionally, the ClassSymbol representing the class. Used to set the symbol
     information stored on an AClass.classSymbol was non-nullprotected scenelib.annotations.el.AClass getAClass(@BinaryName String className, String jaifPath)
className - the name of the class to get, in binary formjaifPath - the path to the jaif file that would represent that class (must end in
     ".jaif")getAClass(String, String, com.sun.tools.javac.code.Symbol.ClassSymbol) has
     already been called with a non-null third argumentprotected void updateAnnotationSetInScene(scenelib.annotations.el.ATypeElement type,
                                          AnnotatedTypeFactory atf,
                                          String jaifPath,
                                          AnnotatedTypeMirror rhsATM,
                                          AnnotatedTypeMirror lhsATM,
                                          TypeUseLocation defLoc)
type - ATypeElement of the Scene which will be modifiedatf - the annotated type factory of a given type system, whose type hierarchy will be
     usedjaifPath - used to identify a ScenerhsATM - the RHS of the annotated type on the source codelhsATM - the LHS of the annotated type on the source codedefLoc - the location where the annotation will be added