/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* Abstract base class and factory for caches. A cache is a key-value mapping.
* It has properties that make it more suitable for caching than a Map.
*
* The factory methods can be used to obtain two different implementations.
* They have the following properties:
*
* . keys and values reside in memory
*
* . keys and values must be non-null
*
* . maximum size. Replacements are made in LRU order.
*
* . optional lifetime, specified in seconds.
*
* . save for concurrent use by multiple threads
*
* . values are held by either standard references or via SoftReferences.
* SoftReferences have the advantage that they are automatically cleared
* by the garbage collector in response to memory demand. This makes it
* possible to simple set the maximum size to a very large value and let
* the GC automatically size the cache dynamically depending on the
* amount of available memory.
*
* However, note that because of the way SoftReferences are implemented in
* HotSpot at the moment, this may not work perfectly as it clears them fairly
* eagerly. Performance may be improved if the Java heap size is set to larger
* value using e.g. java -ms64M -mx128M foo.Test
*
* Cache sizing: the memory cache is implemented on top of a LinkedHashMap.
* In its current implementation, the number of buckets (NOT entries) in
* (Linked)HashMaps is always a power of two. It is recommended to set the
* maximum cache size to value that uses those buckets fully. For example,
* if a cache with somewhere between 500 and 1000 entries is desired, a
* maximum size of 750 would be a good choice: try 1024 buckets, with a
* load factor of 0.75f, the number of entries can be calculated as
* buckets / 4 * 3. As mentioned above, with a SoftReference cache, it is
* generally reasonable to set the size to a fairly large value.
*
* @author Andreas Sterbenz
*/
public abstract class Cache {
protected Cache() {
// empty
}
/**
* Return the number of currently valid entries in the cache.
*/
public abstract int size();
/**
* Remove all entries from the cache.
*/
public abstract void clear();
/**
* Add an entry to the cache.
*/
/**
* Get a value from the cache.
*/
/**
* Remove an entry from the cache.
*/
/**
* Set the maximum size.
*/
/**
* Set the timeout(in seconds).
*/
/**
* accept a visitor
*/
/**
* Return a new memory cache with the specified maximum size, unlimited
* lifetime for entries, with the values held by SoftReferences.
*/
return new MemoryCache(true, size);
}
/**
* Return a new memory cache with the specified maximum size, the
* specified maximum lifetime (in seconds), with the values held
* by SoftReferences.
*/
}
/**
* Return a new memory cache with the specified maximum size, unlimited
* lifetime for entries, with the values held by standard references.
*/
return new MemoryCache(false, size);
}
/**
* Return a dummy cache that does nothing.
*/
}
/**
* Return a new memory cache with the specified maximum size, the
* specified maximum lifetime (in seconds), with the values held
* by standard references.
*/
}
/**
* Utility class that wraps a byte array and implements the equals()
* and hashCode() contract in a way suitable for Maps and caches.
*/
public static class EqualByteArray {
private final byte[] b;
private volatile int hash;
public EqualByteArray(byte[] b) {
this.b = b;
}
public int hashCode() {
int h = hash;
if (h == 0) {
h = b.length + 1;
for (int i = 0; i < b.length; i++) {
h += (b[i] & 0xff) * 37;
}
hash = h;
}
return h;
}
if (this == obj) {
return true;
}
if (obj instanceof EqualByteArray == false) {
return false;
}
}
}
public interface CacheVisitor {
}
}
private NullCache() {
// empty
}
public int size() {
return 0;
}
public void clear() {
// empty
}
// empty
}
return null;
}
// empty
}
// empty
}
// empty
}
// empty
}
}
// XXXX
private final static boolean DEBUG = false;
private int maxSize;
private long lifetime;
}
LOAD_FACTOR, true);
}
/**
* Empty the reference queue and remove all corresponding entries
* from the cache.
*
* This method should be called at the beginning of each public
* method.
*/
private void emptyQueue() {
return;
}
while (true) {
break;
}
// key is null, entry has already been removed
continue;
}
// check if the entry in the map corresponds to the expired
// entry. If not, readd the entry
}
}
if (DEBUG) {
}
}
}
/**
* Scan all entries and remove all expired ones.
*/
private void expungeExpiredEntries() {
emptyQueue();
if (lifetime == 0) {
return;
}
int cnt = 0;
t.hasNext(); ) {
t.remove();
cnt++;
}
}
if (DEBUG) {
if (cnt != 0) {
}
}
}
public synchronized int size() {
}
public synchronized void clear() {
// if this is a SoftReference cache, first invalidate() all
// entries so that GC does not have to enqueue them
entry.invalidate();
}
// empty
}
}
}
emptyQueue();
return;
}
if (DEBUG) {
}
t.remove();
}
}
}
emptyQueue();
return null;
}
if (DEBUG) {
}
return null;
}
}
emptyQueue();
entry.invalidate();
}
}
if (DEBUG) {
}
t.remove();
}
}
if (DEBUG) {
}
}
emptyQueue();
if (DEBUG) {
}
}
// it is a heavyweight method.
}
}
return kvmap;
}
} else {
}
}
private static interface CacheEntry {
void invalidate();
}
private long expirationTime;
this.expirationTime = expirationTime;
}
return key;
}
return value;
}
if (valid == false) {
invalidate();
}
return valid;
}
public void invalidate() {
expirationTime = -1;
}
}
private static class SoftCacheEntry
extends SoftReference implements CacheEntry {
private long expirationTime;
this.expirationTime = expirationTime;
}
return key;
}
return get();
}
if (valid == false) {
invalidate();
}
return valid;
}
public void invalidate() {
clear();
expirationTime = -1;
}
}
}