blob: ec0942f1f339ab65377d293e653fc164a47fde9f [file] [log] [blame]
/*
* 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
*
* 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 accord.utils;
import java.util.AbstractSet;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import com.google.common.collect.Iterables;
public class DeterministicSet<T> extends AbstractSet<T>
{
static class Entry<T>
{
final T item;
Entry<T> prev;
Entry<T> next;
Entry(T item)
{
this.item = item;
}
}
// TODO (low priority): create an identity hash map that doesn't mind concurrent modification / iteration; this class could then be replaced by java.util.Collections.newSetFromMap
final Map<T, Entry<T>> lookup;
final Entry<T> head = new Entry<T>(null);
public DeterministicSet()
{
this(0);
}
public DeterministicSet(int size)
{
head.prev = head.next = head;
lookup = new HashMap<>((size * 4)/3);
}
public DeterministicSet(DeterministicSet<T> copy)
{
this(copy.size());
copy.forEach(this::addInternal);
}
DeterministicSet(Map<T, Entry<T>> lookup)
{
Invariants.checkArgument(lookup.isEmpty());
head.prev = head.next = head;
this.lookup = lookup;
}
@Override
public Iterator<T> iterator()
{
return new Iterator<T>()
{
boolean hasComputedNext = false;
Entry<T> next = head;
@Override
public boolean hasNext()
{
if (!hasComputedNext)
{
// apply any deletion before deciding if hasNext
while (next.next == null)
next = next.prev;
next = next.next;
hasComputedNext = true;
}
return next != head;
}
@Override
public T next()
{
if (!hasNext())
throw new NoSuchElementException();
T result = next.item;
// defer filtering of deleted items until hasNext(), so processing of next() can have applied
hasComputedNext = false;
return result;
}
};
}
public Iterator<T> reverseIterator()
{
return new Iterator<T>()
{
Entry<T> previous = head.prev;
@Override
public boolean hasNext()
{
return previous != head;
}
@Override
public T next()
{
if (!hasNext())
throw new NoSuchElementException();
T result = previous.item;
previous = previous.prev;
return result;
}
};
}
@Override
public boolean equals(Object o)
{
if (this == o) return true;
if (!(o instanceof Iterable))
return false;
return Iterables.elementsEqual(this, (Iterable<?>) o);
}
@Override
public int hashCode()
{
int result = 1;
for (T element : this)
result = 31 * result + (element == null ? 0 : element.hashCode());
return result;
}
@Override
public int size()
{
return lookup.size();
}
boolean addInternal(T item)
{
Entry<T> entry = lookup.computeIfAbsent(item, Entry::new);
if (entry.prev != null)
return false;
entry.prev = head;
entry.next = head.next;
head.next = entry;
entry.next.prev = entry;
return true;
}
// we add to the front, and iterate in reverse order, so that we can add and remove while iterating without modifying the set we iterate over
@Override
public boolean add(T item)
{
return addInternal(item);
}
@Override
public boolean remove(Object item)
{
Entry<T> entry = lookup.remove(item);
if (entry == null)
return false;
Entry<T> prev = entry.prev, next = entry.next;
prev.next = next;
next.prev = prev;
entry.next = null; // so deletes can be detected during enumeration
return true;
}
@Override
public void forEach(Consumer<? super T> consumer)
{
Entry<T> cur = head.next;
while (cur != head)
{
consumer.accept(cur.item);
while (cur.next == null)
cur = cur.prev;
cur = cur.next;
}
}
public <P> void forEach(BiConsumer<? super P, ? super T> consumer, P parameter)
{
Entry<T> cur = head.next;
while (cur != head)
{
consumer.accept(parameter, cur.item);
while (cur.next == null)
cur = cur.prev;
cur = cur.next;
}
}
}