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 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 org.gradle.internal.deprecation.DeprecationLogger;
import org.gradle.internal.service.scopes.Scope;
import org.gradle.internal.service.scopes.ServiceScope;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Comparator;
import java.util.EnumMap;
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}.
*/
@ServiceScope(Scope.Global.class)
public class PatternSpecFactory {
public static final PatternSpecFactory INSTANCE = new PatternSpecFactory();
private String[] previousDefaultExcludes;
private final Map> defaultExcludeSpecCache = new EnumMap<>(CaseSensitivity.class);
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(CaseSensitivity.forCaseSensitive(patternSet.isCaseSensitive())));
allExcludeSpecs.addAll(patternSet.getExcludeSpecs());
if (allExcludeSpecs.isEmpty()) {
return Specs.satisfyNone();
} else {
return Specs.union(allExcludeSpecs);
}
}
private synchronized Spec getDefaultExcludeSpec(CaseSensitivity caseSensitivity) {
String[] defaultExcludes = DirectoryScanner.getDefaultExcludes();
if (defaultExcludeSpecCache.isEmpty()) {
updateDefaultExcludeSpecCache(defaultExcludes);
} else if (!Arrays.equals(previousDefaultExcludes, defaultExcludes)) {
reportChangedDefaultExcludes(previousDefaultExcludes, defaultExcludes);
updateDefaultExcludeSpecCache(defaultExcludes);
}
return defaultExcludeSpecCache.get(caseSensitivity);
}
private void reportChangedDefaultExcludes(String[] excludesFromSettings, String[] newDefaultExcludes) {
List sortedExcludesFromSettings = Arrays.asList(excludesFromSettings);
sortedExcludesFromSettings.sort(Comparator.naturalOrder());
List sortedNewExcludes = Arrays.asList(newDefaultExcludes);
sortedNewExcludes.sort(Comparator.naturalOrder());
DeprecationLogger
.deprecateIndirectUsage("Changing default excludes during the build")
.withContext(String.format("Default excludes changed from %s to %s.", sortedExcludesFromSettings, sortedNewExcludes))
.withAdvice("Configure default excludes in the settings script instead.")
.willBeRemovedInGradle7()
.withUpgradeGuideSection(6, "changing_default_excludes_during_the_execution_phase")
.nagUser();
}
public synchronized void setDefaultExcludesFromSettings(String[] excludesFromSettings) {
if (!Arrays.equals(previousDefaultExcludes, excludesFromSettings)) {
updateDefaultExcludeSpecCache(excludesFromSettings);
}
}
private void updateDefaultExcludeSpecCache(String[] defaultExcludes) {
previousDefaultExcludes = defaultExcludes;
List patterns = Arrays.asList(defaultExcludes);
for (CaseSensitivity caseSensitivity : CaseSensitivity.values()) {
defaultExcludeSpecCache.put(caseSensitivity, createSpec(patterns, false, caseSensitivity.isCaseSensitive()));
}
}
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);
}
private enum CaseSensitivity {
CASE_SENSITIVE(true),
CASE_INSENSITIVE(false);
CaseSensitivity(boolean caseSensitive) {
this.caseSensitive = caseSensitive;
}
public static CaseSensitivity forCaseSensitive(boolean caseSensitive) {
return caseSensitive
? CASE_SENSITIVE
: CASE_INSENSITIVE;
}
private final boolean caseSensitive;
public boolean isCaseSensitive() {
return caseSensitive;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy