org.gradle.execution.TaskNameResolvingBuildTaskScheduler 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 2010 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;
import org.gradle.TaskExecutionRequest;
import org.gradle.api.NonNullApi;
import org.gradle.api.internal.GradleInternal;
import org.gradle.execution.commandline.CommandLineTaskParser;
import org.gradle.execution.plan.ExecutionPlan;
import org.gradle.execution.selection.BuildTaskSelector;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.annotation.Nullable;
import java.util.List;
/**
* A {@link BuildTaskScheduler} which selects tasks which match the provided names. For each name, selects all tasks in all
* projects whose name is the given name.
*/
public class TaskNameResolvingBuildTaskScheduler implements BuildTaskScheduler {
private static final Logger LOGGER = LoggerFactory.getLogger(TaskNameResolvingBuildTaskScheduler.class);
private final CommandLineTaskParser commandLineTaskParser;
private final BuildTaskSelector.BuildSpecificSelector taskSelector;
public TaskNameResolvingBuildTaskScheduler(CommandLineTaskParser commandLineTaskParser, BuildTaskSelector.BuildSpecificSelector taskSelector) {
this.commandLineTaskParser = commandLineTaskParser;
this.taskSelector = taskSelector;
}
@Override
public void scheduleRequestedTasks(GradleInternal gradle, @Nullable EntryTaskSelector selector, ExecutionPlan plan) {
if (selector != null) {
selector.applyTasksTo(new EntryTaskSelectorContext(gradle), plan);
}
List taskParameters = gradle.getStartParameter().getTaskRequests();
for (TaskExecutionRequest taskParameter : taskParameters) {
List taskSelections = commandLineTaskParser.parseTasks(taskParameter);
for (TaskSelection taskSelection : taskSelections) {
LOGGER.info("Selected primary task '{}' from project {}", taskSelection.getTaskName(), taskSelection.getProjectPath());
plan.addEntryTasks(taskSelection.getTasks());
}
}
}
@NonNullApi
private class EntryTaskSelectorContext implements EntryTaskSelector.Context {
final GradleInternal gradle;
public EntryTaskSelectorContext(GradleInternal gradle) {
this.gradle = gradle;
}
@Override
public TaskSelection getSelection(String taskPath) {
return taskSelector.resolveTaskName(taskPath);
}
@Override
public GradleInternal getGradle() {
return gradle;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy