org.tio.utils.cache.AbstractCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mica-net-utils Show documentation
Show all versions of mica-net-utils Show documentation
Mica net is a net framework.
package org.tio.utils.cache;
import org.tio.utils.hutool.CollUtil;
import org.tio.utils.mica.ExceptionUtils;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.LongAdder;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import java.util.function.Supplier;
/**
* 超时和限制大小的缓存的默认实现
* 继承此抽象缓存需要:
*
* - 创建一个新的Map
* - 实现 {@code prune} 策略
*
*
* @param 键类型
* @param 值类型
* @author Looly, jodd
*/
public abstract class AbstractCache implements Cache {
private static final long serialVersionUID = 1L;
/**
* 数据实际存储 map
*/
private final Map> cacheMap;
/**
* 返回缓存容量,{@code 0}表示无大小限制
*/
private final int capacity;
/**
* 缓存失效时长, {@code 0} 表示无限制,单位毫秒
*/
private final long timeout;
/**
* 写的时候每个key一把锁,降低锁的粒度
*/
protected final ConcurrentHashMap keyLockMap = new ConcurrentHashMap<>();
/**
* 每个对象是否有单独的失效时长,用于决定清理过期对象是否有必要。
*/
protected boolean existCustomTimeout;
/**
* 命中数,即命中缓存计数
*/
protected LongAdder hitCount = new LongAdder();
/**
* 丢失数,即未命中缓存计数
*/
protected LongAdder missCount = new LongAdder();
/**
* 缓存监听
*/
protected transient CacheListener listener;
AbstractCache(Map> cacheMap, int capacity, long timeout) {
this.cacheMap = cacheMap;
this.capacity = capacity;
this.timeout = timeout;
}
// ---------------------------------------------------------------- put start
@Override
public void put(K key, V object) {
put(key, object, timeout);
}
/**
* 加入元素,无锁
*
* @param key 键
* @param object 值
* @param timeout 超时时长
* @since 4.5.16
*/
protected void putWithoutLock(K key, V object, long timeout) {
CacheObj co = new CacheObj<>(key, object, timeout);
if (timeout != 0) {
existCustomTimeout = true;
}
if (isFull()) {
pruneCache();
}
cacheMap.put(key, co);
}
// ---------------------------------------------------------------- put end
// ---------------------------------------------------------------- get start
/**
* @return 命中数
*/
public long getHitCount() {
return hitCount.sum();
}
/**
* @return 丢失数
*/
public long getMissCount() {
return missCount.sum();
}
@Override
public V get(K key, boolean isUpdateLastAccess, Supplier supplier) {
V v = get(key, isUpdateLastAccess);
if (null == v && null != supplier) {
//每个key单独获取一把锁,降低锁的粒度提高并发能力,see pr#1385@Github
final Lock keyLock = CollUtil.computeIfAbsent(keyLockMap, key, k -> new ReentrantLock());
keyLock.lock();
try {
// 双重检查锁,防止在竞争锁的过程中已经有其它线程写入
final CacheObj co = getWithoutLock(key);
if (null == co || co.isExpired()) {
try {
v = supplier.get();
} catch (Exception e) {
throw ExceptionUtils.unchecked(e);
}
put(key, v, this.timeout);
} else {
v = co.get(isUpdateLastAccess);
}
} finally {
keyLock.unlock();
keyLockMap.remove(key);
}
}
return v;
}
/**
* 获取键对应的{@link CacheObj}
*
* @param key 键
* @return {@link CacheObj}
*/
protected CacheObj getWithoutLock(K key) {
return this.cacheMap.get(key);
}
// ---------------------------------------------------------------- get end
// ---------------------------------------------------------------- prune start
/**
* 清理实现
* 子类实现此方法时无需加锁
*
* @return 清理数
*/
protected abstract int pruneCache();
// ---------------------------------------------------------------- prune end
// ---------------------------------------------------------------- common start
@Override
public int capacity() {
return capacity;
}
/**
* @return 默认缓存失效时长。
* 每个对象可以单独设置失效时长
*/
@Override
public long timeout() {
return timeout;
}
/**
* 只有设置公共缓存失效时长或每个对象单独的失效时长时清理可用
*
* @return 过期对象清理是否可用,内部使用
*/
protected boolean isPruneExpiredActive() {
return (timeout != 0) || existCustomTimeout;
}
@Override
public boolean isFull() {
return (capacity > 0) && (cacheMap.size() >= capacity);
}
@Override
public void clear() {
cacheMap.clear();
}
@Override
public int size() {
return cacheMap.size();
}
@Override
public boolean isEmpty() {
return cacheMap.isEmpty();
}
@Override
public String toString() {
return this.cacheMap.toString();
}
// ---------------------------------------------------------------- common end
/**
* 设置监听
*
* @param listener 监听
* @return this
*/
@Override
public AbstractCache setListener(CacheListener listener) {
this.listener = listener;
return this;
}
/**
* 返回所有键
*
* @return 所有键
* @since 5.5.9
*/
public Set keySet() {
return new HashSet<>(this.cacheMap.keySet());
}
/**
* 对象移除回调。默认无动作
* 子类可重写此方法用于监听移除事件,如果重写,listener将无效
*
* @param key 键
* @param cachedObject 被缓存的对象
*/
protected void onRemove(K key, V cachedObject) {
if (null != this.listener) {
this.listener.onRemove(key, cachedObject);
}
}
/**
* 移除key对应的对象,不加锁
*
* @param key 键
* @param withMissCount 是否计数丢失数
* @return 移除的对象,无返回null
*/
protected CacheObj removeWithoutLock(K key, boolean withMissCount) {
final CacheObj co = cacheMap.remove(key);
if (withMissCount) {
// 在丢失计数有效的情况下,移除一般为get时的超时操作,此处应该丢失数+1
this.missCount.increment();
}
return co;
}
/**
* 获取所有{@link CacheObj}值的{@link Iterator}形式
*
* @return {@link Iterator}
*/
protected Iterator> cacheObjIter() {
return this.cacheMap.values().iterator();
}
}