/* * @(#)CacheMap.java 1.4 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.jmx.remote.util; import java.lang.ref.SoftReference; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.WeakHashMap; /** *

Like WeakHashMap, except that the keys of the n most * recently-accessed entries are kept as {@link SoftReference soft * references}. Accessing an element means creating it, or retrieving * it with {@link #get(Object) get}. Because these entries are kept * with soft references, they will tend to remain even if their keys * are not referenced elsewhere. But if memory is short, they will * be removed.

*/ public class CacheMap extends WeakHashMap { /** *

Create a CacheMap that can keep up to * nSoftReferences as soft references.

* * @param nSoftReferences Maximum number of keys to keep as soft * references. Access times for {@link #get(Object) get} and * {@link #put(Object, Object) put} have a component that scales * linearly with nSoftReferences, so this value * should not be too great. * * @throws IllegalArgumentException if * nSoftReferences is negative. */ public CacheMap(int nSoftReferences) { if (nSoftReferences < 0) { throw new IllegalArgumentException("nSoftReferences = " + nSoftReferences); } this.nSoftReferences = nSoftReferences; } public Object put(Object key, Object value) { cache(key); return super.put(key, value); } public Object get(Object key) { cache(key); return super.get(key); } /* We don't override remove(Object) or try to do something with the map's iterators to detect removal. So we may keep useless entries in the soft reference list for keys that have since been removed. The assumption is that entries are added to the cache but never removed. But the behaviour is not wrong if they are in fact removed -- the caching is just less performant. */ private void cache(Object key) { Iterator it = cache.iterator(); while (it.hasNext()) { SoftReference sref = (SoftReference) it.next(); Object key1 = sref.get(); if (key1 == null) it.remove(); else if (key.equals(key1)) { // Move this element to the head of the LRU list it.remove(); cache.add(0, sref); return; } } int size = cache.size(); if (size == nSoftReferences) { if (size == 0) return; // degenerate case, equivalent to WeakHashMap it.remove(); } cache.add(0, new SoftReference(key)); } /* List of soft references for the most-recently referenced keys. The list is in most-recently-used order, i.e. the first element is the most-recently referenced key. There are never more than nSoftReferences elements of this list. If we didn't care about J2SE 1.3 compatibility, we could use LinkedHashSet in conjunction with a subclass of SoftReference whose equals and hashCode reflect the referent. */ private final LinkedList/**/ cache = new LinkedList(); private final int nSoftReferences; }