// by Apache sclass WeakIdentityHashMap implements Map { private final ReferenceQueue queue = new ReferenceQueue(); private Map backingStore = new HashMap(); public void clear() { backingStore.clear(); reap(); } public boolean containsKey(Object key) { reap(); return backingStore.containsKey(new IdentityWeakReference(key)); } public boolean containsValue(Object value) { reap(); return backingStore.containsValue(value); } public Set> entrySet() { reap(); Set> ret = new HashSet>(); for (Map.Entry ref : backingStore.entrySet()) { final K key = ref.getKey().get(); final V value = ref.getValue(); Map.Entry entry = new Map.Entry() { public K getKey() { return key; } public V getValue() { return value; } public V setValue(V value) { throw new UnsupportedOperationException(); } }; ret.add(entry); } return Collections.unmodifiableSet(ret); } public Set keySet() { reap(); Set ret = new HashSet(); for (IdentityWeakReference ref : backingStore.keySet()) { ret.add(ref.get()); } return Collections.unmodifiableSet(ret); } public boolean equals(Object o) { if (!(o instanceof WeakIdentityHashMap)) { return false; } return backingStore.equals(((WeakIdentityHashMap)o).backingStore); } public V get(Object key) { reap(); return backingStore.get(new IdentityWeakReference(key)); } public V put(K key, V value) { reap(); return backingStore.put(new IdentityWeakReference(key), value); } public int hashCode() { reap(); return backingStore.hashCode(); } public boolean isEmpty() { reap(); return backingStore.isEmpty(); } public void putAll(Map t) { throw new UnsupportedOperationException(); } public V remove(Object key) { reap(); return backingStore.remove(new IdentityWeakReference(key)); } public int size() { reap(); return backingStore.size(); } public Collection values() { reap(); return backingStore.values(); } private synchronized void reap() { Object zombie = queue.poll(); while (zombie != null) { IdentityWeakReference victim = (IdentityWeakReference)zombie; backingStore.remove(victim); zombie = queue.poll(); } } class IdentityWeakReference extends WeakReference { int hash; @SuppressWarnings("unchecked") IdentityWeakReference(Object obj) { super((K)obj, queue); hash = System.identityHashCode(obj); } public int hashCode() { return hash; } public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof WeakIdentityHashMap.IdentityWeakReference)) { return false; } IdentityWeakReference ref = (IdentityWeakReference)o; if (this.get() == ref.get()) { return true; } return false; } } }