All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bixuebihui.algorithm.LRULinkedHashMap Maven / Gradle / Ivy

Go to download

a fast small database connection pool and a active record flavor mini framework

There is a newer version: 1.15.3.3
Show newest version
package com.bixuebihui.algorithm;
import java.util.LinkedHashMap;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

/**
 * 

LRULinkedHashMap class.

* * @author xingwx * @version $Id: $Id */ public class LRULinkedHashMap extends LinkedHashMap { /** * */ private static final long serialVersionUID = -1890473042891051691L; private final int maxCapacity; private static final float DEFAULT_LOAD_FACTOR = 0.75f; private final transient Lock lock = new ReentrantLock(); private transient IRemoveAction afterRemove; /** *

Constructor for LRULinkedHashMap.

* * @param maxCapacity a int. */ public LRULinkedHashMap(int maxCapacity) { super(maxCapacity, DEFAULT_LOAD_FACTOR, true); this.maxCapacity = maxCapacity; } /** *

Constructor for LRULinkedHashMap.

* * @param maxCapacity a int. * @param afterRemoveAction a {@link IRemoveAction} object. */ public LRULinkedHashMap(int maxCapacity, IRemoveAction afterRemoveAction) { super(maxCapacity, DEFAULT_LOAD_FACTOR, true); this.maxCapacity = maxCapacity; this.afterRemove = afterRemoveAction; } /** {@inheritDoc} */ @Override protected boolean removeEldestEntry(java.util.Map.Entry eldest) { boolean res = size() > maxCapacity*1.1; if(res && afterRemove!=null){ afterRemove.actionAfterRemove(eldest.getValue()); } return res; } /** {@inheritDoc} */ @Override public V get(Object key) { lock.lock(); try { return super.get(key); } finally { lock.unlock(); } } /** {@inheritDoc} */ @Override public V put(K key, V value) { lock.lock(); try { return super.put(key, value); } finally { lock.unlock(); } } /** *

Setter for the field afterRemove.

* * @param afterRemove a {@link IRemoveAction} object. */ public void setAfterRemove(IRemoveAction afterRemove) { this.afterRemove = afterRemove; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy