
com.github.xiaolyuh.cache.AbstractValueAdaptingCache Maven / Gradle / Ivy
/*
* Copyright 2002-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.xiaolyuh.cache;
import com.github.xiaolyuh.stats.CacheStats;
import com.github.xiaolyuh.support.NullValue;
import org.springframework.util.Assert;
import java.util.concurrent.Callable;
/**
* Cache 接口的抽象实现类,对公共的方法做了一写实现,如是否允许存NULL值
* 如果允许为NULL值,则需要在内部将NULL替换成{@link NullValue#INSTANCE} 对象
*
* @author yuhao.wang3
*/
public abstract class AbstractValueAdaptingCache implements Cache {
/**
* 是否允许为NULL
*/
private final boolean allowNullValues;
/**
* 缓存名称
*/
private final String name;
/**
* 是否开启统计功能
*/
private boolean stats;
/**
* 缓存统计类
*/
private CacheStats cacheStats = new CacheStats();
/**
* 通过构造方法设置缓存配置
*
* @param allowNullValues 是否允许为NULL
* @param stats 是否开启监控统计
* @param name 缓存名称
*/
protected AbstractValueAdaptingCache(boolean allowNullValues, boolean stats, String name) {
Assert.notNull(name, "缓存名称不能为NULL");
this.allowNullValues = allowNullValues;
this.stats = stats;
this.name = name;
}
/**
* 获取是否允许存NULL值
*
* @return true:允许,false:不允许
*/
public final boolean isAllowNullValues() {
return this.allowNullValues;
}
@Override
public String getName() {
return this.name;
}
@Override
@SuppressWarnings("unchecked")
public T get(Object key, Class type) {
return (T) fromStoreValue(get(key));
}
/**
* Convert the given value from the internal store to a user value
* returned from the get method (adapting {@code null}).
*
* @param storeValue the store value
* @return the value to return to the user
*/
protected Object fromStoreValue(Object storeValue) {
if (this.allowNullValues && storeValue instanceof NullValue) {
return null;
}
return storeValue;
}
/**
* Convert the given user value, as passed into the put method,
* to a value in the internal store (adapting {@code null}).
*
* @param userValue the given user value
* @return the value to store
*/
protected Object toStoreValue(Object userValue) {
if (this.allowNullValues && userValue == null) {
return NullValue.INSTANCE;
}
return userValue;
}
/**
* {@link #get(Object, Callable)} 方法加载缓存值的包装异常
*/
public class LoaderCacheValueException extends RuntimeException {
private final Object key;
public LoaderCacheValueException(Object key, Callable> loader, Throwable ex) {
super(String.format("Value for key '%s' could not be loaded using '%s'", key, loader), ex);
this.key = key;
}
public Object getKey() {
return this.key;
}
}
/**
* 获取是否开启统计
*
* @return true:开启统计,false:关闭统计
*/
public boolean isStats() {
return stats;
}
/**
* 获取统计信息
*
* @return CacheStats
*/
@Override
public CacheStats getCacheStats() {
return cacheStats;
}
}