Class CheckerMain
java.lang.Object
org.checkerframework.framework.util.CheckerMain
This class behaves similarly to javac. CheckerMain does the following:
- add the
javac.jar
to the runtime classpath of the process that runs the Checker Framework. - parse and implement any special options used by the Checker Framework, e.g., using "shortnames" for annotation processors
- pass all remaining command-line arguments to the real javac
-AoutputArgsToFile=FILENAME
command-line argument or
-AoutputArgsToFile=-
to output to standard out.
"To run the Checker Framework" really means to run java, where the program being run is javac
and javac is passed a -processor
command-line argument that mentions a Checker Framework
checker. There are 5 relevant classpaths: The classpath and bootclasspath when running java, and
the classpath, bootclasspath, and processorpath used by javac. The latter three are the only
important ones.
Note for developers: Try to limit the work done (and options interpreted) by CheckerMain, because its functionality is not available to users who choose not to use the Checker Framework javac script.
-
Field Summary
Modifier and TypeFieldDescriptionprotected static final Pattern
A pattern to match bootclasspath prepend entries, used to construct one-Xbootclasspath/p:
command-line argument.protected static final String
Processor shorthand is enabled for processors in this directory in checker.jar.static final String
Option name for specifying an alternative checker-qual.jar location.static final String
Option name for specifying an alternative checker-util.jar location.protected final File
The path to the jar containing CheckerMain.class (i.e.protected final File
The path to checker-qual.jar.protected final File
The path to checker-util.jar.protected static final String
Processor shorthand is enabled for processors in this directory in checker.jar.static final String
Option name for specifying an alternative javac.jar location.protected final File
The path to the javacJar to use.static final String
Option name for specifying an alternative jdk.jar location.protected static final Pattern
Matches all-J
arguments. -
Constructor Summary
ConstructorDescriptionCheckerMain
(File checkerJar, List<String> args) Construct all the relevant file locations and Java version given the path to this jar and a set of directories in which to search for jars. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
addMainToArgs
(List<String> args) void
addToClasspath
(List<String> cpOpts) void
addToProcessorpath
(List<String> ppOpts) void
addToRuntimeClasspath
(List<String> runtimeClasspathOpts) protected void
Assert that required jars exist.collectArgFiles
(List<String> args) Return the arguments that start with @ and therefore are files that contain javac arguments.createCompilationBootclasspath
(List<String> argsList) Returns the compilation bootclasspath fromargsList
.createCpOpts
(List<String> argsList) createPpOpts
(List<String> argsList) Returns processor path options.createRuntimeClasspath
(List<String> argsList) expandArgFiles
(List<File> files) Return all the lines in all the files.Remove the argument given by argumentName and the subsequent value from the list args if present.extractBootClassPath
(List<String> args) Remove all-Xbootclasspath/p:
or-J-Xbootclasspath/p:
arguments from args and add them to the returned list.extractCpOpts
(List<String> args) Return the last-cp
or-classpath
option.protected static File
extractFileArg
(String argumentName, File alternative, List<String> args) Remove the argument given by argumentName and the subsequent value from the list args if present.extractJvmOpts
(List<String> args) Remove all-J
arguments fromargs
and add them to the returned list (without the-J
prefix).extractOptWithPattern
(@Regex(1) Pattern pattern, boolean allowEmpties, List<String> args) Find all args that match the given pattern and extract their index 1 group.extractPpOpts
(List<String> args) Remove the-processorpath
options and their arguments from args.static String
findPathTo
(@Nullable Class<?> cls, boolean errIfFromDirectory) Find the jar file or directory containing the .class file from which cls was loaded.Invoke the compiler with all relevant jars on its classpath and/or bootclasspath.int
Invoke the compiler with all relevant jars on its classpath and/or bootclasspath.static void
Any exception thrown by the Checker Framework escapes to the command line.static boolean
matchesCheckerOrSubcheckerFromList
(String processorString, List<@FullyQualifiedName String> fullyQualifiedCheckerNames) Returns true if processorString, once transformed into fully-qualified form, is present in fullyQualifiedCheckerNames.static boolean
matchesFullyQualifiedProcessor
(String processorName, List<@FullyQualifiedName String> fullyQualifiedCheckerNames, boolean allowSubcheckers) Given a shorthand processor name, returns true if it can be expanded to a checker in the fullyQualifiedCheckerNames list.protected void
replaceShorthandProcessor
(List<String> args) For every "-processor" argument in args, replace its immediate successor argument using unabbreviateProcessorNames.protected static String
unshorthandProcessorNames
(String processorsString, List<@FullyQualifiedName String> fullyQualifiedCheckerNames, boolean allowSubcheckers) Takes a string of comma-separated processor names, and expands any shorthands to fully-qualified names from the fullyQualifiedCheckerNames list.
-
Field Details
-
javacJar
The path to the javacJar to use. -
checkerJar
The path to the jar containing CheckerMain.class (i.e. checker.jar). -
checkerQualJar
The path to checker-qual.jar. -
checkerUtilJar
The path to checker-util.jar. -
CHECKER_QUAL_PATH_OPT
Option name for specifying an alternative checker-qual.jar location. The accompanying value MUST be the path to the jar file (NOT the path to its encompassing directory)- See Also:
-
CHECKER_UTIL_PATH_OPT
Option name for specifying an alternative checker-util.jar location. The accompanying value MUST be the path to the jar file (NOT the path to its encompassing directory)- See Also:
-
JAVAC_PATH_OPT
Option name for specifying an alternative javac.jar location. The accompanying value MUST be the path to the jar file (NOT the path to its encompassing directory)- See Also:
-
JDK_PATH_OPT
Option name for specifying an alternative jdk.jar location. The accompanying value MUST be the path to the jar file (NOT the path to its encompassing directory)- See Also:
-
BOOT_CLASS_PATH_REGEX
A pattern to match bootclasspath prepend entries, used to construct one-Xbootclasspath/p:
command-line argument. -
JVM_OPTS_REGEX
Matches all-J
arguments. -
CHECKER_BASE_DIR_NAME
Processor shorthand is enabled for processors in this directory in checker.jar.- See Also:
-
COMMON_BASE_DIR_NAME
Processor shorthand is enabled for processors in this directory in checker.jar.- See Also:
-
-
Constructor Details
-
CheckerMain
Construct all the relevant file locations and Java version given the path to this jar and a set of directories in which to search for jars.
-
-
Method Details
-
main
Any exception thrown by the Checker Framework escapes to the command line.- Parameters:
args
- command-line arguments
-
assertValidState
protected void assertValidState()Assert that required jars exist. -
addToClasspath
-
addToProcessorpath
-
addToRuntimeClasspath
-
createRuntimeClasspath
-
createCompilationBootclasspath
Returns the compilation bootclasspath fromargsList
.- Parameters:
argsList
- args to add- Returns:
- the compilation bootclasspath from
argsList
-
createCpOpts
-
createPpOpts
Returns processor path options.This method assumes that createCpOpts has already been run.
- Parameters:
argsList
- arguments- Returns:
- processor path options
-
collectArgFiles
Return the arguments that start with @ and therefore are files that contain javac arguments.- Parameters:
args
- a list of command-line arguments; is not modified- Returns:
- a List of files representing all arguments that started with @
-
extractArg
protected static @PolyNull String extractArg(String argumentName, @PolyNull String alternative, List<String> args) Remove the argument given by argumentName and the subsequent value from the list args if present. Return the subsequent value.- Parameters:
argumentName
- a command-line option name whose argument to extractalternative
- default value to return if argumentName does not appear in argsargs
- the current list of arguments- Returns:
- the string that follows argumentName if argumentName is in args, or alternative if argumentName is not present in args
-
extractFileArg
Remove the argument given by argumentName and the subsequent value from the list args if present. Return the subsequent value wrapped as a File.- Parameters:
argumentName
- argument to extractalternative
- file to return if argumentName is not found in argsargs
- the current list of arguments- Returns:
- the string that follows argumentName wrapped as a File if argumentName is in args or alternative if argumentName is not present in args
-
extractOptWithPattern
protected static List<String> extractOptWithPattern(@Regex(1) Pattern pattern, boolean allowEmpties, List<String> args) Find all args that match the given pattern and extract their index 1 group. Add all the index 1 groups to the returned list. Remove all matching args from the input args list.- Parameters:
pattern
- a pattern with at least one matching groupallowEmpties
- whether or not to add empty group(1) matches to the returned listargs
- the arguments to extract from- Returns:
- a list of arguments from the first group that matched the pattern for each input args or the empty list if there were none
-
extractBootClassPath
Remove all-Xbootclasspath/p:
or-J-Xbootclasspath/p:
arguments from args and add them to the returned list.- Parameters:
args
- the arguments to extract from- Returns:
- all non-empty arguments matching BOOT_CLASS_PATH_REGEX or an empty list if there were none
-
extractJvmOpts
Remove all-J
arguments fromargs
and add them to the returned list (without the-J
prefix).- Parameters:
args
- the arguments to extract from- Returns:
- all
-J
arguments (without the-J
prefix) or an empty list if there were none
-
extractCpOpts
Return the last-cp
or-classpath
option. If no-cp
or-classpath
arguments were present, then return the CLASSPATH environment variable (if set) followed by the current directory.Also removes all
-cp
and-classpath
options from args.- Parameters:
args
- a list of arguments to extract from; is side-effected by this- Returns:
- collection of classpaths to concatenate to use when calling javac.jar
-
extractPpOpts
Remove the-processorpath
options and their arguments from args. Return the last argument.- Parameters:
args
- a list of arguments to extract from- Returns:
- the arguments that should be put on the processorpath when calling javac.jar
-
addMainToArgs
-
getExecArguments
Invoke the compiler with all relevant jars on its classpath and/or bootclasspath. -
invokeCompiler
public int invokeCompiler()Invoke the compiler with all relevant jars on its classpath and/or bootclasspath. -
expandArgFiles
Return all the lines in all the files.- Parameters:
files
- a list of files- Returns:
- a list of all the lines in all the files
-
findPathTo
public static String findPathTo(@Nullable Class<?> cls, boolean errIfFromDirectory) throws IllegalStateException Find the jar file or directory containing the .class file from which cls was loaded.- Parameters:
cls
- the class whose .class file we wish to locate; if null, CheckerMain.classerrIfFromDirectory
- if false, throw an exception if the file was loaded from a directory- Throws:
IllegalStateException
-
matchesCheckerOrSubcheckerFromList
public static boolean matchesCheckerOrSubcheckerFromList(String processorString, List<@FullyQualifiedName String> fullyQualifiedCheckerNames) Returns true if processorString, once transformed into fully-qualified form, is present in fullyQualifiedCheckerNames. Used by SourceChecker to determine whether a class is annotated for any processor that is being run.- Parameters:
processorString
- the name of a single processor, not a comma-separated list of processorsfullyQualifiedCheckerNames
- a list of fully-qualified checker names- Returns:
- true if the fully-qualified version of
processorString
is infullyQualifiedCheckerNames
-
replaceShorthandProcessor
For every "-processor" argument in args, replace its immediate successor argument using unabbreviateProcessorNames. -
unshorthandProcessorNames
protected static String unshorthandProcessorNames(String processorsString, List<@FullyQualifiedName String> fullyQualifiedCheckerNames, boolean allowSubcheckers) Takes a string of comma-separated processor names, and expands any shorthands to fully-qualified names from the fullyQualifiedCheckerNames list. For example:NullnessChecker → org.checkerframework.checker.nullness.NullnessChecker nullness → org.checkerframework.checker.nullness.NullnessChecker NullnessChecker,RegexChecker → org.checkerframework.checker.nullness.NullnessChecker,org.checkerframework.checker.regex.RegexChecker
Note, a processor entry only gets replaced if it contains NO "." (i.e., it is not qualified by a package name) and can be found under the package org.checkerframework.checker in checker.jar.- Parameters:
processorsString
- a comma-separated string identifying processors; often just one processorfullyQualifiedCheckerNames
- a list of fully-qualified checker names to match processorsString againstallowSubcheckers
- whether to match against fully qualified checker names ending with "Subchecker"- Returns:
- processorsString where all shorthand references to Checker Framework built-in checkers are replaced with fully-qualified references
-
matchesFullyQualifiedProcessor
public static boolean matchesFullyQualifiedProcessor(String processorName, List<@FullyQualifiedName String> fullyQualifiedCheckerNames, boolean allowSubcheckers) Given a shorthand processor name, returns true if it can be expanded to a checker in the fullyQualifiedCheckerNames list.- Parameters:
processorName
- a string identifying one processorfullyQualifiedCheckerNames
- a list of fully-qualified checker names to match processorName againstallowSubcheckers
- whether to match against fully qualified checker names ending with "Subchecker"- Returns:
- true if the shorthand processor name can be expanded to a checker in
fullyQualifiedCheckerNames
-