org.gradle.execution.plan.QueryableExecutionPlan 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 2022 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.execution.plan;
import org.gradle.api.Task;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import java.util.function.BiConsumer;
/**
* An execution plan that has been finalized and can no longer be mutated.
*
* Implementations may or may not be thread-safe.
*/
public interface QueryableExecutionPlan {
QueryableExecutionPlan EMPTY = new QueryableExecutionPlan() {
@Override
public Set getTasks() {
return Collections.emptySet();
}
@Override
public Set getRequestedTasks() {
return Collections.emptySet();
}
@Override
public Set getFilteredTasks() {
return Collections.emptySet();
}
@Override
public int size() {
return 0;
}
@Override
public ScheduledNodes getScheduledNodes() {
return visitor -> visitor.accept(Collections.emptyList(), Collections.emptySet());
}
@Override
public TaskNode getNode(Task task) {
throw new IllegalStateException();
}
};
/**
* @return The set of all available tasks. This includes tasks that have not yet been executed, as well as tasks that have been processed.
*/
Set getTasks();
/**
* Returns a snapshot of the requested tasks for this plan.
*/
Set getRequestedTasks();
/**
* Returns a snapshot of the filtered tasks for this plan.
*/
Set getFilteredTasks();
/**
* Returns a snapshot of the current set of scheduled nodes, which can later be visited.
*/
ScheduledNodes getScheduledNodes();
/**
* Returns the node for the supplied task that is part of this execution plan.
*
* @throws IllegalStateException When no node for the supplied task is part of this execution plan.
*/
TaskNode getNode(Task task);
/**
* Returns the number of work items in the plan.
*/
int size();
/**
* An immutable snapshot of the set of scheduled nodes.
*/
interface ScheduledNodes {
/**
* Invokes the consumer with the list of scheduled nodes and the set of entry nodes. Entry nodes may not be a subset of scheduled nodes.
*
* @param visitor the consumer of nodes and entry nodes
*/
void visitNodes(BiConsumer, Set> visitor);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy