/* * Copyright (c) 2008 Mozilla Foundation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ package nu.validator.collections; import java.util.AbstractSet; import java.util.Collection; import java.util.Comparator; import java.util.Iterator; import java.util.NoSuchElementException; import java.util.SortedSet; public final class HeadBiasedSortedSet<E> extends AbstractSet<E> implements SortedSet<E> { private final class Node<F> { public final F value; public Node<F> next; /** * @param value * @param next */ public Node(F value, Node<F> next) { this.value = value; this.next = next; } } private final class IteratorImpl implements Iterator<E> { private Node<E> next; /** * @param next */ IteratorImpl(Node<E> head) { this.next = head; } @Override public boolean hasNext() { return next != null; } @Override public E next() { if (next == null) { throw new NoSuchElementException(); } E rv = next.value; next = next.next; return rv; } @Override public void remove() { throw new UnsupportedOperationException(); } } private final Comparator<? super E> comparator; private final Node<E> head = new Node<>(null, null); private int size = 0; /** * @param comparator */ public HeadBiasedSortedSet(Comparator<? super E> comparator) { this.comparator = comparator; } public HeadBiasedSortedSet() { this.comparator = null; } public HeadBiasedSortedSet(SortedSet<E> set) { this.comparator = set.comparator(); // XXX this is very inefficient for (E e : set) { this.add(e); } } public HeadBiasedSortedSet(Collection<? extends E> collection) { this.comparator = null; // XXX this is very inefficient for (E e : collection) { this.add(e); } } @Override public Comparator<? super E> comparator() { return comparator; } @Override public Iterator<E> iterator() { return new IteratorImpl(head.next); } @Override public int size() { return size; } @Override public E first() { Node<E> first = head.next; if (first == null) { throw new NoSuchElementException(); } else { return first.value; } } @Override public SortedSet<E> headSet(E toElement) { throw new UnsupportedOperationException(); } @Override public E last() { Node<E> first = head.next; if (first == null) { throw new NoSuchElementException(); } else { Node<E> prev = first; while(prev.next != null) { prev = prev.next; } return prev.value; } } @Override public SortedSet<E> subSet(E fromElement, E toElement) { throw new UnsupportedOperationException(); } @Override public SortedSet<E> tailSet(E fromElement) { throw new UnsupportedOperationException(); } /** * @see java.util.AbstractCollection#add(java.lang.Object) */ @Override public boolean add(E o) { Node<E> prev = head; while (prev.next != null) { int comp = compare(o, prev.next.value); if (comp < 0) { prev.next = new Node<>(o, prev.next); size++; return true; } else if (comp == 0) { return false; } prev = prev.next; } // if we haven't returned yet, this is greater than prev.next = new Node<>(o, null); size++; return true; } @SuppressWarnings("unchecked") private int compare(E one, E other) { if (comparator == null) { return ((Comparable<E>) one).compareTo(other); } else { return comparator.compare(one, other); } } /** * @see java.util.AbstractCollection#clear() */ @Override public void clear() { size = 0; head.next = null; } }