Start line:  
End line:  

Snippet Preview

Snippet HTML Code

Stack Overflow Questions
What issues / pitfalls must be considered when overriding equals and hashCode?
The use of weak references is something that I've never seen an implementation of so I'm trying to figure out what the use case for them is and how the implementation would work. When would you (or have you) had a need to use a WeakHashMap or WeakReference and how would it be used?
Do any of you know of a Java Map or similar standard data store that automatically purges entries after a given timeout? Preferably in an open source library that is accessible via maven? I know of ways to implement the functionality myself and have done it several times in the past, so I'm not asking for advice in that respect, but for pointers to a good reference implementation. WeakReferen...
I'm looking for a simple Java in-memory cache that has good concurrency (so LinkedHashMap isn't good enough), and which can be serialized to disk periodically. One feature I need, but which has proved hard to find, is a way to "peek" at an object. By this I mean retrieve an object from the cache without causing the cache to hold on to the object any longer than it otherwise would have. Updat...
MySql has a handy function: SELECT GET_LOCK("SomeName") This can be used to create simple, but very specific, name based locks for an application, but it requires a database connection. I have many situations like: someMethod() { // do stuff to user A for their data for feature X } It doesn't make sense to simply synchronize this method, because, for example, if this method is called...
I'm writing my first Java EE 6 web app as a learning exercise. I'm not using a framework, just JPA 2.0, EJB 3.1 and JSF 2.0. I have a Custom Converter to convert a JPA Entity stored in a SelectOne component back to an Entity. I'm using an InitialContext.lookup to obtain a reference to a Session Bean to find the relevant Entity. I'd like to create a generic Entity Converter so I don't have ...
How to design a latest recently used cache? Suppose that you have visited some items. You need to design a data structure to hold these items. Each item is associated with the latest visited time. Each time when you visit an item, check it in the data structure. If the item has been in the cache, update its visit time. Otherwise, insert it into the cache. The cache size is fixed, if it ...
So the Java WeakHashMap lets one create a map whose entries are removed if its keys become weak. But how can I create a Map whose entries are removed when the values in the map become weak? The reason I want to use a map is as a Global Hash Table which keeps track of objects according to their ID's. ID ---> Object Address Key ---> Value (Where ID is a text string) I want key-value pairs ...
I need to associate some data with a key for its lifetime, so I am using a WeakHashMap. However, in addition I need to get a key by its corresponding value. The easy way to do it is to hold on to the reference when creating a value: public class Key {} public class Value { final public Key key; public Value(Key k) { key = k; } } Of course, while I use Value in my progra...
Weak hash tables like Java's weak hash map use weak references to track the collection of unreachable keys by the garbage collector and remove bindings with that key from the collection. Weak hash tables are typically used to implement indirections from one vertex or edge in a graph to another because they allow the garbage collector to collect unreachable portions of the graph. Is there a pur...
I have read many people really like the MapMaker of Google Guava (Collections), however I cannot see any good uses of it. I have read the javadoc, and it says that it behaves like ConcurrentHashMap. It also says new MapMaker().weakKeys().makeMap() can almost always be used as a drop-in replacement for WeakHashMap. However, reading the javadocs of ConcurrentHashMap and WeakHashMap makes me won...
I use a large (millions) entries hashmap to cache values needed by an algorithm, the key is a combination of two objects as a long. Since it grows continuously (because keys in the map changes, so old ones are not needed anymore) it would be nice to be able to force wiping all the data contained in it and start again during the execution, is there a way to do effectively in Java? I mean releas...
I have a hashtable that under heavy-traffic. I want to add timeout mechanism to hashtable, remove too old records. My concerns are, - It should be lightweight - Remove operation has not time critical. I mean (timeout value is 1 hour) remove operation can be after 1 hour or and 1 hour 15 minute. There is no problem. My opinion is, I create a big array (as ring buffer)that store put time and h...
I am using a WeaekHashMap to implement a Cache. I am wondering if I am iterating over the keys of this map, and at the same time garbage collector is actively removing keys from this map, would I receive a ConcurrentModificationException ? I do not think so, because as far as I understand, concurrentmodificationexception happens because of bugs in the application code where the developer forgot...
I'm working with a program that runs lengthy SQL queries and stores the processed results in a HashMap. Currently, to get around the slow execution time of each of the 20-200 queries, I am using a fixed thread pool and a custom callable to do the searching. As a result, each callable is creating a local copy of the data which it then returns to the main program to be included in the report. I...
I have following multi threaded environment scenario - Requests are coming to a method and I want to avoid the duplicate processing of concurrent requests coming. As multiple similar requests might be waiting for being processed in blocked state. I used hashtable to keep track of processed request, but it will create memory leaks, so how should keep track of processed request and avoid the same...
I think this is a common scenario for multithreaded Java applications so I'll try to describe it here. In my Java App I've a threadExecutor object that defines a Pool of 5 Threads. ExecutorService threadExecutor = Executors.newFixedThreadPool(5); A sendCallables method is responsible to assign a List of Jobs to the Executor. I keep track of a List with an ObjectX. In this way I can referenc...
This blog post demonstrates a way to implement a mutex per string id idiom. The String ids used are to represent HttpSession ids. Why do we need to wrap a WeakReference around the Mutex instances ? Isn't it better to just create a Map from String -> Mutex ? Why do we need to call put twice ? public Mutex getMutex( String id ) { Mutex key = new MutexImpl(...
I get this question asked many times. What is a good way to answer? EDIT : Thanks everyone for all the answers.
Is there any way to find all references to an object (in Java)? I have a cache of objects, and would like to periodically scan it to see if removing the object will cause it to be destroyed.
I have a class with a static member like this: class C { static Map m=new HashMap(); { ... initialize the map with some values ... } } AFAIK, this would consume memory practically to the end of the program. I was wondering, if I could solve it with soft references, like this: class C { static volatile SoftReference<Map> m=null; static Map getM() { Map ret; if(m =...
  /*
   * Copyright 1998-2007 Sun Microsystems, Inc.  All Rights Reserved.
   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   *
   * This code is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.  Sun designates this
   * particular file as subject to the "Classpath" exception as provided
   * by Sun in the LICENSE file that accompanied this code.
  *
  * This code 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 General Public License
  * version 2 for more details (a copy is included in the LICENSE file that
  * accompanied this code).
  *
  * You should have received a copy of the GNU General Public License version
  * 2 along with this work; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  *
  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  * CA 95054 USA or visit www.sun.com if you need additional information or
  * have any questions.
  */
 
 package java.util;
A hashtable-based Map implementation with weak keys. An entry in a WeakHashMap will automatically be removed when its key is no longer in ordinary use. More precisely, the presence of a mapping for a given key will not prevent the key from being discarded by the garbage collector, that is, made finalizable, finalized, and then reclaimed. When a key has been discarded its entry is effectively removed from the map, so this class behaves somewhat differently from other Map implementations.

Both null values and the null key are supported. This class has performance characteristics similar to those of the HashMap class, and has the same efficiency parameters of initial capacity and load factor.

Like most collection classes, this class is not synchronized. A synchronized WeakHashMap may be constructed using the Collections.synchronizedMap method.

This class is intended primarily for use with key objects whose equals methods test for object identity using the == operator. Once such a key is discarded it can never be recreated, so it is impossible to do a lookup of that key in a WeakHashMap at some later time and be surprised that its entry has been removed. This class will work perfectly well with key objects whose equals methods are not based upon object identity, such as String instances. With such recreatable key objects, however, the automatic removal of WeakHashMap entries whose keys have been discarded may prove to be confusing.

The behavior of the WeakHashMap class depends in part upon the actions of the garbage collector, so several familiar (though not required) Map invariants do not hold for this class. Because the garbage collector may discard keys at any time, a WeakHashMap may behave as though an unknown thread is silently removing entries. In particular, even if you synchronize on a WeakHashMap instance and invoke none of its mutator methods, it is possible for the size method to return smaller values over time, for the isEmpty method to return false and then true, for the containsKey method to return true and later false for a given key, for the get method to return a value for a given key but later return null, for the put method to return null and the remove method to return false for a key that previously appeared to be in the map, and for successive examinations of the key set, the value collection, and the entry set to yield successively smaller numbers of elements.

Each key object in a WeakHashMap is stored indirectly as the referent of a weak reference. Therefore a key will automatically be removed only after the weak references to it, both inside and outside of the map, have been cleared by the garbage collector.

Implementation note: The value objects in a WeakHashMap are held by ordinary strong references. Thus care should be taken to ensure that value objects do not strongly refer to their own keys, either directly or indirectly, since that will prevent the keys from being discarded. Note that a value object may refer indirectly to its key via the WeakHashMap itself; that is, a value object may strongly refer to some other key object whose associated value object, in turn, strongly refers to the key of the first value object. One way to deal with this is to wrap values themselves within WeakReferences before inserting, as in: m.put(key, new WeakReference(value)), and then unwrapping upon each get.

The iterators returned by the iterator method of the collections returned by all of this class's "collection view methods" are fail-fast: if the map is structurally modified at any time after the iterator is created, in any way except through the iterator's own remove method, the iterator will throw a ConcurrentModificationException. Thus, in the face of concurrent modification, the iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future.

Note that the fail-fast behavior of an iterator cannot be guaranteed as it is, generally speaking, impossible to make any hard guarantees in the presence of unsynchronized concurrent modification. Fail-fast iterators throw ConcurrentModificationException on a best-effort basis. Therefore, it would be wrong to write a program that depended on this exception for its correctness: the fail-fast behavior of iterators should be used only to detect bugs.

This class is a member of the Java Collections Framework.

Parameters:
<K> the type of keys maintained by this map
<V> the type of mapped values
Author(s):
Doug Lea
Josh Bloch
Mark Reinhold
Since:
1.2
See also:
HashMap
java.lang.ref.WeakReference
public class WeakHashMap<K,V>
    extends AbstractMap<K,V>
    implements Map<K,V> {

    
The default initial capacity -- MUST be a power of two.
    private static final int DEFAULT_INITIAL_CAPACITY = 16;

    
The maximum capacity, used if a higher value is implicitly specified by either of the constructors with arguments. MUST be a power of two <= 1<<30.
    private static final int MAXIMUM_CAPACITY = 1 << 30;

    
The load factor used when none specified in constructor.
    private static final float DEFAULT_LOAD_FACTOR = 0.75f;

    
The table, resized as necessary. Length MUST Always be a power of two.
    Entry<K,V>[] table;

    
The number of key-value mappings contained in this weak hash map.
    private int size;

    
The next size value at which to resize (capacity * load factor).
    private int threshold;

    
The load factor for the hash table.
    private final float loadFactor;

    
Reference queue for cleared WeakEntries
    private final ReferenceQueue<Objectqueue = new ReferenceQueue<Object>();

    
The number of times this WeakHashMap has been structurally modified. Structural modifications are those that change the number of mappings in the map or otherwise modify its internal structure (e.g., rehash). This field is used to make iterators on Collection-views of the map fail-fast.

    volatile int modCount;
    @SuppressWarnings("unchecked")
    private Entry<K,V>[] newTable(int n) {
        return (Entry<K,V>[]) new Entry[n];
    }

    
Constructs a new, empty WeakHashMap with the given initial capacity and the given load factor.

Parameters:
initialCapacity The initial capacity of the WeakHashMap
loadFactor The load factor of the WeakHashMap
Throws:
java.lang.IllegalArgumentException if the initial capacity is negative, or if the load factor is nonpositive.
    public WeakHashMap(int initialCapacityfloat loadFactor) {
        if (initialCapacity < 0)
            throw new IllegalArgumentException("Illegal Initial Capacity: "+
                                               initialCapacity);
        if (initialCapacity > )
            initialCapacity = ;
        if (loadFactor <= 0 || Float.isNaN(loadFactor))
            throw new IllegalArgumentException("Illegal Load factor: "+
                                               loadFactor);
        int capacity = 1;
        while (capacity < initialCapacity)
            capacity <<= 1;
         = newTable(capacity);
        this. = loadFactor;
         = (int)(capacity * loadFactor);
    }

    
Constructs a new, empty WeakHashMap with the given initial capacity and the default load factor (0.75).

Parameters:
initialCapacity The initial capacity of the WeakHashMap
Throws:
java.lang.IllegalArgumentException if the initial capacity is negative
    public WeakHashMap(int initialCapacity) {
        this(initialCapacity);
    }

    
Constructs a new, empty WeakHashMap with the default initial capacity (16) and load factor (0.75).
    public WeakHashMap() {
        this. = ;
    }

    
Constructs a new WeakHashMap with the same mappings as the specified map. The WeakHashMap is created with the default load factor (0.75) and an initial capacity sufficient to hold the mappings in the specified map.

Parameters:
m the map whose mappings are to be placed in this map
Throws:
java.lang.NullPointerException if the specified map is null
Since:
1.3
    public WeakHashMap(Map<? extends K, ? extends V> m) {
        this(Math.max((int) (m.size() / ) + 1, 16),
             );
        putAll(m);
    }
    // internal utilities

    
Value representing null keys inside tables.
    private static final Object NULL_KEY = new Object();

    
Use NULL_KEY for key if it is null.
    private static Object maskNull(Object key) {
        return (key == null) ?  : key;
    }

    
Returns internal representation of null key back to caller as null.
    static Object unmaskNull(Object key) {
        return (key == ) ? null : key;
    }

    
Checks for equality of non-null reference x and possibly-null y. By default uses Object.equals.
    private static boolean eq(Object xObject y) {
        return x == y || x.equals(y);
    }

    
Returns index for hash code h.
    private static int indexFor(int hint length) {
        return h & (length-1);
    }

    
Expunges stale entries from the table.
    private void expungeStaleEntries() {
        for (Object x; (x = .poll()) != null; ) {
            synchronized () {
                @SuppressWarnings("unchecked")
                    Entry<K,V> e = (Entry<K,V>) x;
                int i = indexFor(e.hash.);
                Entry<K,V> prev = [i];
                Entry<K,V> p = prev;
                while (p != null) {
                    Entry<K,V> next = p.next;
                    if (p == e) {
                        if (prev == e)
                            [i] = next;
                        else
                            prev.next = next;
                        // Must not null out e.next;
                        // stale entries may be in use by a HashIterator
                        e.value = null// Help GC
                        --;
                        break;
                    }
                    prev = p;
                    p = next;
                }
            }
        }
    }

    
Returns the table after first expunging stale entries.
    private Entry<K,V>[] getTable() {
        expungeStaleEntries();
        return ;
    }

    
Returns the number of key-value mappings in this map. This result is a snapshot, and may not reflect unprocessed entries that will be removed before next attempted access because they are no longer referenced.
    public int size() {
        if ( == 0)
            return 0;
        expungeStaleEntries();
        return ;
    }

    
Returns true if this map contains no key-value mappings. This result is a snapshot, and may not reflect unprocessed entries that will be removed before next attempted access because they are no longer referenced.
    public boolean isEmpty() {
        return size() == 0;
    }

    
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.

More formally, if this map contains a mapping from a key k to a value v such that (key==null ? k==null : key.equals(k)), then this method returns v; otherwise it returns null. (There can be at most one such mapping.)

A return value of null does not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key to null. The containsKey operation may be used to distinguish these two cases.

    public V get(Object key) {
        Object k = maskNull(key);
        int h = HashMap.hash(k.hashCode());
        Entry<K,V>[] tab = getTable();
        int index = indexFor(htab.length);
        Entry<K,V> e = tab[index];
        while (e != null) {
            if (e.hash == h && eq(ke.get()))
                return e.value;
            e = e.next;
        }
        return null;
    }

    
Returns true if this map contains a mapping for the specified key.

Parameters:
key The key whose presence in this map is to be tested
Returns:
true if there is a mapping for key; false otherwise
    public boolean containsKey(Object key) {
        return getEntry(key) != null;
    }

    
Returns the entry associated with the specified key in this map. Returns null if the map contains no mapping for this key.
    Entry<K,V> getEntry(Object key) {
        Object k = maskNull(key);
        int h = HashMap.hash(k.hashCode());
        Entry<K,V>[] tab = getTable();
        int index = indexFor(htab.length);
        Entry<K,V> e = tab[index];
        while (e != null && !(e.hash == h && eq(ke.get())))
            e = e.next;
        return e;
    }

    
Associates the specified value with the specified key in this map. If the map previously contained a mapping for this key, the old value is replaced.

Parameters:
key key with which the specified value is to be associated.
value value to be associated with the specified key.
Returns:
the previous value associated with key, or null if there was no mapping for key. (A null return can also indicate that the map previously associated null with key.)
    public V put(K key, V value) {
        Object k = maskNull(key);
        int h = HashMap.hash(k.hashCode());
        Entry<K,V>[] tab = getTable();
        int i = indexFor(htab.length);
        for (Entry<K,V> e = tab[i]; e != nulle = e.next) {
            if (h == e.hash && eq(ke.get())) {
                V oldValue = e.value;
                if (value != oldValue)
                    e.value = value;
                return oldValue;
            }
        }
        ++;
        Entry<K,V> e = tab[i];
        tab[i] = new Entry<K,V>(kvaluehe);
        if (++ >= )
            resize(tab.length * 2);
        return null;
    }

    
Rehashes the contents of this map into a new array with a larger capacity. This method is called automatically when the number of keys in this map reaches its threshold. If current capacity is MAXIMUM_CAPACITY, this method does not resize the map, but sets threshold to Integer.MAX_VALUE. This has the effect of preventing future calls.

Parameters:
newCapacity the new capacity, MUST be a power of two; must be greater than current capacity unless current capacity is MAXIMUM_CAPACITY (in which case value is irrelevant).
    void resize(int newCapacity) {
        Entry<K,V>[] oldTable = getTable();
        int oldCapacity = oldTable.length;
        if (oldCapacity == ) {
             = .;
            return;
        }
        Entry<K,V>[] newTable = newTable(newCapacity);
        transfer(oldTablenewTable);
         = newTable;
        /*
         * If ignoring null elements and processing ref queue caused massive
         * shrinkage, then restore old table.  This should be rare, but avoids
         * unbounded expansion of garbage-filled tables.
         */
        if ( >=  / 2) {
             = (int)(newCapacity * );
        } else {
            expungeStaleEntries();
            transfer(newTableoldTable);
             = oldTable;
        }
    }

    
Transfers all entries from src to dest tables
    private void transfer(Entry<K,V>[] src, Entry<K,V>[] dest) {
        for (int j = 0; j < src.length; ++j) {
            Entry<K,V> e = src[j];
            src[j] = null;
            while (e != null) {
                Entry<K,V> next = e.next;
                Object key = e.get();
                if (key == null) {
                    e.next = null;  // Help GC
                    e.value = null//  "   "
                    --;
                } else {
                    int i = indexFor(e.hashdest.length);
                    e.next = dest[i];
                    dest[i] = e;
                }
                e = next;
            }
        }
    }

    
Copies all of the mappings from the specified map to this map. These mappings will replace any mappings that this map had for any of the keys currently in the specified map.

Parameters:
m mappings to be stored in this map.
Throws:
java.lang.NullPointerException if the specified map is null.
    public void putAll(Map<? extends K, ? extends V> m) {
        int numKeysToBeAdded = m.size();
        if (numKeysToBeAdded == 0)
            return;
        /*
         * Expand the map if the map if the number of mappings to be added
         * is greater than or equal to threshold.  This is conservative; the
         * obvious condition is (m.size() + size) >= threshold, but this
         * condition could result in a map with twice the appropriate capacity,
         * if the keys to be added overlap with the keys already in this map.
         * By using the conservative calculation, we subject ourself
         * to at most one extra resize.
         */
        if (numKeysToBeAdded > ) {
            int targetCapacity = (int)(numKeysToBeAdded /  + 1);
            if (targetCapacity > )
                targetCapacity = ;
            int newCapacity = .;
            while (newCapacity < targetCapacity)
                newCapacity <<= 1;
            if (newCapacity > .)
                resize(newCapacity);
        }
        for (Map.Entry<? extends K, ? extends V> e : m.entrySet())
            put(e.getKey(), e.getValue());
    }

    
Removes the mapping for a key from this weak hash map if it is present. More formally, if this map contains a mapping from key k to value v such that (key==null ? k==null : key.equals(k)), that mapping is removed. (The map can contain at most one such mapping.)

Returns the value to which this map previously associated the key, or null if the map contained no mapping for the key. A return value of null does not necessarily indicate that the map contained no mapping for the key; it's also possible that the map explicitly mapped the key to null.

The map will not contain a mapping for the specified key once the call returns.

Parameters:
key key whose mapping is to be removed from the map
Returns:
the previous value associated with key, or null if there was no mapping for key
    public V remove(Object key) {
        Object k = maskNull(key);
        int h = HashMap.hash(k.hashCode());
        Entry<K,V>[] tab = getTable();
        int i = indexFor(htab.length);
        Entry<K,V> prev = tab[i];
        Entry<K,V> e = prev;
        while (e != null) {
            Entry<K,V> next = e.next;
            if (h == e.hash && eq(ke.get())) {
                ++;
                --;
                if (prev == e)
                    tab[i] = next;
                else
                    prev.next = next;
                return e.value;
            }
            prev = e;
            e = next;
        }
        return null;
    }

    
Special version of remove needed by Entry set
    boolean removeMapping(Object o) {
        if (!(o instanceof Map.Entry))
            return false;
        Entry<K,V>[] tab = getTable();
        Map.Entry<?,?> entry = (Map.Entry<?,?>)o;
        Object k = maskNull(entry.getKey());
        int h = HashMap.hash(k.hashCode());
        int i = indexFor(htab.length);
        Entry<K,V> prev = tab[i];
        Entry<K,V> e = prev;
        while (e != null) {
            Entry<K,V> next = e.next;
            if (h == e.hash && e.equals(entry)) {
                ++;
                --;
                if (prev == e)
                    tab[i] = next;
                else
                    prev.next = next;
                return true;
            }
            prev = e;
            e = next;
        }
        return false;
    }

    
Removes all of the mappings from this map. The map will be empty after this call returns.
    public void clear() {
        // clear out ref queue. We don't need to expunge entries
        // since table is getting cleared.
        while (.poll() != null)
            ;
        ++;
        Arrays.fill(null);
         = 0;
        // Allocation of array may have caused GC, which may have caused
        // additional entries to go stale.  Removing these entries from the
        // reference queue will make them eligible for reclamation.
        while (.poll() != null)
            ;
    }

    
Returns true if this map maps one or more keys to the specified value.

Parameters:
value value whose presence in this map is to be tested
Returns:
true if this map maps one or more keys to the specified value
    public boolean containsValue(Object value) {
        if (value==null)
            return containsNullValue();
        Entry<K,V>[] tab = getTable();
        for (int i = tab.lengthi-- > 0;)
            for (Entry<K,V> e = tab[i]; e != nulle = e.next)
                if (value.equals(e.value))
                    return true;
        return false;
    }

    
Special-case code for containsValue with null argument
    private boolean containsNullValue() {
        Entry<K,V>[] tab = getTable();
        for (int i = tab.lengthi-- > 0;)
            for (Entry<K,V> e = tab[i]; e != nulle = e.next)
                if (e.value==null)
                    return true;
        return false;
    }

    
The entries in this hash table extend WeakReference, using its main ref field as the key.
    private static class Entry<K,V> extends WeakReference<Objectimplements Map.Entry<K,V> {
        V value;
        final int hash;
        Entry<K,V> next;

        
Creates new entry.
        Entry(Object key, V value,
              ReferenceQueue<Objectqueue,
              int hashEntry<K,V> next) {
            super(keyqueue);
            this. = value;
            this.  = hash;
            this.  = next;
        }
        @SuppressWarnings("unchecked")
        public K getKey() {
            return (K) WeakHashMap.unmaskNull(get());
        }
        public V getValue() {
            return ;
        }
        public V setValue(V newValue) {
            V oldValue = ;
             = newValue;
            return oldValue;
        }
        public boolean equals(Object o) {
            if (!(o instanceof Map.Entry))
                return false;
            Map.Entry<?,?> e = (Map.Entry<?,?>)o;
            K k1 = getKey();
            Object k2 = e.getKey();
            if (k1 == k2 || (k1 != null && k1.equals(k2))) {
                V v1 = getValue();
                Object v2 = e.getValue();
                if (v1 == v2 || (v1 != null && v1.equals(v2)))
                    return true;
            }
            return false;
        }
        public int hashCode() {
            K k = getKey();
            V v = getValue();
            return ((k==null ? 0 : k.hashCode()) ^
                    (v==null ? 0 : v.hashCode()));
        }
        public String toString() {
            return getKey() + "=" + getValue();
        }
    }
    private abstract class HashIterator<T> implements Iterator<T> {
        private int index;
        private Entry<K,V> entry = null;
        private Entry<K,V> lastReturned = null;
        private int expectedModCount = ;

        
Strong reference needed to avoid disappearance of key between hasNext and next
        private Object nextKey = null;

        
Strong reference needed to avoid disappearance of key between nextEntry() and any use of the entry
        private Object currentKey = null;
        HashIterator() {
             = isEmpty() ? 0 : .;
        }
        public boolean hasNext() {
            Entry<K,V>[] t = ;
            while ( == null) {
                Entry<K,V> e = ;
                int i = ;
                while (e == null && i > 0)
                    e = t[--i];
                 = e;
                 = i;
                if (e == null) {
                     = null;
                    return false;
                }
                 = e.get(); // hold on to key in strong ref
                if ( == null)
                     = .;
            }
            return true;
        }

        
The common parts of next() across different types of iterators
        protected Entry<K,V> nextEntry() {
            if ( != )
                throw new ConcurrentModificationException();
            if ( == null && !hasNext())
                throw new NoSuchElementException();
             = ;
             = .;
             = ;
             = null;
            return ;
        }
        public void remove() {
            if ( == null)
                throw new IllegalStateException();
            if ( != )
                throw new ConcurrentModificationException();
            WeakHashMap.this.remove();
             = ;
             = null;
             = null;
        }
    }
    private class ValueIterator extends HashIterator<V> {
        public V next() {
            return nextEntry().;
        }
    }
    private class KeyIterator extends HashIterator<K> {
        public K next() {
            return nextEntry().getKey();
        }
    }
    private class EntryIterator extends HashIterator<Map.Entry<K,V>> {
        public Map.Entry<K,V> next() {
            return nextEntry();
        }
    }
    // Views
    private transient Set<Map.Entry<K,V>> entrySet = null;

    
Returns a Set view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll, and clear operations. It does not support the add or addAll operations.
    public Set<K> keySet() {
        Set<K> ks = ;
        return (ks != null ? ks : ( = new KeySet()));
    }
    private class KeySet extends AbstractSet<K> {
        public Iterator<K> iterator() {
            return new KeyIterator();
        }
        public int size() {
            return WeakHashMap.this.size();
        }
        public boolean contains(Object o) {
            return containsKey(o);
        }
        public boolean remove(Object o) {
            if (containsKey(o)) {
                WeakHashMap.this.remove(o);
                return true;
            }
            else
                return false;
        }
        public void clear() {
            WeakHashMap.this.clear();
        }
    }

    
Returns a Collection view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. If the map is modified while an iteration over the collection is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. The collection supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Collection.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.
    public Collection<V> values() {
        Collection<V> vs = ;
        return (vs != null) ? vs : ( = new Values());
    }
    private class Values extends AbstractCollection<V> {
        public Iterator<V> iterator() {
            return new ValueIterator();
        }
        public int size() {
            return WeakHashMap.this.size();
        }
        public boolean contains(Object o) {
            return containsValue(o);
        }
        public void clear() {
            WeakHashMap.this.clear();
        }
    }

    
Returns a Set view of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation, or through the setValue operation on a map entry returned by the iterator) the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.
    public Set<Map.Entry<K,V>> entrySet() {
        Set<Map.Entry<K,V>> es = ;
        return es != null ? es : ( = new EntrySet());
    }
    private class EntrySet extends AbstractSet<Map.Entry<K,V>> {
        public Iterator<Map.Entry<K,V>> iterator() {
            return new EntryIterator();
        }
        public boolean contains(Object o) {
            if (!(o instanceof Map.Entry))
                return false;
            Map.Entry<?,?> e = (Map.Entry<?,?>)o;
            Entry<K,V> candidate = getEntry(e.getKey());
            return candidate != null && candidate.equals(e);
        }
        public boolean remove(Object o) {
            return removeMapping(o);
        }
        public int size() {
            return WeakHashMap.this.size();
        }
        public void clear() {
            WeakHashMap.this.clear();
        }
        private List<Map.Entry<K,V>> deepCopy() {
            List<Map.Entry<K,V>> list =
                new ArrayList<Map.Entry<K,V>>(size());
            for (Map.Entry<K,V> e : this)
                list.add(new AbstractMap.SimpleEntry<K,V>(e));
            return list;
        }
        public Object[] toArray() {
            return deepCopy().toArray();
        }
        public <T> T[] toArray(T[] a) {
            return deepCopy().toArray(a);
        }
    }
New to GrepCode? Check out our FAQ X