org.gradle.api.internal.file.CompositeFileTree Maven / Gradle / Ivy
/*
* Copyright 2009 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 groovy.lang.Closure;
import org.gradle.api.file.FileTree;
import org.gradle.api.file.FileVisitor;
import org.gradle.api.internal.file.collections.FileCollectionResolveContext;
import org.gradle.api.internal.file.collections.ResolvableFileCollectionResolveContext;
import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
import org.gradle.api.tasks.util.PatternFilterable;
import org.gradle.internal.Cast;
import java.util.Collection;
/**
* A {@link FileTree} that contains the union of zero or more file trees.
*/
public abstract class CompositeFileTree extends CompositeFileCollection implements FileTreeInternal {
protected Collection extends FileTreeInternal> getSourceCollections() {
return Cast.uncheckedCast(super.getSourceCollections());
}
public FileTree plus(FileTree fileTree) {
return new UnionFileTree(this, Cast.cast(FileTreeInternal.class, fileTree));
}
public FileTree matching(Closure filterConfigClosure) {
return new FilteredFileTree(filterConfigClosure);
}
public FileTree matching(PatternFilterable patterns) {
return new FilteredFileTree(patterns);
}
public FileTree visit(Closure visitor) {
for (FileTree tree : getSourceCollections()) {
tree.visit(visitor);
}
return this;
}
public FileTree visit(FileVisitor visitor) {
for (FileTree tree : getSourceCollections()) {
tree.visit(visitor);
}
return this;
}
@Override
public void visitTreeOrBackingFile(FileVisitor visitor) {
visit(visitor);
}
@Override
public FileTree getAsFileTree() {
return this;
}
private class FilteredFileTree extends CompositeFileTree {
private final Closure closure;
private final PatternFilterable patterns;
public FilteredFileTree(Closure closure) {
this.closure = closure;
patterns = null;
}
public FilteredFileTree(PatternFilterable patterns) {
this.patterns = patterns;
closure = null;
}
@Override
public String getDisplayName() {
return CompositeFileTree.this.getDisplayName();
}
@Override
public void visitContents(FileCollectionResolveContext context) {
ResolvableFileCollectionResolveContext nestedContext = context.newContext();
CompositeFileTree.this.visitContents(nestedContext);
for (FileTree set : nestedContext.resolveAsFileTrees()) {
if (closure != null) {
context.add(set.matching(closure));
} else {
context.add(set.matching(patterns));
}
}
}
@Override
public void visitDependencies(TaskDependencyResolveContext context) {
CompositeFileTree.this.visitDependencies(context);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy