diff --git a/apps/i2psnark/java/src/net/i2p/kademlia/KBucketSet.java b/apps/i2psnark/java/src/net/i2p/kademlia/KBucketSet.java index 3b8b09db6c84919a4c6b269e09c765c5f4963be5..72ca6e574c4bafbbd9878fa4588fda1a0ae88cc5 100644 --- a/apps/i2psnark/java/src/net/i2p/kademlia/KBucketSet.java +++ b/apps/i2psnark/java/src/net/i2p/kademlia/KBucketSet.java @@ -14,7 +14,6 @@ import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.HashSet; -import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Set; @@ -24,6 +23,7 @@ import java.util.concurrent.locks.ReentrantReadWriteLock; import net.i2p.I2PAppContext; import net.i2p.data.DataHelper; import net.i2p.data.SimpleDataStructure; +import net.i2p.util.LHMCache; import net.i2p.util.Log; /** @@ -658,7 +658,7 @@ public class KBucketSet<T extends SimpleDataStructure> { public Range(T us, int bValue) { _bValue = bValue; _bigUs = new BigInteger(1, us.getData()); - _distanceCache = new LHM(256); + _distanceCache = new LHMCache(256); } /** @return 0 to max-1 or -1 for us */ @@ -697,20 +697,6 @@ public class KBucketSet<T extends SimpleDataStructure> { } } - private static class LHM<K, V> extends LinkedHashMap<K, V> { - private final int _max; - - public LHM(int max) { - super(max, 0.75f, true); - _max = max; - } - - @Override - protected boolean removeEldestEntry(Map.Entry<K, V> eldest) { - return size() > _max; - } - } - /** * For Collections.binarySearch. * getRangeBegin == getRangeEnd. diff --git a/core/java/src/net/i2p/client/I2PSessionImpl.java b/core/java/src/net/i2p/client/I2PSessionImpl.java index 349f3d678289cb3f130644425d8419117b2e4e50..eb1c6845c2fa1123aad53f902bbac83193d9b2c5 100644 --- a/core/java/src/net/i2p/client/I2PSessionImpl.java +++ b/core/java/src/net/i2p/client/I2PSessionImpl.java @@ -18,7 +18,6 @@ import java.net.Socket; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.Iterator; -import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Properties; @@ -44,6 +43,7 @@ import net.i2p.internal.I2CPMessageQueue; import net.i2p.internal.InternalClientManager; import net.i2p.internal.QueuedI2CPMessageReader; import net.i2p.util.I2PAppThread; +import net.i2p.util.LHMCache; import net.i2p.util.Log; import net.i2p.util.SimpleScheduler; import net.i2p.util.SimpleTimer; @@ -140,7 +140,7 @@ abstract class I2PSessionImpl implements I2PSession, I2CPMessageReader.I2CPMessa /** * @since 0.8.9 */ - private static final LookupCache _lookupCache = new LookupCache(16); + private static final Map<Hash, Destination> _lookupCache = new LHMCache(16); /** SSL interface (only) @since 0.8.3 */ protected static final String PROP_ENABLE_SSL = "i2cp.SSL"; @@ -985,21 +985,4 @@ abstract class I2PSessionImpl implements I2PSession, I2CPMessageReader.I2CPMessa buf.append(getPrefix()); return buf.toString(); } - - /** - * @since 0.8.9 - */ - private static class LookupCache extends LinkedHashMap<Hash, Destination> { - private final int _max; - - public LookupCache(int max) { - super(max, 0.75f, true); - _max = max; - } - - @Override - protected boolean removeEldestEntry(Map.Entry<Hash, Destination> eldest) { - return size() > _max; - } - } } diff --git a/core/java/src/net/i2p/client/naming/BlockfileNamingService.java b/core/java/src/net/i2p/client/naming/BlockfileNamingService.java index 04af6d6460a9706b50b6db25086f783d5687dae6..db7f9eebc01c57ae89538240f7aae182f73ae6da 100644 --- a/core/java/src/net/i2p/client/naming/BlockfileNamingService.java +++ b/core/java/src/net/i2p/client/naming/BlockfileNamingService.java @@ -29,6 +29,7 @@ import net.i2p.data.DataFormatException; import net.i2p.data.DataHelper; import net.i2p.data.Destination; import net.i2p.data.Hash; +import net.i2p.util.LHMCache; import net.i2p.util.Log; import net.i2p.util.SecureFileOutputStream; @@ -134,7 +135,7 @@ public class BlockfileNamingService extends DummyNamingService { super(context); _lists = new ArrayList(); _invalid = new ArrayList(); - _negativeCache = new LHM(NEGATIVE_CACHE_SIZE); + _negativeCache = new LHMCache(NEGATIVE_CACHE_SIZE); BlockFile bf = null; RAIFile raf = null; boolean readOnly = false; diff --git a/core/java/src/net/i2p/client/naming/DummyNamingService.java b/core/java/src/net/i2p/client/naming/DummyNamingService.java index 63c6cf26484d67f9b94d1d5d1ae06da6a9651428..3ce7a83984d279c165afb248d85036b90c440b52 100644 --- a/core/java/src/net/i2p/client/naming/DummyNamingService.java +++ b/core/java/src/net/i2p/client/naming/DummyNamingService.java @@ -7,13 +7,13 @@ */ package net.i2p.client.naming; -import java.util.LinkedHashMap; import java.util.Locale; import java.util.Map; import java.util.Properties; import net.i2p.I2PAppContext; import net.i2p.data.Destination; +import net.i2p.util.LHMCache; /** * A Dummy naming service that can only handle base64 and b32 destinations. @@ -30,7 +30,7 @@ class DummyNamingService extends NamingService { * Classes should take care to call removeCache() for any entries that * are invalidated. */ - private static final Map<String, Destination> _cache = new LHM(CACHE_MAX_SIZE); + private static final Map<String, Destination> _cache = new LHMCache(CACHE_MAX_SIZE); /** * The naming service should only be constructed and accessed through the @@ -115,18 +115,4 @@ class DummyNamingService extends NamingService { _cache.clear(); } } - - protected static class LHM<K, V> extends LinkedHashMap<K, V> { - private final int _max; - - public LHM(int max) { - super(max, 0.75f, true); - _max = max; - } - - @Override - protected boolean removeEldestEntry(Map.Entry<K, V> eldest) { - return size() > _max; - } - } } diff --git a/core/java/src/net/i2p/data/SDSCache.java b/core/java/src/net/i2p/data/SDSCache.java index e8f7d302d61498b0c1cab5d9221d88ebd2a95903..0c635084dbf58ae40401279952bf213040558958 100644 --- a/core/java/src/net/i2p/data/SDSCache.java +++ b/core/java/src/net/i2p/data/SDSCache.java @@ -6,10 +6,10 @@ import java.io.InputStream; import java.lang.ref.WeakReference; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; -import java.util.LinkedHashMap; import java.util.Map; import net.i2p.I2PAppContext; +import net.i2p.util.LHMCache; import net.i2p.util.SimpleByteCache; /** @@ -71,7 +71,7 @@ public class SDSCache<V extends SimpleDataStructure> { */ public SDSCache(Class<V> rvClass, int len, int max) { int size = (int) (max * FACTOR); - _cache = new LHM(size); + _cache = new LHMCache(size); _datalen = len; try { _rvCon = rvClass.getConstructor(conArg); @@ -181,18 +181,4 @@ public class SDSCache<V extends SimpleDataStructure> { rv ^= (data[i] << (i*8)); return Integer.valueOf(rv); } - - private static class LHM<K, V> extends LinkedHashMap<K, V> { - private final int _max; - - public LHM(int max) { - super(max, 0.75f, true); - _max = max; - } - - @Override - protected boolean removeEldestEntry(Map.Entry<K, V> eldest) { - return size() > _max; - } - } } diff --git a/core/java/src/net/i2p/util/LHMCache.java b/core/java/src/net/i2p/util/LHMCache.java new file mode 100644 index 0000000000000000000000000000000000000000..b0818f9fbaf00606108c55e05f5c173c70427ece --- /dev/null +++ b/core/java/src/net/i2p/util/LHMCache.java @@ -0,0 +1,24 @@ +package net.i2p.util; + +import java.util.LinkedHashMap; +import java.util.Map; + +/** + * A LinkedHashMap with a maximum size, for use as + * an LRU cache. Unsynchronized. + * + * @since 0.9.3 + */ +public class LHMCache<K, V> extends LinkedHashMap<K, V> { + private final int _max; + + public LHMCache(int max) { + super(max, 0.75f, true); + _max = max; + } + + @Override + protected boolean removeEldestEntry(Map.Entry<K, V> eldest) { + return size() > _max; + } +}