Imported GNU Classpath 0.90
[official-gcc.git] / libjava / classpath / java / util / HashMap.java
bloba734af48405930b9df172030b2585fc1c1cf4f8f
1 /* HashMap.java -- a class providing a basic hashtable data structure,
2 mapping Object --> Object
3 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 This file is part of GNU Classpath.
7 GNU Classpath is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Classpath is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Classpath; see the file COPYING. If not, write to the
19 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301 USA.
22 Linking this library statically or dynamically with other modules is
23 making a combined work based on this library. Thus, the terms and
24 conditions of the GNU General Public License cover the whole
25 combination.
27 As a special exception, the copyright holders of this library give you
28 permission to link this library with independent modules to produce an
29 executable, regardless of the license terms of these independent
30 modules, and to copy and distribute the resulting executable under
31 terms of your choice, provided that you also meet, for each linked
32 independent module, the terms and conditions of the license of that
33 module. An independent module is a module which is not derived from
34 or based on this library. If you modify this library, you may extend
35 this exception to your version of the library, but you are not
36 obligated to do so. If you do not wish to do so, delete this
37 exception statement from your version. */
40 package java.util;
42 import java.io.IOException;
43 import java.io.ObjectInputStream;
44 import java.io.ObjectOutputStream;
45 import java.io.Serializable;
47 // NOTE: This implementation is very similar to that of Hashtable. If you fix
48 // a bug in here, chances are you should make a similar change to the Hashtable
49 // code.
51 // NOTE: This implementation has some nasty coding style in order to
52 // support LinkedHashMap, which extends this.
54 /**
55 * This class provides a hashtable-backed implementation of the
56 * Map interface.
57 * <p>
59 * It uses a hash-bucket approach; that is, hash collisions are handled
60 * by linking the new node off of the pre-existing node (or list of
61 * nodes). In this manner, techniques such as linear probing (which
62 * can cause primary clustering) and rehashing (which does not fit very
63 * well with Java's method of precomputing hash codes) are avoided.
64 * <p>
66 * Under ideal circumstances (no collisions), HashMap offers O(1)
67 * performance on most operations (<code>containsValue()</code> is,
68 * of course, O(n)). In the worst case (all keys map to the same
69 * hash code -- very unlikely), most operations are O(n).
70 * <p>
72 * HashMap is part of the JDK1.2 Collections API. It differs from
73 * Hashtable in that it accepts the null key and null values, and it
74 * does not support "Enumeration views." Also, it is not synchronized;
75 * if you plan to use it in multiple threads, consider using:<br>
76 * <code>Map m = Collections.synchronizedMap(new HashMap(...));</code>
77 * <p>
79 * The iterators are <i>fail-fast</i>, meaning that any structural
80 * modification, except for <code>remove()</code> called on the iterator
81 * itself, cause the iterator to throw a
82 * <code>ConcurrentModificationException</code> rather than exhibit
83 * non-deterministic behavior.
85 * @author Jon Zeppieri
86 * @author Jochen Hoenicke
87 * @author Bryce McKinlay
88 * @author Eric Blake (ebb9@email.byu.edu)
89 * @see Object#hashCode()
90 * @see Collection
91 * @see Map
92 * @see TreeMap
93 * @see LinkedHashMap
94 * @see IdentityHashMap
95 * @see Hashtable
96 * @since 1.2
97 * @status updated to 1.4
99 public class HashMap extends AbstractMap
100 implements Map, Cloneable, Serializable
103 * Default number of buckets. This is the value the JDK 1.3 uses. Some
104 * early documentation specified this value as 101. That is incorrect.
105 * Package visible for use by HashSet.
107 static final int DEFAULT_CAPACITY = 11;
110 * The default load factor; this is explicitly specified by the spec.
111 * Package visible for use by HashSet.
113 static final float DEFAULT_LOAD_FACTOR = 0.75f;
116 * Compatible with JDK 1.2.
118 private static final long serialVersionUID = 362498820763181265L;
121 * The rounded product of the capacity and the load factor; when the number
122 * of elements exceeds the threshold, the HashMap calls
123 * <code>rehash()</code>.
124 * @serial the threshold for rehashing
126 private int threshold;
129 * Load factor of this HashMap: used in computing the threshold.
130 * Package visible for use by HashSet.
131 * @serial the load factor
133 final float loadFactor;
136 * Array containing the actual key-value mappings.
137 * Package visible for use by nested and subclasses.
139 transient HashEntry[] buckets;
142 * Counts the number of modifications this HashMap has undergone, used
143 * by Iterators to know when to throw ConcurrentModificationExceptions.
144 * Package visible for use by nested and subclasses.
146 transient int modCount;
149 * The size of this HashMap: denotes the number of key-value pairs.
150 * Package visible for use by nested and subclasses.
152 transient int size;
155 * The cache for {@link #entrySet()}.
157 private transient Set entries;
160 * Class to represent an entry in the hash table. Holds a single key-value
161 * pair. Package visible for use by subclass.
163 * @author Eric Blake (ebb9@email.byu.edu)
165 static class HashEntry extends AbstractMap.BasicMapEntry
168 * The next entry in the linked list. Package visible for use by subclass.
170 HashEntry next;
173 * Simple constructor.
174 * @param key the key
175 * @param value the value
177 HashEntry(Object key, Object value)
179 super(key, value);
183 * Called when this entry is accessed via {@link #put(Object, Object)}.
184 * This version does nothing, but in LinkedHashMap, it must do some
185 * bookkeeping for access-traversal mode.
187 void access()
192 * Called when this entry is removed from the map. This version simply
193 * returns the value, but in LinkedHashMap, it must also do bookkeeping.
195 * @return the value of this key as it is removed
197 Object cleanup()
199 return value;
204 * Construct a new HashMap with the default capacity (11) and the default
205 * load factor (0.75).
207 public HashMap()
209 this(DEFAULT_CAPACITY, DEFAULT_LOAD_FACTOR);
213 * Construct a new HashMap from the given Map, with initial capacity
214 * the greater of the size of <code>m</code> or the default of 11.
215 * <p>
217 * Every element in Map m will be put into this new HashMap.
219 * @param m a Map whose key / value pairs will be put into the new HashMap.
220 * <b>NOTE: key / value pairs are not cloned in this constructor.</b>
221 * @throws NullPointerException if m is null
223 public HashMap(Map m)
225 this(Math.max(m.size() * 2, DEFAULT_CAPACITY), DEFAULT_LOAD_FACTOR);
226 putAll(m);
230 * Construct a new HashMap with a specific inital capacity and
231 * default load factor of 0.75.
233 * @param initialCapacity the initial capacity of this HashMap (&gt;=0)
234 * @throws IllegalArgumentException if (initialCapacity &lt; 0)
236 public HashMap(int initialCapacity)
238 this(initialCapacity, DEFAULT_LOAD_FACTOR);
242 * Construct a new HashMap with a specific inital capacity and load factor.
244 * @param initialCapacity the initial capacity (&gt;=0)
245 * @param loadFactor the load factor (&gt; 0, not NaN)
246 * @throws IllegalArgumentException if (initialCapacity &lt; 0) ||
247 * ! (loadFactor &gt; 0.0)
249 public HashMap(int initialCapacity, float loadFactor)
251 if (initialCapacity < 0)
252 throw new IllegalArgumentException("Illegal Capacity: "
253 + initialCapacity);
254 if (! (loadFactor > 0)) // check for NaN too
255 throw new IllegalArgumentException("Illegal Load: " + loadFactor);
257 if (initialCapacity == 0)
258 initialCapacity = 1;
259 buckets = new HashEntry[initialCapacity];
260 this.loadFactor = loadFactor;
261 threshold = (int) (initialCapacity * loadFactor);
265 * Returns the number of kay-value mappings currently in this Map.
267 * @return the size
269 public int size()
271 return size;
275 * Returns true if there are no key-value mappings currently in this Map.
277 * @return <code>size() == 0</code>
279 public boolean isEmpty()
281 return size == 0;
285 * Return the value in this HashMap associated with the supplied key,
286 * or <code>null</code> if the key maps to nothing. NOTE: Since the value
287 * could also be null, you must use containsKey to see if this key
288 * actually maps to something.
290 * @param key the key for which to fetch an associated value
291 * @return what the key maps to, if present
292 * @see #put(Object, Object)
293 * @see #containsKey(Object)
295 public Object get(Object key)
297 int idx = hash(key);
298 HashEntry e = buckets[idx];
299 while (e != null)
301 if (equals(key, e.key))
302 return e.value;
303 e = e.next;
305 return null;
309 * Returns true if the supplied object <code>equals()</code> a key
310 * in this HashMap.
312 * @param key the key to search for in this HashMap
313 * @return true if the key is in the table
314 * @see #containsValue(Object)
316 public boolean containsKey(Object key)
318 int idx = hash(key);
319 HashEntry e = buckets[idx];
320 while (e != null)
322 if (equals(key, e.key))
323 return true;
324 e = e.next;
326 return false;
330 * Puts the supplied value into the Map, mapped by the supplied key.
331 * The value may be retrieved by any object which <code>equals()</code>
332 * this key. NOTE: Since the prior value could also be null, you must
333 * first use containsKey if you want to see if you are replacing the
334 * key's mapping.
336 * @param key the key used to locate the value
337 * @param value the value to be stored in the HashMap
338 * @return the prior mapping of the key, or null if there was none
339 * @see #get(Object)
340 * @see Object#equals(Object)
342 public Object put(Object key, Object value)
344 int idx = hash(key);
345 HashEntry e = buckets[idx];
347 while (e != null)
349 if (equals(key, e.key))
351 e.access(); // Must call this for bookkeeping in LinkedHashMap.
352 Object r = e.value;
353 e.value = value;
354 return r;
356 else
357 e = e.next;
360 // At this point, we know we need to add a new entry.
361 modCount++;
362 if (++size > threshold)
364 rehash();
365 // Need a new hash value to suit the bigger table.
366 idx = hash(key);
369 // LinkedHashMap cannot override put(), hence this call.
370 addEntry(key, value, idx, true);
371 return null;
375 * Copies all elements of the given map into this hashtable. If this table
376 * already has a mapping for a key, the new mapping replaces the current
377 * one.
379 * @param m the map to be hashed into this
381 public void putAll(Map m)
383 Iterator itr = m.entrySet().iterator();
384 while (itr.hasNext())
386 Map.Entry e = (Map.Entry) itr.next();
387 // Optimize in case the Entry is one of our own.
388 if (e instanceof AbstractMap.BasicMapEntry)
390 AbstractMap.BasicMapEntry entry = (AbstractMap.BasicMapEntry) e;
391 put(entry.key, entry.value);
393 else
394 put(e.getKey(), e.getValue());
399 * Removes from the HashMap and returns the value which is mapped by the
400 * supplied key. If the key maps to nothing, then the HashMap remains
401 * unchanged, and <code>null</code> is returned. NOTE: Since the value
402 * could also be null, you must use containsKey to see if you are
403 * actually removing a mapping.
405 * @param key the key used to locate the value to remove
406 * @return whatever the key mapped to, if present
408 public Object remove(Object key)
410 int idx = hash(key);
411 HashEntry e = buckets[idx];
412 HashEntry last = null;
414 while (e != null)
416 if (equals(key, e.key))
418 modCount++;
419 if (last == null)
420 buckets[idx] = e.next;
421 else
422 last.next = e.next;
423 size--;
424 // Method call necessary for LinkedHashMap to work correctly.
425 return e.cleanup();
427 last = e;
428 e = e.next;
430 return null;
434 * Clears the Map so it has no keys. This is O(1).
436 public void clear()
438 if (size != 0)
440 modCount++;
441 Arrays.fill(buckets, null);
442 size = 0;
447 * Returns true if this HashMap contains a value <code>o</code>, such that
448 * <code>o.equals(value)</code>.
450 * @param value the value to search for in this HashMap
451 * @return true if at least one key maps to the value
452 * @see #containsKey(Object)
454 public boolean containsValue(Object value)
456 for (int i = buckets.length - 1; i >= 0; i--)
458 HashEntry e = buckets[i];
459 while (e != null)
461 if (equals(value, e.value))
462 return true;
463 e = e.next;
466 return false;
470 * Returns a shallow clone of this HashMap. The Map itself is cloned,
471 * but its contents are not. This is O(n).
473 * @return the clone
475 public Object clone()
477 HashMap copy = null;
480 copy = (HashMap) super.clone();
482 catch (CloneNotSupportedException x)
484 // This is impossible.
486 copy.buckets = new HashEntry[buckets.length];
487 copy.putAllInternal(this);
488 // Clear the entry cache. AbstractMap.clone() does the others.
489 copy.entries = null;
490 return copy;
494 * Returns a "set view" of this HashMap's keys. The set is backed by the
495 * HashMap, so changes in one show up in the other. The set supports
496 * element removal, but not element addition.
498 * @return a set view of the keys
499 * @see #values()
500 * @see #entrySet()
502 public Set keySet()
504 if (keys == null)
505 // Create an AbstractSet with custom implementations of those methods
506 // that can be overridden easily and efficiently.
507 keys = new AbstractSet()
509 public int size()
511 return size;
514 public Iterator iterator()
516 // Cannot create the iterator directly, because of LinkedHashMap.
517 return HashMap.this.iterator(KEYS);
520 public void clear()
522 HashMap.this.clear();
525 public boolean contains(Object o)
527 return containsKey(o);
530 public boolean remove(Object o)
532 // Test against the size of the HashMap to determine if anything
533 // really got removed. This is necessary because the return value
534 // of HashMap.remove() is ambiguous in the null case.
535 int oldsize = size;
536 HashMap.this.remove(o);
537 return oldsize != size;
540 return keys;
544 * Returns a "collection view" (or "bag view") of this HashMap's values.
545 * The collection is backed by the HashMap, so changes in one show up
546 * in the other. The collection supports element removal, but not element
547 * addition.
549 * @return a bag view of the values
550 * @see #keySet()
551 * @see #entrySet()
553 public Collection values()
555 if (values == null)
556 // We don't bother overriding many of the optional methods, as doing so
557 // wouldn't provide any significant performance advantage.
558 values = new AbstractCollection()
560 public int size()
562 return size;
565 public Iterator iterator()
567 // Cannot create the iterator directly, because of LinkedHashMap.
568 return HashMap.this.iterator(VALUES);
571 public void clear()
573 HashMap.this.clear();
576 return values;
580 * Returns a "set view" of this HashMap's entries. The set is backed by
581 * the HashMap, so changes in one show up in the other. The set supports
582 * element removal, but not element addition.<p>
584 * Note that the iterators for all three views, from keySet(), entrySet(),
585 * and values(), traverse the HashMap in the same sequence.
587 * @return a set view of the entries
588 * @see #keySet()
589 * @see #values()
590 * @see Map.Entry
592 public Set entrySet()
594 if (entries == null)
595 // Create an AbstractSet with custom implementations of those methods
596 // that can be overridden easily and efficiently.
597 entries = new AbstractSet()
599 public int size()
601 return size;
604 public Iterator iterator()
606 // Cannot create the iterator directly, because of LinkedHashMap.
607 return HashMap.this.iterator(ENTRIES);
610 public void clear()
612 HashMap.this.clear();
615 public boolean contains(Object o)
617 return getEntry(o) != null;
620 public boolean remove(Object o)
622 HashEntry e = getEntry(o);
623 if (e != null)
625 HashMap.this.remove(e.key);
626 return true;
628 return false;
631 return entries;
635 * Helper method for put, that creates and adds a new Entry. This is
636 * overridden in LinkedHashMap for bookkeeping purposes.
638 * @param key the key of the new Entry
639 * @param value the value
640 * @param idx the index in buckets where the new Entry belongs
641 * @param callRemove whether to call the removeEldestEntry method
642 * @see #put(Object, Object)
644 void addEntry(Object key, Object value, int idx, boolean callRemove)
646 HashEntry e = new HashEntry(key, value);
647 e.next = buckets[idx];
648 buckets[idx] = e;
652 * Helper method for entrySet(), which matches both key and value
653 * simultaneously.
655 * @param o the entry to match
656 * @return the matching entry, if found, or null
657 * @see #entrySet()
659 // Package visible, for use in nested classes.
660 final HashEntry getEntry(Object o)
662 if (! (o instanceof Map.Entry))
663 return null;
664 Map.Entry me = (Map.Entry) o;
665 Object key = me.getKey();
666 int idx = hash(key);
667 HashEntry e = buckets[idx];
668 while (e != null)
670 if (equals(e.key, key))
671 return equals(e.value, me.getValue()) ? e : null;
672 e = e.next;
674 return null;
678 * Helper method that returns an index in the buckets array for `key'
679 * based on its hashCode(). Package visible for use by subclasses.
681 * @param key the key
682 * @return the bucket number
684 final int hash(Object key)
686 return key == null ? 0 : Math.abs(key.hashCode() % buckets.length);
690 * Generates a parameterized iterator. Must be overrideable, since
691 * LinkedHashMap iterates in a different order.
693 * @param type {@link #KEYS}, {@link #VALUES}, or {@link #ENTRIES}
694 * @return the appropriate iterator
696 Iterator iterator(int type)
698 return new HashIterator(type);
702 * A simplified, more efficient internal implementation of putAll(). clone()
703 * should not call putAll or put, in order to be compatible with the JDK
704 * implementation with respect to subclasses.
706 * @param m the map to initialize this from
708 void putAllInternal(Map m)
710 Iterator itr = m.entrySet().iterator();
711 size = 0;
712 while (itr.hasNext())
714 size++;
715 Map.Entry e = (Map.Entry) itr.next();
716 Object key = e.getKey();
717 int idx = hash(key);
718 addEntry(key, e.getValue(), idx, false);
723 * Increases the size of the HashMap and rehashes all keys to new
724 * array indices; this is called when the addition of a new value
725 * would cause size() &gt; threshold. Note that the existing Entry
726 * objects are reused in the new hash table.
728 * <p>This is not specified, but the new size is twice the current size
729 * plus one; this number is not always prime, unfortunately.
731 private void rehash()
733 HashEntry[] oldBuckets = buckets;
735 int newcapacity = (buckets.length * 2) + 1;
736 threshold = (int) (newcapacity * loadFactor);
737 buckets = new HashEntry[newcapacity];
739 for (int i = oldBuckets.length - 1; i >= 0; i--)
741 HashEntry e = oldBuckets[i];
742 while (e != null)
744 int idx = hash(e.key);
745 HashEntry dest = buckets[idx];
746 HashEntry next = e.next;
747 e.next = buckets[idx];
748 buckets[idx] = e;
749 e = next;
755 * Serializes this object to the given stream.
757 * @param s the stream to write to
758 * @throws IOException if the underlying stream fails
759 * @serialData the <i>capacity</i>(int) that is the length of the
760 * bucket array, the <i>size</i>(int) of the hash map
761 * are emitted first. They are followed by size entries,
762 * each consisting of a key (Object) and a value (Object).
764 private void writeObject(ObjectOutputStream s) throws IOException
766 // Write the threshold and loadFactor fields.
767 s.defaultWriteObject();
769 s.writeInt(buckets.length);
770 s.writeInt(size);
771 // Avoid creating a wasted Set by creating the iterator directly.
772 Iterator it = iterator(ENTRIES);
773 while (it.hasNext())
775 HashEntry entry = (HashEntry) it.next();
776 s.writeObject(entry.key);
777 s.writeObject(entry.value);
782 * Deserializes this object from the given stream.
784 * @param s the stream to read from
785 * @throws ClassNotFoundException if the underlying stream fails
786 * @throws IOException if the underlying stream fails
787 * @serialData the <i>capacity</i>(int) that is the length of the
788 * bucket array, the <i>size</i>(int) of the hash map
789 * are emitted first. They are followed by size entries,
790 * each consisting of a key (Object) and a value (Object).
792 private void readObject(ObjectInputStream s)
793 throws IOException, ClassNotFoundException
795 // Read the threshold and loadFactor fields.
796 s.defaultReadObject();
798 // Read and use capacity, followed by key/value pairs.
799 buckets = new HashEntry[s.readInt()];
800 int len = s.readInt();
801 size = len;
802 while (len-- > 0)
804 Object key = s.readObject();
805 addEntry(key, s.readObject(), hash(key), false);
810 * Iterate over HashMap's entries.
811 * This implementation is parameterized to give a sequential view of
812 * keys, values, or entries.
814 * @author Jon Zeppieri
816 private final class HashIterator implements Iterator
819 * The type of this Iterator: {@link #KEYS}, {@link #VALUES},
820 * or {@link #ENTRIES}.
822 private final int type;
824 * The number of modifications to the backing HashMap that we know about.
826 private int knownMod = modCount;
827 /** The number of elements remaining to be returned by next(). */
828 private int count = size;
829 /** Current index in the physical hash table. */
830 private int idx = buckets.length;
831 /** The last Entry returned by a next() call. */
832 private HashEntry last;
834 * The next entry that should be returned by next(). It is set to something
835 * if we're iterating through a bucket that contains multiple linked
836 * entries. It is null if next() needs to find a new bucket.
838 private HashEntry next;
841 * Construct a new HashIterator with the supplied type.
842 * @param type {@link #KEYS}, {@link #VALUES}, or {@link #ENTRIES}
844 HashIterator(int type)
846 this.type = type;
850 * Returns true if the Iterator has more elements.
851 * @return true if there are more elements
853 public boolean hasNext()
855 return count > 0;
859 * Returns the next element in the Iterator's sequential view.
860 * @return the next element
861 * @throws ConcurrentModificationException if the HashMap was modified
862 * @throws NoSuchElementException if there is none
864 public Object next()
866 if (knownMod != modCount)
867 throw new ConcurrentModificationException();
868 if (count == 0)
869 throw new NoSuchElementException();
870 count--;
871 HashEntry e = next;
873 while (e == null)
874 e = buckets[--idx];
876 next = e.next;
877 last = e;
878 if (type == VALUES)
879 return e.value;
880 if (type == KEYS)
881 return e.key;
882 return e;
886 * Removes from the backing HashMap the last element which was fetched
887 * with the <code>next()</code> method.
888 * @throws ConcurrentModificationException if the HashMap was modified
889 * @throws IllegalStateException if called when there is no last element
891 public void remove()
893 if (knownMod != modCount)
894 throw new ConcurrentModificationException();
895 if (last == null)
896 throw new IllegalStateException();
898 HashMap.this.remove(last.key);
899 last = null;
900 knownMod++;