All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.api.tasks.util.internal.PatternSpecFactory Maven / Gradle / Ivy

There is a newer version: 8.8
Show newest version
/*
 * 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(true, createSpec(defaultExcludes, false, true));
        defaultExcludeSpecs.put(false, 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 - 2024 Weber Informatics LLC | Privacy Policy