Package org.codehaus.groovy.control
Class CompilerConfiguration
java.lang.Object
org.codehaus.groovy.control.CompilerConfiguration
Compilation control flags and coordination stuff.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String[]
The valid targetBytecode values.static final int
The ASM API version used when loading/parsing classes and generating proxy adapter classes.static final CompilerConfiguration
A convenience for getting a default configuration.static final String
The default source encoding.static final String
static final String
Optimization Option for enabling attaching groovydoc as AST node metadata.static final String
Optimization Option for enablinginvokedynamic
compilation.JDK version to bytecode version mapping.static final String
This ("10"
) is the value for targetBytecode to compile for a JDK 10.static final String
This ("11"
) is the value for targetBytecode to compile for a JDK 11.static final String
This ("12"
) is the value for targetBytecode to compile for a JDK 12.static final String
This ("13"
) is the value for targetBytecode to compile for a JDK 13.static final String
This ("14"
) is the value for targetBytecode to compile for a JDK 14.static final String
This ("15"
) is the value for targetBytecode to compile for a JDK 15.static final String
This ("16"
) is the value for targetBytecode to compile for a JDK 16.static final String
This ("17"
) is the value for targetBytecode to compile for a JDK 17.static final String
This ("18"
) is the value for targetBytecode to compile for a JDK 18.static final String
This ("19"
) is the value for targetBytecode to compile for a JDK 19.static final String
This ("20"
) is the value for targetBytecode to compile for a JDK 20.static final String
This ("21"
) is the value for targetBytecode to compile for a JDK 21.static final String
This ("1.4"
) is the value for targetBytecode to compile for a JDK 1.4.static final String
This ("1.5"
) is the value for targetBytecode to compile for a JDK 1.5.static final String
This ("1.6"
) is the value for targetBytecode to compile for a JDK 1.6.static final String
This ("1.7"
) is the value for targetBytecode to compile for a JDK 1.7.static final String
This ("1.8"
) is the value for targetBytecode to compile for a JDK 1.8.static final String
This ("9"
) is the value for targetBytecode to compile for a JDK 9.static final String
Joint Compilation Option for enabling generating stubs in memory.static final String
Optimization Option for enabling parallel parsing.static final String
Deprecated.static final String
Deprecated.static final String
Optimization Option for enabling attachingGroovydoc
annotation. -
Constructor Summary
ConstructorDescriptionSets the compiler flags/settings to default values.CompilerConfiguration
(Properties configuration) Sets the configuration flags/settings according to values from the suppliedProperties
instance or if not found, supplying a default value.CompilerConfiguration
(CompilerConfiguration configuration) Copy constructor. -
Method Summary
Modifier and TypeMethodDescriptionaddCompilationCustomizers
(CompilationCustomizer... customizers) Adds compilation customizers to the compilation process.void
configure
(Properties configuration) Method to configure a CompilerConfiguration by using Properties.int
Returns the ASM bytecode version.Returns the list of compilation customizers.boolean
getDebug()
Returns true if debugging operation has been requested.Returns the list of disabled global AST transformation class names.Gets the joint compilation options for this configuration.int
Returns stack trace max depth of logging class generation.int
Gets the optimization options for this configuration.Deprecated.not used anymoreboolean
Returns true if parameter metadata generation has been enabled.boolean
Gets the name of the base class for scripts.Gets the currently configured source file encoding.Retrieves the compiler bytecode compatibility level.Gets the target directory for writing classes.int
Returns the requested error tolerance.boolean
Returns true if verbose operation has been requested.int
Gets the currently configured warning level.boolean
Checks if groovydoc is enabled.boolean
Checks if invoke dynamic is enabled.boolean
Returns whether logging class generation is enabled.static boolean
isPostJDK10
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 10+ compatible bytecode version.static boolean
isPostJDK11
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 11+ compatible bytecode version.static boolean
isPostJDK12
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 12+ compatible bytecode version.static boolean
isPostJDK13
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 13+ compatible bytecode version.static boolean
isPostJDK14
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 14+ compatible bytecode version.static boolean
isPostJDK15
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 15+ compatible bytecode version.static boolean
isPostJDK16
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 16+ compatible bytecode version.static boolean
isPostJDK17
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 17+ compatible bytecode version.static boolean
isPostJDK18
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 18+ compatible bytecode version.static boolean
isPostJDK5
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 1.5+ compatible bytecode version.static boolean
isPostJDK7
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 1.7+ compatible bytecode version.static boolean
isPostJDK8
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 1.8+ compatible bytecode version.static boolean
isPostJDK9
(String bytecodeVersion) Checks if the specified bytecode version string represents a JDK 9+ compatible bytecode version.boolean
Whether the bytecode version has preview features enabled (JEP 12)boolean
Checks if runtime groovydoc is enabled.void
setBytecodePostprocessor
(BytecodeProcessor bytecodePostprocessor) void
setClasspath
(String classpath) Sets the classpath.void
setClasspathList
(List<String> parts) sets the classpath using a list of Stringsvoid
setDebug
(boolean debug) Turns debugging operation on or off.void
setDefaultScriptExtension
(String defaultScriptExtension) void
setDisabledGlobalASTTransformations
(Set<String> disabledGlobalASTTransformations) Disables the specified global AST transformations.void
setJointCompilationOptions
(Map<String, Object> options) Sets the joint compilation options for this configuration.void
setLogClassgen
(boolean logClassgen) Sets whether logging class generation is enabled.void
setLogClassgenStackTraceMaxDepth
(int logClassgenStackTraceMaxDepth) Sets stack trace max depth of logging class generation.void
setMinimumRecompilationInterval
(int time) void
setOptimizationOptions
(Map<String, Boolean> options) Sets the optimization options for this configuration.void
setOutput
(PrintWriter output) Deprecated.not used anymore, has no effectvoid
setParameters
(boolean parameters) Turns parameter metadata generation on or off.void
setPluginFactory
(ParserPluginFactory pluginFactory) void
setPreviewFeatures
(boolean previewFeatures) Sets whether the bytecode version has preview features enabled (JEP 12).void
setRecompileGroovySource
(boolean recompile) void
setScriptBaseClass
(String scriptBaseClass) Sets the name of the base class for scripts.void
setScriptExtensions
(Set<String> scriptExtensions) void
setSourceEncoding
(String encoding) Sets the encoding to be used when reading source files.void
setTargetBytecode
(String version) Sets the bytecode compatibility level.void
setTargetDirectory
(File directory) Sets the target directory.void
setTargetDirectory
(String directory) Sets the target directory.void
setTolerance
(int tolerance) Sets the error tolerance, which is the number of non-fatal errors (per unit) that should be tolerated before compilation is aborted.void
setVerbose
(boolean verbose) Turns verbose operation on or off.void
setWarningLevel
(int level) Sets the warning level.
-
Field Details
-
INVOKEDYNAMIC
Optimization Option for enablinginvokedynamic
compilation.- See Also:
-
GROOVYDOC
Optimization Option for enabling attaching groovydoc as AST node metadata.- See Also:
-
RUNTIME_GROOVYDOC
Optimization Option for enabling attachingGroovydoc
annotation.- See Also:
-
PARALLEL_PARSE
Optimization Option for enabling parallel parsing.- See Also:
-
MEM_STUB
Joint Compilation Option for enabling generating stubs in memory.- See Also:
-
JDK4
This ("1.4"
) is the value for targetBytecode to compile for a JDK 1.4.- See Also:
-
JDK5
This ("1.5"
) is the value for targetBytecode to compile for a JDK 1.5.- See Also:
-
JDK6
This ("1.6"
) is the value for targetBytecode to compile for a JDK 1.6.- See Also:
-
JDK7
This ("1.7"
) is the value for targetBytecode to compile for a JDK 1.7.- See Also:
-
JDK8
This ("1.8"
) is the value for targetBytecode to compile for a JDK 1.8.- See Also:
-
JDK9
This ("9"
) is the value for targetBytecode to compile for a JDK 9.- See Also:
-
JDK10
This ("10"
) is the value for targetBytecode to compile for a JDK 10.- See Also:
-
JDK11
This ("11"
) is the value for targetBytecode to compile for a JDK 11.- See Also:
-
JDK12
This ("12"
) is the value for targetBytecode to compile for a JDK 12.- See Also:
-
JDK13
This ("13"
) is the value for targetBytecode to compile for a JDK 13.- See Also:
-
JDK14
This ("14"
) is the value for targetBytecode to compile for a JDK 14.- See Also:
-
JDK15
This ("15"
) is the value for targetBytecode to compile for a JDK 15.- See Also:
-
JDK16
This ("16"
) is the value for targetBytecode to compile for a JDK 16.- See Also:
-
JDK17
This ("17"
) is the value for targetBytecode to compile for a JDK 17.- See Also:
-
JDK18
This ("18"
) is the value for targetBytecode to compile for a JDK 18.- See Also:
-
JDK19
This ("19"
) is the value for targetBytecode to compile for a JDK 19.- See Also:
-
JDK20
This ("20"
) is the value for targetBytecode to compile for a JDK 20.- See Also:
-
JDK21
This ("21"
) is the value for targetBytecode to compile for a JDK 21.- See Also:
-
POST_JDK5
Deprecated.This constant is for comparing targetBytecode to ensure it is set to JDK 1.5 or later.- See Also:
-
PRE_JDK5
Deprecated.This constant is for comparing targetBytecode to ensure it is set to an earlier value than JDK 1.5.- See Also:
-
JDK_TO_BYTECODE_VERSION_MAP
JDK version to bytecode version mapping. -
DEFAULT_TARGET_BYTECODE
-
ALLOWED_JDKS
The valid targetBytecode values. -
ASM_API_VERSION
public static final int ASM_API_VERSIONThe ASM API version used when loading/parsing classes and generating proxy adapter classes.- See Also:
-
DEFAULT_SOURCE_ENCODING
The default source encoding.- See Also:
-
DEFAULT
A convenience for getting a default configuration. Do not modify it! SeeCompilerConfiguration(Properties)
for an example on how to make a suitable copy to modify. But if you're really starting from a default context, then you probably just wantnew CompilerConfiguration()
.
-
-
Constructor Details
-
CompilerConfiguration
public CompilerConfiguration()Sets the compiler flags/settings to default values. The following system properties are referenced when setting the configuration:Property Key Related Property Getter groovy.source.encoding
(defaulting tofile.encoding
)getSourceEncoding()
groovy.target.bytecode
getTargetBytecode()
groovy.target.directory
getTargetDirectory()
groovy.parameters
getParameters()
groovy.preview.features
isPreviewFeatures()
groovy.default.scriptExtension
getDefaultScriptExtension()
Property Key Related Property Getter groovy.target.indy
getOptimizationOptions()
groovy.parallel.parse
getOptimizationOptions()
groovy.attach.groovydoc
getOptimizationOptions()
groovy.attach.runtime.groovydoc
getOptimizationOptions()
-
CompilerConfiguration
Copy constructor. Use this if you have a mostly correct configuration for your compilation but you want to make a some changes programmatically. An important reason to prefer this approach is that your code will most likely be forward compatible with future changes to this configuration API.An example of this copy constructor at work:
// In all likelihood there is already a configuration in your code's context // for you to copy, but for the sake of this example we'll use the global default. CompilerConfiguration myConfiguration = new CompilerConfiguration(CompilerConfiguration.DEFAULT); myConfiguration.setDebug(true);
- Parameters:
configuration
- The configuration to copy.
-
CompilerConfiguration
Sets the configuration flags/settings according to values from the suppliedProperties
instance or if not found, supplying a default value. Note that unlikeCompilerConfiguration()
, the "defaults" here do not in general include checking the settings inSystem.getProperties()
. If you want to set a few flags but keep Groovy's default configuration behavior then be sure to make your settings in aProperties
object that is backed bySystem.getProperties()
(which is done using this constructor). That might be done like this:
And you also have to contend with a possibleProperties myProperties = new Properties(System.getProperties()); myProperties.setProperty("groovy.output.debug", "true"); myConfiguration = new CompilerConfiguration(myProperties);
SecurityException
when getting the system properties (SeeSystem.getProperties()
). A safer approach would be to copy a defaultCompilerConfiguration
and make your changes there using the setter:
The following properties are referenced when setting the configuration:// In all likelihood there is already a configuration for you to copy, // but for the sake of this example we'll use the global default. CompilerConfiguration myConfiguration = new CompilerConfiguration(CompilerConfiguration.DEFAULT); myConfiguration.setDebug(true);
Property Key Related Property Getter groovy.warnings
getWarningLevel()
groovy.source.encoding
(defaulting tofile.encoding
)getSourceEncoding()
groovy.target.directory
getTargetDirectory()
groovy.target.bytecode
getTargetBytecode()
groovy.parameters
getParameters()
groovy.preview.features
isPreviewFeatures()
groovy.classpath
getClasspath()
groovy.output.verbose
getVerbose()
groovy.output.debug
getDebug()
groovy.errors.tolerance
getTolerance()
groovy.default.scriptExtension
getDefaultScriptExtension()
groovy.script.base
getScriptBaseClass()
groovy.recompile
getRecompileGroovySource()
groovy.recompile.minimumInterval
getMinimumRecompilationInterval()
groovy.disabled.global.ast.transformations
getDisabledGlobalASTTransformations()
- Parameters:
configuration
- The properties to get flag values from.- Throws:
ConfigurationException
-
-
Method Details
-
isPostJDK5
Checks if the specified bytecode version string represents a JDK 1.5+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 1.5+
-
isPostJDK7
Checks if the specified bytecode version string represents a JDK 1.7+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 1.7+
-
isPostJDK8
Checks if the specified bytecode version string represents a JDK 1.8+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 1.8+
-
isPostJDK9
Checks if the specified bytecode version string represents a JDK 9+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 9+
-
isPostJDK10
Checks if the specified bytecode version string represents a JDK 10+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 10+
-
isPostJDK11
Checks if the specified bytecode version string represents a JDK 11+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 11+
-
isPostJDK12
Checks if the specified bytecode version string represents a JDK 12+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 12+
-
isPostJDK13
Checks if the specified bytecode version string represents a JDK 13+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 13+
-
isPostJDK14
Checks if the specified bytecode version string represents a JDK 14+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 14+
-
isPostJDK15
Checks if the specified bytecode version string represents a JDK 15+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 15+
-
isPostJDK16
Checks if the specified bytecode version string represents a JDK 16+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 16+
-
isPostJDK17
Checks if the specified bytecode version string represents a JDK 17+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 17+
-
isPostJDK18
Checks if the specified bytecode version string represents a JDK 18+ compatible bytecode version.- Parameters:
bytecodeVersion
- The parameter can take one of the values inALLOWED_JDKS
.- Returns:
- true if the bytecode version is JDK 18+
-
configure
Method to configure a CompilerConfiguration by using Properties. For a list of available properties look atCompilerConfiguration(Properties)
.- Parameters:
configuration
- The properties to get flag values from.- Throws:
ConfigurationException
-
getWarningLevel
public int getWarningLevel()Gets the currently configured warning level. SeeWarningMessage
for level details. -
setWarningLevel
public void setWarningLevel(int level) Sets the warning level. SeeWarningMessage
for level details. -
getSourceEncoding
Gets the currently configured source file encoding. -
setSourceEncoding
Sets the encoding to be used when reading source files. -
getOutput
Deprecated.not used anymoreGets the currently configured output writer. -
setOutput
Deprecated.not used anymore, has no effectSets the output writer. -
getTargetDirectory
Gets the target directory for writing classes. -
setTargetDirectory
Sets the target directory. -
setTargetDirectory
Sets the target directory. -
getClasspath
- Returns:
- the classpath
-
setClasspath
Sets the classpath. -
setClasspathList
sets the classpath using a list of Strings- Parameters:
parts
- list of strings containing the classpath parts
-
getVerbose
public boolean getVerbose()Returns true if verbose operation has been requested. -
setVerbose
public void setVerbose(boolean verbose) Turns verbose operation on or off. -
getDebug
public boolean getDebug()Returns true if debugging operation has been requested. -
setDebug
public void setDebug(boolean debug) Turns debugging operation on or off. -
getParameters
public boolean getParameters()Returns true if parameter metadata generation has been enabled. -
setParameters
public void setParameters(boolean parameters) Turns parameter metadata generation on or off. -
getTolerance
public int getTolerance()Returns the requested error tolerance. -
setTolerance
public void setTolerance(int tolerance) Sets the error tolerance, which is the number of non-fatal errors (per unit) that should be tolerated before compilation is aborted. -
getScriptBaseClass
Gets the name of the base class for scripts. It must be a subclass of Script. -
setScriptBaseClass
Sets the name of the base class for scripts. It must be a subclass of Script. -
getPluginFactory
-
setPluginFactory
-
setScriptExtensions
-
getScriptExtensions
-
getDefaultScriptExtension
-
setDefaultScriptExtension
-
getRecompileGroovySource
public boolean getRecompileGroovySource() -
setRecompileGroovySource
public void setRecompileGroovySource(boolean recompile) -
getMinimumRecompilationInterval
public int getMinimumRecompilationInterval() -
setMinimumRecompilationInterval
public void setMinimumRecompilationInterval(int time) -
setTargetBytecode
Sets the bytecode compatibility level. The parameter can take one of the values inALLOWED_JDKS
.- Parameters:
version
- the bytecode compatibility level
-
getTargetBytecode
Retrieves the compiler bytecode compatibility level. Defaults to the minimum officially supported bytecode version for any particular Groovy version.- Returns:
- bytecode compatibility level
-
getBytecodeVersion
public int getBytecodeVersion()Returns the ASM bytecode version.- Since:
- 4.0.0
-
isPreviewFeatures
public boolean isPreviewFeatures()Whether the bytecode version has preview features enabled (JEP 12)- Returns:
- preview features
-
setPreviewFeatures
public void setPreviewFeatures(boolean previewFeatures) Sets whether the bytecode version has preview features enabled (JEP 12).- Parameters:
previewFeatures
- whether to support preview features
-
isLogClassgen
public boolean isLogClassgen()Returns whether logging class generation is enabled.- Since:
- 4.0.0
-
setLogClassgen
public void setLogClassgen(boolean logClassgen) Sets whether logging class generation is enabled.- Since:
- 4.0.0
-
getLogClassgenStackTraceMaxDepth
public int getLogClassgenStackTraceMaxDepth()Returns stack trace max depth of logging class generation.- Since:
- 4.0.0
-
setLogClassgenStackTraceMaxDepth
public void setLogClassgenStackTraceMaxDepth(int logClassgenStackTraceMaxDepth) Sets stack trace max depth of logging class generation.- Since:
- 4.0.0
-
getJointCompilationOptions
Gets the joint compilation options for this configuration.- Returns:
- the options
-
setJointCompilationOptions
Sets the joint compilation options for this configuration. Using null will disable joint compilation.- Parameters:
options
- the options
-
getOptimizationOptions
Gets the optimization options for this configuration.- Returns:
- the options (always not null)
-
setOptimizationOptions
Sets the optimization options for this configuration. No entry or a true for that entry means to enable that optimization, a false means the optimization is disabled. Valid keys are "all" and "int".- Parameters:
options
- the options.- Throws:
IllegalArgumentException
- if the options are null
-
addCompilationCustomizers
Adds compilation customizers to the compilation process. A compilation customizer is a class node operation which performs various operations going from adding imports to access control.- Parameters:
customizers
- the list of customizers to be added- Returns:
- this configuration instance
-
getCompilationCustomizers
Returns the list of compilation customizers.- Returns:
- the customizers (always not null)
-
getDisabledGlobalASTTransformations
Returns the list of disabled global AST transformation class names.- Returns:
- a list of global AST transformation fully qualified class names
-
setDisabledGlobalASTTransformations
Disables the specified global AST transformations. In order to avoid class loading side effects, it is not recommended to use MyASTTransformation.class.getName() but instead directly use the class name as a string. Disabled AST transformations only apply to automatically loaded global AST transformations, that is to say transformations defined in a META-INF/services/org.codehaus.groovy.transform.ASTTransformation file. If you explicitly add a global AST transformation in your compilation process, for example using theASTTransformationCustomizer
or using aCompilationUnit.IPrimaryClassNodeOperation
, then nothing will prevent the transformation from being loaded.- Parameters:
disabledGlobalASTTransformations
- a set of fully qualified class names of global AST transformations which should not be loaded.
-
getBytecodePostprocessor
-
setBytecodePostprocessor
-
isIndyEnabled
public boolean isIndyEnabled()Checks if invoke dynamic is enabled. -
isGroovydocEnabled
public boolean isGroovydocEnabled()Checks if groovydoc is enabled. -
isRuntimeGroovydocEnabled
public boolean isRuntimeGroovydocEnabled()Checks if runtime groovydoc is enabled.
-