Class AntlrTask
java.lang.Object
org.gradle.api.internal.AbstractTask
org.gradle.api.DefaultTask
org.gradle.api.internal.ConventionTask
org.gradle.api.tasks.SourceTask
org.gradle.api.plugins.antlr.AntlrTask
- All Implemented Interfaces:
Comparable<Task>, org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.IConventionAware, org.gradle.api.internal.TaskInternal, ExtensionAware, Task, PatternFilterable, org.gradle.util.Configurable<Task>
Generates parsers from Antlr grammars.
-
Nested Class Summary
Nested classes/interfaces inherited from interface Task
Task.Namer -
Field Summary
Fields inherited from class SourceTask
sourceFields inherited from interface Task
TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(IncrementalTaskInputs inputs) Returns the classpath containing the Ant ANTLR task implementation.List of command-line arguments passed to the antlr processThe maximum heap size for the forked antlr process (ex: '1g').Returns the directory to generate the parser source files into.Returns the source for this task, after the include and exclude patterns have been applied.protected org.gradle.process.internal.worker.WorkerProcessFactorybooleanisTrace()Specifies that all rules calltraceIn/traceOut.booleanSpecifies that all lexer rules calltraceIn/traceOut.booleanSpecifies that all parser rules calltraceIn/traceOut.booleanSpecifies that all tree walker rules calltraceIn/traceOut.protected voidsetAntlrClasspath(FileCollection antlrClasspath) Specifies the classpath containing the Ant ANTLR task implementation.voidsetArguments(List<String> arguments) voidsetMaxHeapSize(String maxHeapSize) voidsetOutputDirectory(File outputDirectory) Specifies the directory to generate the parser source files into.voidSets the source for this task.voidSets the source for this task.voidsetTrace(boolean trace) voidsetTraceLexer(boolean traceLexer) voidsetTraceParser(boolean traceParser) voidsetTraceTreeWalker(boolean traceTreeWalker) Methods inherited from class SourceTask
exclude, exclude, exclude, exclude, getExcludes, getIncludes, getPatternSetFactory, include, include, include, include, setExcludes, setIncludes, sourceMethods inherited from class org.gradle.api.internal.ConventionTask
conventionMapping, conventionMapping, getConventionMappingMethods inherited from class DefaultTask
newInputDirectory, newInputFile, newOutputDirectory, newOutputFileMethods inherited from class org.gradle.api.internal.AbstractTask
addValidator, appendParallelSafeAction, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, doFirst, doFirst, doFirst, doLast, doLast, doLast, execute, finalizedBy, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExecuter, getExtensions, getFinalizedBy, getGroup, getIdentityPath, getImpliesSubProjects, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTemporaryDir, getTemporaryDirFactory, getValidators, hasProperty, injectIntoNewInstance, isEnabled, isHasCustomActions, leftShift, mustRunAfter, onlyIf, onlyIf, prependParallelSafeAction, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setFinalizedBy, setGroup, setImpliesSubProjects, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, toString
-
Constructor Details
-
AntlrTask
public AntlrTask()
-
-
Method Details
-
isTrace
Specifies that all rules calltraceIn/traceOut. -
setTrace
public void setTrace(boolean trace) -
isTraceLexer
Specifies that all lexer rules calltraceIn/traceOut. -
setTraceLexer
public void setTraceLexer(boolean traceLexer) -
isTraceParser
Specifies that all parser rules calltraceIn/traceOut. -
setTraceParser
public void setTraceParser(boolean traceParser) -
isTraceTreeWalker
Specifies that all tree walker rules calltraceIn/traceOut. -
setTraceTreeWalker
public void setTraceTreeWalker(boolean traceTreeWalker) -
getMaxHeapSize
-
setMaxHeapSize
-
setArguments
-
getArguments
-
getOutputDirectory
Returns the directory to generate the parser source files into.- Returns:
- The output directory.
-
setOutputDirectory
Specifies the directory to generate the parser source files into.- Parameters:
outputDirectory- The output directory. Must not be null.
-
getAntlrClasspath
Returns the classpath containing the Ant ANTLR task implementation.- Returns:
- The Ant task implementation classpath.
-
setAntlrClasspath
Specifies the classpath containing the Ant ANTLR task implementation.- Parameters:
antlrClasspath- The Ant task implementation classpath. Must not be null.
-
getWorkerProcessBuilderFactory
@Inject protected org.gradle.process.internal.worker.WorkerProcessFactory getWorkerProcessBuilderFactory() -
execute
-
setSource
Sets the source for this task. Delegates tosetSource(Object). If the source is of typeSourceDirectorySet, then the relative path of each source grammar files is used to determine the relative output path of the generated source If the source is not of typeSourceDirectorySet, then the generated source files end up flattened in the specified output directory.- Overrides:
setSourcein classSourceTask- Parameters:
source- The source.- Since:
- 4.0
-
setSource
Sets the source for this task. Delegates toSourceTask.setSource(Object). If the source is of typeSourceDirectorySet, then the relative path of each source grammar files is used to determine the relative output path of the generated source If the source is not of typeSourceDirectorySet, then the generated source files end up flattened in the specified output directory.- Overrides:
setSourcein classSourceTask- Parameters:
source- The source.
-
getSource
Returns the source for this task, after the include and exclude patterns have been applied. Ignores source files which do not exist.- Overrides:
getSourcein classSourceTask- Returns:
- The source.
-