pascal.taie.util.collection.ArraySet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tai-e Show documentation
Show all versions of tai-e Show documentation
An easy-to-learn/use static analysis framework for Java
The newest version!
/*
* Tai-e: A Static Analysis Framework for Java
*
* Copyright (C) 2022 Tian Tan
* Copyright (C) 2022 Yue Li
*
* This file is part of Tai-e.
*
* Tai-e is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tai-e is distributed in the hope that it will be useful,but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
* Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Tai-e. If not, see .
*/
package pascal.taie.util.collection;
import javax.annotation.Nonnull;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.Objects;
import java.util.Set;
/**
* Set implementation based on ArrayList. This class should only be
* used for small set. Elements cannot be null.
* Note that remove(Object) will shift the rest elements to the end.
* TODO: if necessary, optimize remove(Object) and let add(Object) add
* element to empty hole of the array.
*/
public class ArraySet extends AbstractSetEx
implements Serializable {
public static final int DEFAULT_CAPACITY = 8;
private static final String NULL_MESSAGE = "ArraySet does not permit null element";
private final ArrayList elements;
private final int initialCapacity;
private final boolean fixedCapacity;
public ArraySet() {
this(DEFAULT_CAPACITY, true);
}
public ArraySet(int initialCapacity) {
this(initialCapacity, true);
}
public ArraySet(int initialCapacity, boolean fixedCapacity) {
this.initialCapacity = initialCapacity;
this.fixedCapacity = fixedCapacity;
elements = new ArrayList<>(initialCapacity);
}
/**
* Takes given array list as elements.
* Note that the caller should ensure that {@code elements} contains
* no duplicate elements.
*/
public ArraySet(ArrayList elements, boolean fixedCapacity) {
// assert new java.util.HashSet<>(elements).size() == elements.size();
this.elements = elements;
this.initialCapacity = elements.size();
this.fixedCapacity = fixedCapacity;
}
public ArraySet(Collection extends E> coll) {
this(coll.size(), false);
addAll(coll);
}
@Override
public boolean isEmpty() {
return elements.isEmpty();
}
@Override
public boolean contains(Object o) {
return elements.contains(o);
}
@Override
@Nonnull
public Object[] toArray() {
return elements.toArray();
}
@Override
@Nonnull
public T[] toArray(@Nonnull T[] a) {
//noinspection SuspiciousToArrayCall
return elements.toArray(a);
}
@Override
public boolean add(E e) {
Objects.requireNonNull(e, NULL_MESSAGE);
if (!elements.contains(e)) {
ensureCapacity(size() + 1);
elements.add(e);
return true;
} else {
return false;
}
}
@Override
public boolean remove(Object o) {
return o != null && elements.remove(o);
}
@Override
public boolean containsAll(@Nonnull Collection> c) {
return elements.containsAll(c);
}
@Override
public boolean addAll(Collection extends E> c) {
boolean changed = false;
for (E e : c) {
changed |= add(e);
}
return changed;
}
@Override
public boolean retainAll(@Nonnull Collection> c) {
return elements.retainAll(c);
}
@Override
public void clear() {
elements.clear();
}
@Override
@Nonnull
public Iterator iterator() {
return elements.iterator();
}
@Override
public int size() {
return elements.size();
}
@Override
public SetEx copy() {
ArraySet copy = new ArraySet<>(initialCapacity, fixedCapacity);
copy.elements.addAll(elements);
return copy;
}
@Override
public SetEx addAllDiff(Collection extends E> c) {
ArrayList diff;
if (c instanceof Set) {
diff = new ArrayList<>();
for (E e : c) {
if (add(e)) {
diff.add(e);
}
}
} else {
Set diffSet = Sets.newHybridSet();
for (E e : c) {
if (add(e)) {
// use set to efficiently filter out duplicate elements
diffSet.add(e);
}
}
diff = new ArrayList<>(diffSet);
}
return new ArraySet<>(diff, true);
}
private void ensureCapacity(int minCapacity) {
if (fixedCapacity && minCapacity > initialCapacity) {
throw new TooManyElementsException("Capacity of this ArraySet is fixed");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy