org.gradle.api.internal.tasks.execution.ResolveIncrementalChangesTaskExecuter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.api.internal.tasks.execution;
import org.gradle.api.Describable;
import org.gradle.api.internal.TaskInternal;
import org.gradle.api.internal.tasks.TaskExecuter;
import org.gradle.api.internal.tasks.TaskExecuterResult;
import org.gradle.api.internal.tasks.TaskExecutionContext;
import org.gradle.api.internal.tasks.TaskStateInternal;
import org.gradle.internal.change.Change;
import org.gradle.internal.change.ChangeVisitor;
import org.gradle.internal.change.DescriptiveChange;
import org.gradle.internal.execution.history.AfterPreviousExecutionState;
import org.gradle.internal.execution.history.BeforeExecutionState;
import org.gradle.internal.execution.history.changes.DefaultExecutionStateChanges;
import org.gradle.internal.execution.history.changes.ExecutionStateChanges;
import javax.annotation.Nullable;
import java.util.function.Function;
import java.util.function.Supplier;
/**
* Resolves the incremental changes to pass to the task actions.
*
* @see org.gradle.api.tasks.incremental.IncrementalTaskInputs
*/
public class ResolveIncrementalChangesTaskExecuter implements TaskExecuter {
private final TaskExecuter delegate;
public ResolveIncrementalChangesTaskExecuter(TaskExecuter delegate) {
this.delegate = delegate;
}
@Override
public TaskExecuterResult execute(final TaskInternal task, TaskStateInternal state, final TaskExecutionContext context) {
ExecutionStateChanges changes = context.getTaskExecutionMode().getRebuildReason()
.map(new Function() {
@Override
public ExecutionStateChanges apply(String rebuildReason) {
return new RebuildExecutionStateChanges(rebuildReason);
}
}).orElseGet(new Supplier() {
@Nullable
@Override
public ExecutionStateChanges get() {
final AfterPreviousExecutionState afterPreviousExecution = context.getAfterPreviousExecution();
if (afterPreviousExecution == null || context.isOutputRemovedBeforeExecution()) {
return null;
} else {
// TODO We need a nicer describable wrapper around task here
return context.getBeforeExecutionState().map(new Function() {
@Override
public ExecutionStateChanges apply(BeforeExecutionState beforeExecution) {
return new DefaultExecutionStateChanges(afterPreviousExecution, beforeExecution, new Describable() {
@Override
public String getDisplayName() {
// The value is cached, so we should be okay to call this many times
return task.toString();
}
});
}
}).orElse(null);
}
}
});
context.setExecutionStateChanges(changes);
return delegate.execute(task, state, context);
}
private static class RebuildExecutionStateChanges implements ExecutionStateChanges {
private final Change rebuildChange;
public RebuildExecutionStateChanges(String rebuildReason) {
this.rebuildChange = new DescriptiveChange(rebuildReason);
}
@Override
public Iterable getInputFilesChanges() {
throw new UnsupportedOperationException();
}
@Override
public void visitAllChanges(ChangeVisitor visitor) {
visitor.visitChange(rebuildChange);
}
@Override
public boolean isRebuildRequired() {
return true;
}
@Override
public AfterPreviousExecutionState getPreviousExecution() {
throw new UnsupportedOperationException();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy