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

org.apache.tools.ant.types.resources.Resources Maven / Gradle / Ivy

There is a newer version: 2.0.27
Show newest version
/*
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You 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
 *
 *      https://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.apache.tools.ant.types.resources;

import java.io.File;
import java.util.AbstractCollection;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Optional;
import java.util.Spliterator;
import java.util.Spliterators;
import java.util.Stack;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.types.DataType;
import org.apache.tools.ant.types.Resource;
import org.apache.tools.ant.types.ResourceCollection;

/**
 * Generic {@link ResourceCollection}: Either stores nested {@link ResourceCollection}s,
 * making no attempt to remove duplicates, or references another {@link ResourceCollection}.
 * @since Ant 1.7
 */
public class Resources extends DataType implements AppendableResourceCollection {
    /** {@code static} empty {@link ResourceCollection} */
    public static final ResourceCollection NONE = new ResourceCollection() {
        @Override
        public boolean isFilesystemOnly() {
            return true;
        }
        @Override
        public Iterator iterator() {
            return EMPTY_ITERATOR;
        }
        @Override
        public int size() {
            return 0;
        }
    };

    /** {@code static} empty {@link Iterator} */
    public static final Iterator EMPTY_ITERATOR = Collections.emptyIterator();

    private class MyCollection extends AbstractCollection {
        private volatile Collection cached;

        @Override
        public int size() {
            return getCache().size();
        }
        @Override
        public Iterator iterator() {
            return getCache().iterator();
        }
        private synchronized Collection getCache() {
            if (cached == null) {
                cached = internalResources().collect(Collectors.toList());
            }
            return cached;
        }
    }

    private class MyIterator implements Iterator {
        private Iterator rci = getNested().iterator();
        private Iterator ri;

        @Override
        public boolean hasNext() {
            boolean result = ri != null && ri.hasNext();
            while (!result && rci.hasNext()) {
                ri = rci.next().iterator();
                result = ri.hasNext();
            }
            return result;
        }
        @Override
        public Resource next() {
            if (!hasNext()) {
                throw new NoSuchElementException();
            }
            return ri.next();
        }
        @Override
        public void remove() {
            throw new UnsupportedOperationException();
        }
    }

    private List rc;
    private Optional> cacheColl = Optional.empty();
    private volatile boolean cache = false;

    /**
     * Create a new {@link Resources}.
     */
    public Resources() {
    }

    /**
     * Create a new {@link Resources}.
     * @param project {@link Project}
     * @since Ant 1.8
     */
    public Resources(Project project) {
        setProject(project);
    }

    /**
     * Set whether to cache collections.
     * @param b {@code boolean} cache flag.
     * @since Ant 1.8.0
     */
    public void setCache(boolean b) {
        cache = b;
    }

    /**
     * Add a {@link ResourceCollection}.
     * @param c the {@link ResourceCollection} to add.
     */
    @Override
    public synchronized void add(ResourceCollection c) {
        if (isReference()) {
            throw noChildrenAllowed();
        }
        if (c == null) {
            return;
        }
        if (rc == null) {
            rc = Collections.synchronizedList(new ArrayList<>());
        }
        rc.add(c);
        invalidateExistingIterators();
        cacheColl = Optional.empty();
        setChecked(false);
    }

    /**
     * Fulfill the {@link ResourceCollection} contract.
     * @return an {@link Iterator} of {@link Resources}.
     */
    @Override
    public synchronized Iterator iterator() {
        if (isReference()) {
            return getRef().iterator();
        }
        validate();
        return new FailFast(this, cacheColl.map(Iterable::iterator).orElseGet(MyIterator::new));
    }

    /**
     * Fulfill the {@link ResourceCollection} contract.
     * @return number of elements as {@code int}.
     */
    @Override
    public synchronized int size() {
        if (isReference()) {
            return getRef().size();
        }
        validate();
        return cacheColl.isPresent() ? cacheColl.get().size() : (int) internalResources().count();
    }

    /**
     * Fulfill the {@link ResourceCollection} contract.
     * @return {@code true} if all {@link Resource}s represent files.
     */
    @Override
    public boolean isFilesystemOnly() {
        if (isReference()) {
            return getRef().isFilesystemOnly();
        }
        validate();
        return getNested().stream().allMatch(ResourceCollection::isFilesystemOnly);
    }

    /**
     * Format this Resources as a {@link String}.
     * @return a descriptive String.
     */
    @Override
    public synchronized String toString() {
        if (isReference()) {
            return getRef().toString();
        }
        validate();
        final Stream stream = cache ? cacheColl.get().stream() : getNested().stream();
        return stream.map(String::valueOf).collect(Collectors.joining(File.pathSeparator));
    }

    /**
     * Overrides the base implementation to recurse on all {@link DataType}
     * child elements that may have been added.
     * @param stk the stack of data types to use (recursively).
     * @param p   the {@link Project} to use to dereference the references.
     * @throws BuildException on error.
     */
    @Override
    protected void dieOnCircularReference(Stack stk, Project p)
        throws BuildException {
        if (isReference()) {
            super.dieOnCircularReference(stk, p);
            return;
        }
        if (!isChecked()) {
            getNested().stream().filter(DataType.class::isInstance).map(DataType.class::cast)
                .forEach(dt -> pushAndInvokeCircularReferenceCheck(dt, stk, p));
            setChecked(true);
        }
    }

    /**
     * Allow subclasses to notify existing Iterators they have experienced concurrent modification.
     */
    protected void invalidateExistingIterators() {
        FailFast.invalidate(this);
    }

    /**
     * Resolves references, allowing any {@link ResourceCollection}.
     * @return the referenced {@link ResourceCollection}.
     */
    private ResourceCollection getRef() {
        return getCheckedRef(ResourceCollection.class);
    }

    private synchronized void validate() {
        dieOnCircularReference();
        if (cache && !cacheColl.isPresent()) {
            cacheColl = Optional.of(new MyCollection());
        }
    }

    private synchronized List getNested() {
        return rc == null ? Collections.emptyList() : rc;
    }

    private synchronized Stream internalResources() {
        return StreamSupport.stream(
            Spliterators.spliteratorUnknownSize(new MyIterator(), Spliterator.NONNULL), false);
    }
}