org.gradle.api.internal.file.CachingTaskInputFileCollection 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 2017 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.file;
import com.google.common.collect.ImmutableSet;
import org.gradle.api.internal.file.collections.DefaultConfigurableFileCollection;
import org.gradle.api.internal.file.collections.DefaultFileCollectionResolveContext;
import org.gradle.api.internal.file.collections.FileCollectionResolveContext;
import org.gradle.api.internal.file.collections.ListBackedFileSet;
import org.gradle.api.internal.file.collections.MinimalFileSet;
import org.gradle.api.internal.tasks.TaskDependencyFactory;
import org.gradle.api.internal.tasks.properties.LifecycleAwareValue;
import org.gradle.api.tasks.util.PatternSet;
import org.gradle.internal.Factory;
import org.gradle.internal.file.PathToFileResolver;
import java.io.File;
import java.util.Collections;
/**
* A {@link org.gradle.api.file.ConfigurableFileCollection} that can be used as a task input property. Caches the matching set of files during task execution, and discards the result after task execution.
*
* TODO - disallow further changes to this collection once task has started
* TODO - keep the file entries to snapshot later, to avoid a stat on each file during snapshot
*/
public class CachingTaskInputFileCollection extends DefaultConfigurableFileCollection implements LifecycleAwareValue {
private final Factory patternSetFactory;
private boolean canCache;
private MinimalFileSet cachedValue;
// TODO - display name
public CachingTaskInputFileCollection(PathToFileResolver fileResolver, Factory patternSetFactory, TaskDependencyFactory taskDependencyFactory) {
super(null, fileResolver, taskDependencyFactory, Collections.emptyList());
this.patternSetFactory = patternSetFactory;
}
@Override
public void visitContents(FileCollectionResolveContext context) {
if (canCache) {
if (cachedValue == null) {
DefaultFileCollectionResolveContext nested = new DefaultFileCollectionResolveContext(patternSetFactory);
super.visitContents(nested);
ImmutableSet.Builder files = ImmutableSet.builder();
for (FileCollectionInternal fileCollection : nested.resolveAsFileCollections()) {
files.addAll(fileCollection);
}
this.cachedValue = new ListBackedFileSet(files.build());
}
context.add(cachedValue);
} else {
super.visitContents(context);
}
}
@Override
public void prepareValue() {
canCache = true;
}
@Override
public void cleanupValue() {
// Keep the files and discard the origin values instead?
canCache = false;
cachedValue = null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy