Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.gradle.api.internal.file.copy.DefaultCopySpec Maven / Gradle / Ivy
/*
* 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.file.copy;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import groovy.lang.Closure;
import org.gradle.api.Action;
import org.gradle.api.InvalidUserDataException;
import org.gradle.api.NonExtensible;
import org.gradle.api.Transformer;
import org.gradle.api.file.CopyProcessingSpec;
import org.gradle.api.file.CopySpec;
import org.gradle.api.file.DuplicatesStrategy;
import org.gradle.api.file.FileCopyDetails;
import org.gradle.api.file.FileTree;
import org.gradle.api.file.FileTreeElement;
import org.gradle.api.file.RelativePath;
import org.gradle.api.internal.ChainingTransformer;
import org.gradle.api.internal.ClosureBackedAction;
import org.gradle.api.internal.file.FileResolver;
import org.gradle.api.internal.file.pattern.PatternMatcherFactory;
import org.gradle.api.specs.Spec;
import org.gradle.api.specs.Specs;
import org.gradle.api.tasks.util.PatternSet;
import org.gradle.internal.reflect.Instantiator;
import org.gradle.internal.typeconversion.NotationParser;
import org.gradle.util.ConfigureUtil;
import java.io.File;
import java.io.FilterReader;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.regex.Pattern;
@NonExtensible
public class DefaultCopySpec implements CopySpecInternal {
private static final NotationParser PATH_NOTATION_PARSER = PathNotationConverter.parser();
protected final FileResolver fileResolver;
private final Set sourcePaths;
private Object destDir;
private final PatternSet patternSet;
private final List childSpecs;
private final List childSpecsInAdditionOrder;
protected final Instantiator instantiator;
private final List> copyActions = new ArrayList>();
private boolean hasCustomActions;
private Integer dirMode;
private Integer fileMode;
private Boolean caseSensitive;
private Boolean includeEmptyDirs;
private DuplicatesStrategy duplicatesStrategy;
private String filteringCharset;
private List listeners = Lists.newLinkedList();
public DefaultCopySpec(FileResolver resolver, Instantiator instantiator) {
this.fileResolver = resolver;
this.instantiator = instantiator;
sourcePaths = new LinkedHashSet();
childSpecs = new ArrayList();
childSpecsInAdditionOrder = new ArrayList();
patternSet = resolver.getPatternSetFactory().create();
duplicatesStrategy = null;
}
@Override
public boolean hasCustomActions() {
if (hasCustomActions) {
return true;
}
for (CopySpecInternal childSpec : childSpecs) {
if (childSpec.hasCustomActions()) {
return true;
}
}
return false;
}
protected List> getCopyActions() {
return copyActions;
}
public CopySpec with(CopySpec... copySpecs) {
for (CopySpec copySpec : copySpecs) {
CopySpecInternal copySpecInternal;
if (copySpec instanceof CopySpecSource) {
CopySpecSource copySpecSource = (CopySpecSource) copySpec;
copySpecInternal = copySpecSource.getRootSpec();
} else {
copySpecInternal = (CopySpecInternal) copySpec;
}
addChildSpec(copySpecInternal);
}
return this;
}
public CopySpec from(Object... sourcePaths) {
for (Object sourcePath : sourcePaths) {
this.sourcePaths.add(sourcePath);
}
return this;
}
public CopySpec from(Object sourcePath, final Closure c) {
return from(sourcePath, new ClosureBackedAction(c));
}
public CopySpec from(Object sourcePath, Action super CopySpec> configureAction) {
if (configureAction == null) {
from(sourcePath);
return this;
} else {
CopySpecInternal child = addChild();
child.from(sourcePath);
CopySpecWrapper wrapper = instantiator.newInstance(CopySpecWrapper.class, child);
configureAction.execute(wrapper);
return wrapper;
}
}
public CopySpecInternal addFirst() {
return addChildAtPosition(0);
}
protected CopySpecInternal addChildAtPosition(int position) {
DefaultCopySpec child = instantiator.newInstance(SingleParentCopySpec.class, fileResolver, instantiator, buildRootResolver());
addChildSpec(position, child);
return child;
}
public CopySpecInternal addChild() {
DefaultCopySpec child = new SingleParentCopySpec(fileResolver, instantiator, buildRootResolver());
addChildSpec(child);
return child;
}
public CopySpecInternal addChildBeforeSpec(CopySpecInternal childSpec) {
int position = childSpecs.indexOf(childSpec);
return position != -1 ? addChildAtPosition(position) : addChild();
}
protected void addChildSpec(CopySpecInternal childSpec) {
addChildSpec(childSpecs.size(), childSpec);
}
protected void addChildSpec(int index, CopySpecInternal childSpec) {
childSpecs.add(index, childSpec);
// We need a consistent index here
final int additionIndex = childSpecsInAdditionOrder.size();
childSpecsInAdditionOrder.add(childSpec);
// In case more descendants are added to downward hierarchy, make sure they'll notify us
childSpec.addChildSpecListener(new CopySpecListener() {
@Override
public void childSpecAdded(CopySpecAddress path, CopySpecInternal spec) {
CopySpecAddress childPath = new DefaultCopySpecAddress(null, DefaultCopySpec.this, additionIndex).append(path);
fireChildSpecListeners(childPath, spec);
}
});
// Notify upwards of currently existing descendant spec hierarchy
childSpec.visit(new DefaultCopySpecAddress(null, this, additionIndex), new CopySpecVisitor() {
@Override
public void visit(final CopySpecAddress parentPath, CopySpecInternal spec) {
fireChildSpecListeners(parentPath, spec);
}
});
}
private void fireChildSpecListeners(CopySpecAddress path, CopySpecInternal spec) {
for (CopySpecListener listener : listeners) {
listener.childSpecAdded(path, spec);
}
}
@Override
public void visit(CopySpecAddress parentPath, CopySpecVisitor visitor) {
visitor.visit(parentPath, this);
int childIndex = 0;
for (CopySpecInternal childSpec : childSpecsInAdditionOrder) {
CopySpecAddress childPath = parentPath.append(this, childIndex);
childSpec.visit(childPath, visitor);
childIndex++;
}
}
@Override
public void addChildSpecListener(CopySpecListener copySpecListener) {
this.listeners.add(copySpecListener);
}
public Set getSourcePaths() {
return sourcePaths;
}
public DefaultCopySpec into(Object destDir) {
this.destDir = destDir;
return this;
}
public CopySpec into(Object destPath, Closure configureClosure) {
return into(destPath, new ClosureBackedAction(configureClosure));
}
public CopySpec into(Object destPath, Action super CopySpec> copySpec) {
if (copySpec == null) {
into(destPath);
return this;
} else {
CopySpecInternal child = addChild();
child.into(destPath);
CopySpecWrapper wrapper = instantiator.newInstance(CopySpecWrapper.class, child);
copySpec.execute(wrapper);
return wrapper;
}
}
public boolean isCaseSensitive() {
return buildRootResolver().isCaseSensitive();
}
public void setCaseSensitive(boolean caseSensitive) {
this.caseSensitive = caseSensitive;
}
public boolean getIncludeEmptyDirs() {
return buildRootResolver().getIncludeEmptyDirs();
}
public void setIncludeEmptyDirs(boolean includeEmptyDirs) {
this.includeEmptyDirs = includeEmptyDirs;
}
public DuplicatesStrategy getDuplicatesStrategy() {
return buildRootResolver().getDuplicatesStrategy();
}
public void setDuplicatesStrategy(DuplicatesStrategy strategy) {
this.duplicatesStrategy = strategy;
}
public CopySpec filesMatching(String pattern, Action super FileCopyDetails> action) {
Spec matcher = PatternMatcherFactory.getPatternMatcher(true, isCaseSensitive(), pattern);
return eachFile(new MatchingCopyAction(matcher, action));
}
public CopySpec filesMatching(Iterable patterns, Action super FileCopyDetails> action) {
if (!patterns.iterator().hasNext()) {
throw new InvalidUserDataException("must provide at least one pattern to match");
}
List matchers = new ArrayList();
for (String pattern : patterns) {
matchers.add(PatternMatcherFactory.getPatternMatcher(true, isCaseSensitive(), pattern));
}
Spec unionMatcher = Specs.union(matchers.toArray(new Spec[matchers.size()]));
return eachFile(new MatchingCopyAction(unionMatcher, action));
}
public CopySpec filesNotMatching(String pattern, Action super FileCopyDetails> action) {
Spec matcher = PatternMatcherFactory.getPatternMatcher(true, isCaseSensitive(), pattern);
return eachFile(new MatchingCopyAction(Specs.negate(matcher), action));
}
public CopySpec filesNotMatching(Iterable patterns, Action super FileCopyDetails> action) {
if (!patterns.iterator().hasNext()) {
throw new InvalidUserDataException("must provide at least one pattern to not match");
}
List matchers = new ArrayList();
for (String pattern : patterns) {
matchers.add(PatternMatcherFactory.getPatternMatcher(true, isCaseSensitive(), pattern));
}
Spec unionMatcher = Specs.union(matchers.toArray(new Spec[matchers.size()]));
return eachFile(new MatchingCopyAction(Specs.negate(unionMatcher), action));
}
public CopySpec include(String... includes) {
patternSet.include(includes);
return this;
}
public CopySpec include(Iterable includes) {
patternSet.include(includes);
return this;
}
public CopySpec include(Spec includeSpec) {
patternSet.include(includeSpec);
return this;
}
public CopySpec include(Closure includeSpec) {
patternSet.include(includeSpec);
return this;
}
public Set getIncludes() {
return patternSet.getIncludes();
}
public CopySpec setIncludes(Iterable includes) {
patternSet.setIncludes(includes);
return this;
}
public CopySpec exclude(String... excludes) {
patternSet.exclude(excludes);
return this;
}
public CopySpec exclude(Iterable excludes) {
patternSet.exclude(excludes);
return this;
}
public CopySpec exclude(Spec excludeSpec) {
patternSet.exclude(excludeSpec);
return this;
}
public CopySpec exclude(Closure excludeSpec) {
patternSet.exclude(excludeSpec);
return this;
}
public Set getExcludes() {
return patternSet.getExcludes();
}
public DefaultCopySpec setExcludes(Iterable excludes) {
patternSet.setExcludes(excludes);
return this;
}
public CopySpec rename(String sourceRegEx, String replaceWith) {
appendCopyAction(new RenamingCopyAction(new RegExpNameMapper(sourceRegEx, replaceWith)));
return this;
}
public CopySpec rename(Pattern sourceRegEx, String replaceWith) {
appendCopyAction(new RenamingCopyAction(new RegExpNameMapper(sourceRegEx, replaceWith)));
return this;
}
public CopySpec filter(final Class extends FilterReader> filterType) {
appendCopyAction(new Action() {
public void execute(FileCopyDetails fileCopyDetails) {
fileCopyDetails.filter(filterType);
}
});
return this;
}
public CopySpec filter(final Closure closure) {
return filter(new ClosureBackedTransformer(closure));
}
public CopySpec filter(final Transformer transformer) {
appendCopyAction(new Action() {
public void execute(FileCopyDetails fileCopyDetails) {
fileCopyDetails.filter(transformer);
}
});
return this;
}
public CopySpec filter(final Map properties, final Class extends FilterReader> filterType) {
appendCopyAction(new Action() {
public void execute(FileCopyDetails fileCopyDetails) {
fileCopyDetails.filter(properties, filterType);
}
});
return this;
}
public CopySpec expand(final Map properties) {
appendCopyAction(new Action() {
public void execute(FileCopyDetails fileCopyDetails) {
fileCopyDetails.expand(properties);
}
});
return this;
}
public CopySpec rename(Closure closure) {
return rename(new ClosureBackedTransformer(closure));
}
public CopySpec rename(Transformer renamer) {
ChainingTransformer transformer = new ChainingTransformer(String.class);
transformer.add(renamer);
appendCopyAction(new RenamingCopyAction(transformer));
return this;
}
public Integer getDirMode() {
return buildRootResolver().getDirMode();
}
public Integer getFileMode() {
return buildRootResolver().getFileMode();
}
public CopyProcessingSpec setDirMode(Integer mode) {
dirMode = mode;
return this;
}
public CopyProcessingSpec setFileMode(Integer mode) {
fileMode = mode;
return this;
}
public CopySpec eachFile(Action super FileCopyDetails> action) {
appendCopyAction(action);
return this;
}
private void appendCopyAction(Action super FileCopyDetails> action) {
hasCustomActions = true;
copyActions.add(action);
}
@Override
public void appendCachingSafeCopyAction(Action super FileCopyDetails> action) {
copyActions.add(action);
}
public CopySpec eachFile(Closure closure) {
appendCopyAction(ConfigureUtil.configureUsing(closure));
return this;
}
public Iterable getChildren() {
return childSpecs;
}
public void walk(Action super CopySpecResolver> action) {
buildRootResolver().walk(action);
}
public boolean hasSource() {
if (!sourcePaths.isEmpty()) {
return true;
}
for (CopySpecInternal spec : childSpecs) {
if (spec.hasSource()) {
return true;
}
}
return false;
}
public CopySpecResolver buildResolverRelativeToParent(CopySpecResolver parent) {
return this.new DefaultCopySpecResolver(parent);
}
public CopySpecResolver buildRootResolver() {
return this.new DefaultCopySpecResolver(null);
}
public String getFilteringCharset() {
return buildRootResolver().getFilteringCharset();
}
public void setFilteringCharset(String charset) {
if (charset == null) {
throw new InvalidUserDataException("filteringCharset must not be null");
}
if (!Charset.isSupported(charset)) {
throw new InvalidUserDataException(String.format("filteringCharset %s is not supported by your JVM", charset));
}
this.filteringCharset = charset;
}
public class DefaultCopySpecResolver implements CopySpecResolver {
private CopySpecResolver parentResolver;
private DefaultCopySpecResolver(CopySpecResolver parent) {
this.parentResolver = parent;
}
public RelativePath getDestPath() {
RelativePath parentPath;
if (parentResolver == null) {
parentPath = new RelativePath(false);
} else {
parentPath = parentResolver.getDestPath();
}
if (destDir == null) {
return parentPath;
}
String path = PATH_NOTATION_PARSER.parseNotation(destDir);
if (path.startsWith("/") || path.startsWith(File.separator)) {
return RelativePath.parse(false, path);
}
return RelativePath.parse(false, parentPath, path);
}
public FileTree getSource() {
return fileResolver.resolveFilesAsTree(sourcePaths).matching(this.getPatternSet());
}
public FileTree getAllSource() {
final ImmutableList.Builder builder = ImmutableList.builder();
walk(new Action() {
public void execute(CopySpecResolver copySpecResolver) {
builder.add(copySpecResolver.getSource());
}
});
return fileResolver.compositeFileTree(builder.build());
}
public Collection extends Action super FileCopyDetails>> getAllCopyActions() {
if (parentResolver == null) {
return copyActions;
}
List> allActions = new ArrayList>();
allActions.addAll(parentResolver.getAllCopyActions());
allActions.addAll(copyActions);
return allActions;
}
public List getAllIncludes() {
List result = new ArrayList();
if (parentResolver != null) {
result.addAll(parentResolver.getAllIncludes());
}
result.addAll(patternSet.getIncludes());
return result;
}
public List getAllExcludes() {
List result = new ArrayList();
if (parentResolver != null) {
result.addAll(parentResolver.getAllExcludes());
}
result.addAll(patternSet.getExcludes());
return result;
}
public List> getAllExcludeSpecs() {
List> result = new ArrayList>();
if (parentResolver != null) {
result.addAll(parentResolver.getAllExcludeSpecs());
}
result.addAll(patternSet.getExcludeSpecs());
return result;
}
public DuplicatesStrategy getDuplicatesStrategy() {
if (duplicatesStrategy != null) {
return duplicatesStrategy;
}
if (parentResolver != null) {
return parentResolver.getDuplicatesStrategy();
}
return DuplicatesStrategy.INCLUDE;
}
public boolean isCaseSensitive() {
if (caseSensitive != null) {
return caseSensitive;
}
if (parentResolver != null) {
return parentResolver.isCaseSensitive();
}
return true;
}
public Integer getFileMode() {
if (fileMode != null) {
return fileMode;
}
if (parentResolver != null) {
return parentResolver.getFileMode();
}
return null;
}
public Integer getDirMode() {
if (dirMode != null) {
return dirMode;
}
if (parentResolver != null) {
return parentResolver.getDirMode();
}
return null;
}
public boolean getIncludeEmptyDirs() {
if (includeEmptyDirs != null) {
return includeEmptyDirs;
}
if (parentResolver != null) {
return parentResolver.getIncludeEmptyDirs();
}
return true;
}
public List> getAllIncludeSpecs() {
List> result = new ArrayList>();
if (parentResolver != null) {
result.addAll(parentResolver.getAllIncludeSpecs());
}
result.addAll(patternSet.getIncludeSpecs());
return result;
}
public PatternSet getPatternSet() {
PatternSet patterns = fileResolver.getPatternSetFactory().create();
patterns.setCaseSensitive(isCaseSensitive());
patterns.include(this.getAllIncludes());
patterns.includeSpecs(getAllIncludeSpecs());
patterns.exclude(this.getAllExcludes());
patterns.excludeSpecs(getAllExcludeSpecs());
return patterns;
}
public void walk(Action super CopySpecResolver> action) {
action.execute(this);
for (CopySpecInternal child : getChildren()) {
child.buildResolverRelativeToParent(this).walk(action);
}
}
public String getFilteringCharset() {
if (filteringCharset != null) {
return filteringCharset;
}
if (parentResolver != null) {
return parentResolver.getFilteringCharset();
}
return Charset.defaultCharset().name();
}
}
private class DefaultCopySpecAddress implements CopySpecAddress {
private final DefaultCopySpecAddress parent;
private final CopySpecInternal spec;
private final int additionIndex;
public DefaultCopySpecAddress(DefaultCopySpecAddress parent, CopySpecInternal spec, int additionIndex) {
this.parent = parent;
this.spec = spec;
this.additionIndex = additionIndex;
}
@Override
public CopySpecAddress getParent() {
return parent;
}
@Override
public CopySpecInternal getSpec() {
return spec;
}
@Override
public int getAdditionIndex() {
return additionIndex;
}
@Override
public DefaultCopySpecAddress append(CopySpecInternal spec, int additionIndex) {
return new DefaultCopySpecAddress(this, spec, additionIndex);
}
@Override
public DefaultCopySpecAddress append(CopySpecAddress relativeAddress) {
CopySpecAddress parent = relativeAddress.getParent();
DefaultCopySpecAddress newParent;
if (parent == null) {
newParent = this;
} else {
newParent = append(parent);
}
return new DefaultCopySpecAddress(newParent, relativeAddress.getSpec(), relativeAddress.getAdditionIndex());
}
@Override
public CopySpecResolver unroll(StringBuilder path) {
CopySpecResolver resolver;
if (parent != null) {
resolver = spec.buildResolverRelativeToParent(parent.unroll(path));
} else {
resolver = spec.buildRootResolver();
}
path.append("$").append(additionIndex + 1);
return resolver;
}
@Override
public String toString() {
String parentPath = parent == null
? ""
: parent.toString();
return parentPath + "$" + (additionIndex + 1);
}
}
}