/*
* Primitive Collections for Java.
* Copyright (C) 2002, 2003 Sren Bak
*
* This library 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 2.1 of the License, or (at your option) any later version.
*
* This library 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 this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.uwyn.rife.pcj.map;
import com.uwyn.rife.pcj.hash.DefaultIntHashFunction;
import com.uwyn.rife.pcj.util.Exceptions;
/**
* This class represents an abstract base for implementing
* maps from int values to int values. All operations that can be implemented
* using iterators
* are implemented as such. In most cases, this is
* hardly an efficient solution, and at least some of those
* methods should be overridden by sub-classes.
*
* @author Søren Bak
* @version 1.4 21-08-2003 19:34
* @since 1.0
*/
public abstract class AbstractIntKeyIntMap implements IntKeyIntMap {
/** Default constructor to be invoked by sub-classes. */
protected AbstractIntKeyIntMap() { }
public void clear() {
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
i.next();
i.remove();
}
}
public int remove(int key) {
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
i.next();
if (i.getKey() == key) {
int value = i.getValue();
i.remove();
return value;
}
}
return MapDefaults.defaultInt();
}
public void putAll(IntKeyIntMap map) {
IntKeyIntMapIterator i = map.entries();
while (i.hasNext()) {
i.next();
put(i.getKey(), i.getValue());
}
}
public boolean containsKey(int key) {
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
i.next();
if (i.getKey() == key)
return true;
}
return false;
}
public int get(int key) {
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
i.next();
if (i.getKey() == key)
return i.getValue();
}
return MapDefaults.defaultInt();
}
public boolean containsValue(int value) {
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
i.next();
if (i.getValue() == value)
return true;
}
return false;
}
public boolean equals(Object obj) {
if (!(obj instanceof IntKeyIntMap))
return false;
IntKeyIntMap map = (IntKeyIntMap)obj;
if (size() != map.size())
return false;
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
i.next();
int k = i.getKey();
if (!map.containsKey(k) || map.lget() != i.getValue())
return false;
}
return true;
}
public int hashCode() {
int h = 0;
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
i.next();
h += (DefaultIntHashFunction.INSTANCE.hash(i.getKey()) ^ DefaultIntHashFunction.INSTANCE.hash(i.getValue()));
}
return h;
}
public boolean isEmpty()
{ return size() == 0; }
public int size() {
int size = 0;
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
i.next();
size++;
}
return size;
}
public int tget(int key) {
int value = get(key);
if (value == MapDefaults.defaultInt())
if (!containsKey(key))
Exceptions.noSuchMapping(String.valueOf(key));
return value;
}
/**
* Returns a string representation of this map.
*
* @return a string representation of this map.
*/
public String toString() {
StringBuffer s = new StringBuffer();
s.append('[');
IntKeyIntMapIterator i = entries();
while (i.hasNext()) {
if (s.length() > 1)
s.append(',');
i.next();
s.append(String.valueOf(i.getKey()));
s.append("->");
s.append(String.valueOf(i.getValue()));
}
s.append(']');
return s.toString();
}
/**
* Does nothing. Sub-classes may provide an implementation to
* minimize memory usage, but this is not required since many
* implementations will always have minimal memory usage.
*/
public void trimToSize()
{ }
}
|