/*
* 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 com.artima.lookup.util;
import java.util.Set;
import java.util.HashSet;
import java.util.Collection;
import java.util.AbstractSet;
import java.util.Iterator;
import java.io.Serializable;
/**
* An implementation of the <code>java.util.Set</code> interface that has
* a serialized form consistent in all virtual machines. <code>ConsistentSet</code>
* instances are unmodifiable. All mutator methods, such as <code>add</code> and
* <code>remove</code>, throw <code>UnsupportedOperationException</code>.
* This class permits the <code>null</code> element.
*
* <p>
* Although instances of this class are unmodifiable, they are not necessarily
* immutable. If a client retrieves a mutable object contained in a
* <code>ConsistentSet</code> and mutates that object, the client in effect
* mutates the state of the <code>ConsistentSet</code>. In this case, the
* serialized form of the <code>ConsistentSet</code> will also most likely
* have been mutated. A <code>ConsistentSet</code> that contains only immutable
* objects will maintain a consistent serialized form indefinitely. But a
* <code>ConsistentSet</code> that contains mutable objects will maintain a
* consistent serialized form only so long as the mutable objects are not
* mutated.
*
* @author Bill Venners
*/
public class ConsistentSet extends AbstractSet implements Serializable {
private static final long serialVersionUID = -533615203387369436L;
/**
* @serial An array of the <code>Object</code> elements contained in
* this <code>ConsistentSet</code>.
*/
private Object[] elements;
/**
* Constructs a new, empty <code>ConsistentSet</code>. All instances
* of <code>ConsistentSet</code> are unmodifiable.
*/
public ConsistentSet() {
elements = new Object[0];
}
/**
* Constructs a new <code>ConsistentSet</code> containing the elements
* in the passed collection. All instances of <code>ConsistentSet</code>
* are unmodifiable.
*
* @param init the collection whose elements are to be placed into this set.
* @throw NullPointerException if the passed <code>init</code> reference
* is <code>null</code>
*/
public ConsistentSet(Collection init) {
if (init == null) {
throw new NullPointerException();
}
// Put the collection in a HashSet to get rid of duplicates
HashSet tempSet = new HashSet(init);
elements = new Object[tempSet.size()];
Iterator it = tempSet.iterator();
for (int i = 0; it.hasNext(); ++i) {
elements[i] = it.next();
}
}
/**
* Returns an <code>iterator</code> over the elements in this set. The elements
* are returned in no particular order. Because all instances of
* <code>ConsistentSet</code> are unmodifiable, the <code>remove</code> method
* of the returned <code>Iterator</code> throws
* <code>UnsupportedOperationException</code>.
*
* @return an <code>Iterator</code> over the elements in this
* <code>ConsistentSet</code>.
*/
public Iterator iterator() {
return new Iterator() {
private int nextPos = 0;
public boolean hasNext() {
return nextPos < elements.length;
}
public Object next() {
Object next = elements[nextPos];
++nextPos;
return next;
}
public void remove() {
throw new IllegalArgumentException();
}
};
}
/**
* Returns the number of elements in this <code>ConsistentSet</code> (its cardinality).
*
* @return the number of elements in this <code>ConsistentSet</code> (its cardinality).
*/
public int size() {
return elements.length;
}
}