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

org.gradle.api.internal.CompositeDomainObjectSet Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2009 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;

import com.google.common.collect.Iterators;
import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
import org.gradle.api.Action;
import org.gradle.api.DomainObjectCollection;
import org.gradle.api.specs.Spec;
import org.gradle.internal.Actions;

import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Set;

/**
 * A domain object collection that presents a combined view of one or more collections.
 *
 * @param  The type of domain objects in the component collections of this collection.
 */
public class CompositeDomainObjectSet extends DelegatingDomainObjectSet implements WithEstimatedSize {

    private final Spec uniqueSpec = new ItemIsUniqueInCompositeSpec();
    private final Spec notInSpec = new ItemNotInCompositeSpec();
    private final DefaultDomainObjectSet backingSet;

    public static  CompositeDomainObjectSet create(Class type, DomainObjectCollection... collections) {
        //noinspection unchecked
        DefaultDomainObjectSet backingSet = new DefaultDomainObjectSet(type, new DomainObjectCompositeCollection());
        CompositeDomainObjectSet out = new CompositeDomainObjectSet(backingSet);
        for (DomainObjectCollection c : collections) {
            out.addCollection(c);
        }
        return out;
    }

    CompositeDomainObjectSet(DefaultDomainObjectSet backingSet) {
        super(backingSet);
        this.backingSet = backingSet; //TODO SF try avoiding keeping this state here
    }

    public class ItemIsUniqueInCompositeSpec implements Spec {
        public boolean isSatisfiedBy(T element) {
            int matches = 0;
            for (Object collection : getStore().store) {
                if (((Collection) collection).contains(element)) {
                    if (++matches > 1) {
                        return false;
                    }
                }
            }

            return true;
        }
    }

    public class ItemNotInCompositeSpec implements Spec {
        public boolean isSatisfiedBy(T element) {
            return !getStore().contains(element);
        }
    }

    @SuppressWarnings("unchecked")
    protected DomainObjectCompositeCollection getStore() {
        return (DomainObjectCompositeCollection) this.backingSet.getStore();
    }

    public Action whenObjectAdded(Action action) {
        return super.whenObjectAdded(Actions.filter(action, uniqueSpec));
    }

    public Action whenObjectRemoved(Action action) {
        return super.whenObjectRemoved(Actions.filter(action, notInSpec));
    }

    public void addCollection(DomainObjectCollection collection) {
        if (!getStore().containsCollection(collection)) {
            getStore().addComposited(collection);
            collection.all(backingSet.getEventRegister().getAddAction());
            collection.whenObjectRemoved(backingSet.getEventRegister().getRemoveAction());
        }
    }

    public void removeCollection(DomainObjectCollection collection) {
        getStore().removeComposited(collection);
        Action action = this.backingSet.getEventRegister().getRemoveAction();
        for (T item : collection) {
            action.execute(item);
        }
    }

    @SuppressWarnings({"NullableProblems", "unchecked"})
    @Override
    public Iterator iterator() {
        DomainObjectCompositeCollection store = getStore();
        if (store.isEmpty()) {
            return Iterators.emptyIterator();
        }
        return SetIterator.of(store);

    }

    @SuppressWarnings("unchecked")
    /**
     * This method is expensive. Avoid calling it if possible. If all you need is a rough
     * estimate, call {@link #estimatedSize()} instead.
     */
    public int size() {
        DomainObjectCompositeCollection store = getStore();
        if (store.isEmpty()) {
            return 0;
        }
        Set tmp = Sets.newHashSetWithExpectedSize(estimatedSize());
        tmp.addAll(store);
        return tmp.size();
    }

    @Override
    public int estimatedSize() {
        return getStore().estimatedSize();
    }

    public void all(Action action) {
        //calling overloaded method with extra behavior:
        whenObjectAdded(action);

        for (T t : this) {
            action.execute(t);
        }
    }

    private final static class DomainObjectCompositeCollection implements Collection, WithEstimatedSize {

        private final List> store = Lists.newLinkedList();

        public boolean containsCollection(DomainObjectCollection collection) {
            for (DomainObjectCollection ts : store) {
                if (ts == collection) {
                    return true;
                }
            }
            return false;
        }

        @Override
        public int size() {
            int size = 0;
            for (DomainObjectCollection ts : store) {
                size += ts.size();
            }
            return size;
        }

        @Override
        public boolean isEmpty() {
            for (DomainObjectCollection ts : store) {
                if (!ts.isEmpty()) {
                    return false;
                }
            }
            return true;
        }

        @Override
        public boolean contains(Object o) {
            for (DomainObjectCollection ts : store) {
                if (ts.contains(o)) {
                    return true;
                }
            }
            return false;
        }

        @Override
        @SuppressWarnings("unchecked")
        public Iterator iterator() {
            if (store.isEmpty()) {
                return Iterators.emptyIterator();
            }
            if (store.size() == 1) {
                return (Iterator) store.get(0).iterator();
            }
            Iterator[] iterators = new Iterator[store.size()];
            int i=0;
            for (DomainObjectCollection ts : store) {
                iterators[i++] = ts.iterator();
            }
            return Iterators.concat(iterators);
        }

        @Override
        public Object[] toArray() {
            throw new UnsupportedOperationException();
        }

        @Override
        public  V[] toArray(V[] a) {
            throw new UnsupportedOperationException();
        }

        @Override
        public boolean add(T t) {
            throw new UnsupportedOperationException();
        }

        @Override
        public boolean remove(Object o) {
            throw new UnsupportedOperationException();
        }

        @Override
        public boolean containsAll(Collection c) {
            throw new UnsupportedOperationException();
        }

        @Override
        public boolean addAll(Collection c) {
            throw new UnsupportedOperationException();
        }

        @Override
        public boolean removeAll(Collection c) {
            throw new UnsupportedOperationException();
        }

        @Override
        public boolean retainAll(Collection c) {
            throw new UnsupportedOperationException();
        }

        @Override
        public void clear() {
            throw new UnsupportedOperationException();
        }

        public void addComposited(DomainObjectCollection collection) {
            this.store.add(collection);
        }

        public void removeComposited(DomainObjectCollection collection) {
            Iterator> iterator = store.iterator();
            while (iterator.hasNext()) {
                DomainObjectCollection next = iterator.next();
                if (next == collection) {
                    iterator.remove();
                    break;
                }
            }
        }

        @Override
        public int estimatedSize() {
            int size = 0;
            for (DomainObjectCollection ts : store) {
                size += Estimates.estimateSizeOf(ts);
            }
            return size;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy