Interface IncrementalTaskInputs
An incremental task action is one that accepts a single IncrementalTaskInputs parameter.
The task can then provide an action to execute for all input files that are out of date with respect to the previous execution of the task,
and a separate action for all input files that have been removed since the previous execution.
class IncrementalReverseTask extends DefaultTask {
@InputDirectory
def File inputDir
@OutputDirectory
def File outputDir
@TaskAction
void execute(IncrementalTaskInputs inputs) {
if (!inputs.incremental)
project.delete(outputDir.listFiles())
inputs.outOfDate { change ->
def targetFile = project.file("$outputDir/${change.file.name}")
targetFile.text = change.file.text.reverse()
}
inputs.removed { change ->
def targetFile = project.file("$outputDir/${change.file.name}")
if (targetFile.exists()) {
targetFile.delete()
}
}
}
}
In the case where Gradle is unable to determine which input files need to be reprocessed, then all of the input files will be reported as outOfDate(Action).
Cases where this occurs include:
- There is no history available from a previous execution.
- An
TaskOutputs.upToDateWhen(groovy.lang.Closure)criteria added to the task returnsfalse. - An
Inputproperty has changed since the previous execution. - One or more output files have changed since the previous execution.
outOfDate(Action)andremoved(Action)can each only be executed a single time perIncrementalTaskInputsinstance.outOfDate(Action)must be executed beforeremoved(Action)is called.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates if it was possible for Gradle to determine which exactly input files were out of date compared to a previous execution.voidoutOfDate(Action<? super InputFileDetails> outOfDateAction) Executes the action for all of the input files that are out-of-date since the previous task execution.voidremoved(Action<? super InputFileDetails> removedAction) Executes the action for all of the input files that were removed since the previous task execution.
-
Method Details
-
isIncremental
boolean isIncremental()Indicates if it was possible for Gradle to determine which exactly input files were out of date compared to a previous execution. This is not possible in the case of no previous execution, changed input properties, output files, etc.When
true:- Any input file that has been added or modified since previous execution will be considered 'out-of-date' and reported to
outOfDate(Action). - Any input files that has been removed since previous execution will be reported to
removed(Action).
When
false:- Every input file will be considered to be 'out-of-date' and will be reported to
outOfDate(Action). - No input files will be reported to
removed(Action).
- Any input file that has been added or modified since previous execution will be considered 'out-of-date' and reported to
-
outOfDate
Executes the action for all of the input files that are out-of-date since the previous task execution. The action may also be supplied as aClosure.- When
isIncremental()==true, the action will be executed for any added or modified input file. - When
isIncremental()==false, the action will be executed for every input file for the task.
This method may only be called a single time for a single
IncrementalTaskInputsinstance.- Throws:
IllegalStateException- on second and subsequent invocations.
- When
-
removed
Executes the action for all of the input files that were removed since the previous task execution. The action may also be supplied as aClosure.- When
isIncremental()==true, the action will be executed for any removed input file. - When
isIncremental()==false, the action will not be executed.
This method may only be called a single time for a single
IncrementalTaskInputsinstance.This method may only be called after
outOfDate(Action)has been called.- Throws:
IllegalStateException- if invoked prior tooutOfDate(Action), or if invoked more than once.
- When
-