
org.gradle.api.internal.tasks.DefaultTaskInputs 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.api.internal.tasks;
import com.google.common.collect.ImmutableSortedSet;
import com.google.common.collect.Lists;
import groovy.lang.GString;
import org.gradle.api.Describable;
import org.gradle.api.InvalidUserDataException;
import org.gradle.api.file.FileCollection;
import org.gradle.api.internal.TaskInputsInternal;
import org.gradle.api.internal.TaskInternal;
import org.gradle.api.internal.file.CompositeFileCollection;
import org.gradle.api.internal.file.FileResolver;
import org.gradle.api.internal.file.collections.FileCollectionResolveContext;
import org.gradle.api.tasks.TaskInputs;
import org.gradle.util.DeprecationLogger;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
import static org.gradle.api.internal.tasks.TaskPropertyUtils.ensurePropertiesHaveNames;
import static org.gradle.util.GUtil.uncheckedCall;
public class DefaultTaskInputs implements TaskInputsInternal {
private final FileCollection allInputFiles;
private final FileCollection allSourceFiles;
private final FileResolver resolver;
private final TaskInternal task;
private final TaskMutator taskMutator;
private final Map properties = new HashMap();
private final List filePropertiesInternal = Lists.newArrayList();
private ImmutableSortedSet fileProperties;
public DefaultTaskInputs(FileResolver resolver, TaskInternal task, TaskMutator taskMutator) {
this.resolver = resolver;
this.task = task;
this.taskMutator = taskMutator;
String taskName = task.getName();
this.allInputFiles = new TaskInputUnionFileCollection(taskName, "input", false, filePropertiesInternal);
this.allSourceFiles = new TaskInputUnionFileCollection(taskName, "source", true, filePropertiesInternal);
}
@Override
public boolean getHasInputs() {
return !filePropertiesInternal.isEmpty() || !properties.isEmpty();
}
@Override
public FileCollection getFiles() {
return allInputFiles;
}
@Override
public ImmutableSortedSet getFileProperties() {
if (fileProperties == null) {
ensurePropertiesHaveNames(filePropertiesInternal);
fileProperties = TaskPropertyUtils.collectFileProperties("input", filePropertiesInternal.iterator());
}
return fileProperties;
}
@Override
public TaskInputFilePropertyBuilderInternal files(final Object... paths) {
return taskMutator.mutate("TaskInputs.files(Object...)", new Callable() {
@Override
public TaskInputFilePropertyBuilderInternal call() {
return addSpec(paths);
}
});
}
@Override
public TaskInputFilePropertyBuilderInternal file(final Object path) {
return taskMutator.mutate("TaskInputs.file(Object)", new Callable() {
@Override
public TaskInputFilePropertyBuilderInternal call() {
return addSpec(path);
}
});
}
@Override
public TaskInputFilePropertyBuilderInternal dir(final Object dirPath) {
return taskMutator.mutate("TaskInputs.dir(Object)", new Callable() {
@Override
public TaskInputFilePropertyBuilderInternal call() {
return addSpec(resolver.resolveFilesAsTree(dirPath));
}
});
}
@Override
public boolean getHasSourceFiles() {
for (TaskInputPropertySpecAndBuilder propertySpec : filePropertiesInternal) {
if (propertySpec.isSkipWhenEmpty()) {
return true;
}
}
return false;
}
@Override
public FileCollection getSourceFiles() {
return allSourceFiles;
}
@Override
public TaskInputs source(final Object... paths) {
DeprecationLogger.nagUserOfDiscontinuedMethod("TaskInputs.source(Object...)", "Please use TaskInputs.files(Object...).skipWhenEmpty() instead.");
taskMutator.mutate("TaskInputs.source(Object...)", new Runnable() {
@Override
public void run() {
addSpec(paths, true);
}
});
return this;
}
@Override
public TaskInputs source(final Object path) {
DeprecationLogger.nagUserOfDiscontinuedMethod("TaskInputs.source(Object)", "Please use TaskInputs.file(Object).skipWhenEmpty() instead.");
taskMutator.mutate("TaskInputs.source(Object)", new Runnable() {
@Override
public void run() {
addSpec(path, true);
}
});
return this;
}
@Override
public TaskInputs sourceDir(final Object path) {
DeprecationLogger.nagUserOfDiscontinuedMethod("TaskInputs.sourceDir(Object)", "Please use TaskInputs.dir(Object).skipWhenEmpty() instead.");
taskMutator.mutate("TaskInputs.sourceDir(Object)", new Runnable() {
@Override
public void run() {
addSpec(resolver.resolveFilesAsTree(path), true);
}
});
return this;
}
private TaskInputFilePropertyBuilderInternal addSpec(Object paths) {
return addSpec(paths, false);
}
private TaskInputFilePropertyBuilderInternal addSpec(Object paths, boolean skipWhenEmpty) {
DefaultTaskInputPropertySpec spec = new DefaultTaskInputPropertySpec(this, task.getName(), skipWhenEmpty, resolver, paths);
filePropertiesInternal.add(spec);
return spec;
}
public Map getProperties() {
Map actualProperties = new HashMap();
for (Map.Entry entry : properties.entrySet()) {
String propertyName = entry.getKey();
try {
Object value = prepareValue(entry.getValue());
actualProperties.put(propertyName, value);
} catch (Exception ex) {
throw new InvalidUserDataException(String.format("Error while evaluating property '%s' of %s", propertyName, task), ex);
}
}
return actualProperties;
}
private Object prepareValue(Object value) {
while (true) {
if (value instanceof Callable) {
Callable callable = (Callable) value;
value = uncheckedCall(callable);
} else if (value instanceof FileCollection) {
FileCollection fileCollection = (FileCollection) value;
return fileCollection.getFiles();
} else {
return avoidGString(value);
}
}
}
private static Object avoidGString(Object value) {
return (value instanceof GString) ? value.toString() : value;
}
public TaskInputs property(final String name, final Object value) {
taskMutator.mutate("TaskInputs.property(String, Object)", new Runnable() {
public void run() {
properties.put(name, value);
}
});
return this;
}
public TaskInputs properties(final Map newProps) {
taskMutator.mutate("TaskInputs.properties(Map)", new Runnable() {
public void run() {
properties.putAll(newProps);
}
});
return this;
}
private static class TaskInputUnionFileCollection extends CompositeFileCollection implements Describable {
private final boolean skipWhenEmptyOnly;
private final String taskName;
private final String type;
private final List filePropertiesInternal;
public TaskInputUnionFileCollection(String taskName, String type, boolean skipWhenEmptyOnly, List filePropertiesInternal) {
this.taskName = taskName;
this.type = type;
this.skipWhenEmptyOnly = skipWhenEmptyOnly;
this.filePropertiesInternal = filePropertiesInternal;
}
@Override
public String getDisplayName() {
return "task '" + taskName + "' " + type + " files";
}
@Override
public void visitContents(FileCollectionResolveContext context) {
for (TaskInputPropertySpecAndBuilder fileProperty : filePropertiesInternal) {
if (!skipWhenEmptyOnly || fileProperty.isSkipWhenEmpty()) {
context.add(fileProperty.getPropertyFiles());
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy