org.gradle.api.tasks.util.internal.PatternSpecFactory 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 2015 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.tasks.util.internal;
import com.google.common.collect.Lists;
import org.apache.tools.ant.DirectoryScanner;
import org.gradle.api.file.FileTreeElement;
import org.gradle.api.internal.file.RelativePathSpec;
import org.gradle.api.internal.file.pattern.PatternMatcher;
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 java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* The basic implementation for converting {@link PatternSet}s to {@link Spec}s.
* This implementation only caches the default exclude patterns, as these are always
* used, no matter which other includes and excludes a {@link PatternSet} has. For an
* implementation that caches all other patterns as well, see {@link CachingPatternSpecFactory}.
*/
public class PatternSpecFactory {
public static final PatternSpecFactory INSTANCE = new PatternSpecFactory();
private final List previousDefaultExcludes = Lists.newArrayList();
private final Map> defaultExcludeSpecs = new HashMap>(2);
public Spec createSpec(PatternSet patternSet) {
return Specs.intersect(createIncludeSpec(patternSet), Specs.negate(createExcludeSpec(patternSet)));
}
public Spec createIncludeSpec(PatternSet patternSet) {
List> allIncludeSpecs = new ArrayList>(1 + patternSet.getIncludeSpecs().size());
if (!patternSet.getIncludes().isEmpty()) {
allIncludeSpecs.add(createSpec(patternSet.getIncludes(), true, patternSet.isCaseSensitive()));
}
allIncludeSpecs.addAll(patternSet.getIncludeSpecs());
return Specs.union(allIncludeSpecs);
}
public Spec createExcludeSpec(PatternSet patternSet) {
List> allExcludeSpecs = new ArrayList>(2 + patternSet.getExcludeSpecs().size());
if (!patternSet.getExcludes().isEmpty()) {
allExcludeSpecs.add(createSpec(patternSet.getExcludes(), false, patternSet.isCaseSensitive()));
}
allExcludeSpecs.add(getDefaultExcludeSpec(patternSet.isCaseSensitive()));
allExcludeSpecs.addAll(patternSet.getExcludeSpecs());
if (allExcludeSpecs.isEmpty()) {
return Specs.satisfyNone();
} else {
return Specs.union(allExcludeSpecs);
}
}
private synchronized Spec getDefaultExcludeSpec(boolean caseSensitive) {
Spec specs = defaultExcludeSpecs.get(caseSensitive);
List defaultExcludes = Arrays.asList(DirectoryScanner.getDefaultExcludes());
if (specs == null) {
specs = updateDefaultExcludeCache(defaultExcludes, caseSensitive);
} else if (!previousDefaultExcludes.equals(defaultExcludes)) {
specs = updateDefaultExcludeCache(defaultExcludes, caseSensitive);
}
return specs;
}
private Spec updateDefaultExcludeCache(List defaultExcludes, boolean caseSensitive) {
previousDefaultExcludes.clear();
previousDefaultExcludes.addAll(defaultExcludes);
defaultExcludeSpecs.put(caseSensitive, createSpec(defaultExcludes, false, true));
defaultExcludeSpecs.put(caseSensitive, createSpec(defaultExcludes, false, false));
return defaultExcludeSpecs.get(caseSensitive);
}
protected Spec createSpec(Collection patterns, boolean include, boolean caseSensitive) {
if (patterns.isEmpty()) {
return include ? Specs.satisfyAll() : Specs.satisfyNone();
}
PatternMatcher matcher = PatternMatcherFactory.getPatternsMatcher(include, caseSensitive, patterns);
return new RelativePathSpec(matcher);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy