blob: 2f7a264d8d7e28aae33419a960210eeb7832f507 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2009, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.jcommons.collections;
import java.lang.reflect.Array;
import java.util.Collection;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Objects;
import java.util.RandomAccess;
import java.util.Set;
import java.util.Spliterator;
import org.eclipse.statet.jcommons.collections.IdentitySet;
import org.eclipse.statet.jcommons.collections.ImIdentityList;
import org.eclipse.statet.jcommons.collections.ImIdentitySet;
import org.eclipse.statet.jcommons.collections.ImList;
import org.eclipse.statet.jcommons.lang.NonNullByDefault;
import org.eclipse.statet.jcommons.lang.Nullable;
/**
* Immutable set implementation for a single element.
* <p>
* Comparable to <code>Collections.unmodifiableList(Collections.singletonList(...))</code>.</p>
*
* @since de.walware.ecommons.coremisc 1.5
*/
@NonNullByDefault
public final class ImSingletonIdentitySet<E> extends AbstractImList<E> implements ImIdentitySet<E>,
RandomAccess {
private class Iter extends AbstractImListIter<E> {
private int cursor;
Iter(final int index) {
this.cursor= index;
}
@Override
public boolean hasNext() {
return (this.cursor < 1);
}
@Override
public int nextIndex() {
return this.cursor;
}
@Override
public E next() {
if (this.cursor >= 1) {
throw new NoSuchElementException();
}
this.cursor++;
return ImSingletonIdentitySet.this.e;
}
@Override
public boolean hasPrevious() {
return (this.cursor > 0);
}
@Override
public int previousIndex() {
return this.cursor - 1;
}
@Override
public E previous() {
if (this.cursor <= 0) {
throw new NoSuchElementException();
}
this.cursor--;
return ImSingletonIdentitySet.this.e;
}
}
private final E e;
/**
* Create a new constant list with the specified element.
*
* @param e the element the list will contain.
*/
public ImSingletonIdentitySet(final E e) {
this.e= e;
}
@Override
public int size() {
return 1;
}
@Override
public boolean isEmpty() {
return false;
}
@Override
public boolean contains(final @Nullable Object o) {
return (this.e == o);
}
@Override
public boolean containsAll(final Collection<?> c) {
final Iterator<?> e= c.iterator();
while (e.hasNext()) {
if (!contains(e.next())) {
return false;
}
}
return true;
}
@Override
public E get(final int index) {
if (index != 0) {
throw new IndexOutOfBoundsException("index= " + index); //$NON-NLS-1$
}
return this.e;
}
@Override
public int indexOf(final @Nullable Object o) {
return (this.e == o) ? 0 : -1;
}
@Override
public int lastIndexOf(final @Nullable Object o) {
return (this.e == o) ? 0 : -1;
}
@Override
public Iterator<E> iterator() {
return new Iter(0);
}
@Override
public Spliterator<E> spliterator() {
return new ImSingletonSpliterator<>(this.e);
}
@Override
public Object[] toArray() {
return new Object[] { this.e };
}
@Override
@SuppressWarnings({ "unchecked", "null" })
public <T> T[] toArray(T[] dest) {
if (dest.length < 1) {
dest= (T[])Array.newInstance(((Class<? extends T[]>)dest.getClass()).getComponentType(), 1);
}
dest[0]= (T)this.e;
if (dest.length > 1) {
dest[1]= null;
}
return dest;
}
@Override
public void copyTo(final Object[] dest, final int destPos) {
dest[destPos]= this.e;
}
@Override
public void copyTo(final int srcPos, final Object[] dest, final int destPos, final int length) {
assert (length == 1);
dest[destPos]= this.e;
}
@Override
public ImList<E> toImList() {
return new ImSingletonList<>(this.e);
}
@Override
public ImIdentityList<E> toImIdentityList() {
return new ImSingletonIdentityList<>(this.e);
}
@Override
public int hashCode() {
return Objects.hashCode(this.e);
}
@Override
public boolean equals(final @Nullable Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof IdentitySet) {
final Set<?> other= (Set<?>) obj;
return (1 == other.size()
&& contains(other.iterator().next()) );
}
return false;
}
@Override
public String toString() {
return '[' + String.valueOf(this.e) + ']';
}
}