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

com.base4j.cache.store.ehcache.EhCache Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.base4j.cache.store.ehcache;

import java.util.List;

import com.base4j.cache.CacheException;
import com.base4j.cache.CacheExpiredListener;
import com.base4j.cache.store.SuperCache;
import com.base4j.cache.store.redis.RedisCache;
import net.sf.ehcache.Ehcache;
import net.sf.ehcache.Element;
import net.sf.ehcache.event.CacheEventListener;

/**
 * 缓存的EhCache实现
 *
 * @author FY
 */
public class EhCache extends SuperCache implements   CacheEventListener {


	private final net.sf.ehcache.Cache cache;
    private final CacheExpiredListener listener;

    public EhCache(net.sf.ehcache.Cache cache, CacheExpiredListener listener) {
        this.cache = cache;
        this.cache.getCacheEventNotificationService().registerListener(this);
        this.listener = listener;
    }

    @Override
    public Object gets(Object key) throws CacheException {
        try {
            if (key == null) {
                return null;
            } else {
                Element element = cache.get(key);
                if (element != null) {
                    return element.getObjectValue();
                }
                return null;
            }
        } catch (net.sf.ehcache.CacheException e) {
            throw new CacheException(e);
        }
    }

    @Override
    public void put(Object key, Object value) throws CacheException {
        try {
            Element element = new Element(key, value);
            cache.put(element);
        }
        catch (IllegalArgumentException | net.sf.ehcache.CacheException | IllegalStateException e) {
            throw new CacheException(e);
        }
    }

    @Override
    public void evict(Object key) throws CacheException {
        try {
            cache.remove(key);
        }
        catch (IllegalStateException | net.sf.ehcache.CacheException e) {
            throw new CacheException(e);
        }
    }

    @Override
    public void evict(List keys) throws CacheException {
        cache.removeAll(keys);
    }

    @Override
    public List keys() throws CacheException {
        return cache.getKeys();
    }

    @Override
    public void clear() throws CacheException {
        try {
            cache.removeAll();
        } catch (net.sf.ehcache.CacheException e) {
            throw new CacheException(e);
        }

    }

    @Override
    public void destroy() throws CacheException {
        try {
            cache.getCacheManager().removeCache(cache.getName());
        }
        catch (IllegalStateException | net.sf.ehcache.CacheException e) {
            throw new CacheException(e);
        }
    }

    // ---------------------------------
    /** 重写来自 {@link CacheEventListener} 的时间通知方法,用以实现自定义缓存策略 */
    // ---------------------------------

    @Override
    public void notifyElementRemoved(Ehcache ehcache, Element element) throws net.sf.ehcache.CacheException {

    }

    @Override
    public void notifyElementPut(Ehcache ehcache, Element element) throws net.sf.ehcache.CacheException {

    }

    @Override
    public void notifyElementUpdated(Ehcache ehcache, Element element) throws net.sf.ehcache.CacheException {

    }

    /**
     * 缓存是过期时的通知,在这里实现集群广播
     * @param ehcache {@link EhCache}
     * @param element {@link Element}
     */
    @Override
    public void notifyElementExpired(Ehcache ehcache, Element element) {
        if (listener != null) {
            listener.notifyElementExpired(ehcache.getName(), element.getObjectKey());
        }
    }

    @Override
    public void notifyElementEvicted(Ehcache ehcache, Element element) {

    }

    @Override
    public void notifyRemoveAll(Ehcache ehcache) {

    }

    @Override
    public void dispose() {

    }

    @Override
    public Object clone() throws CloneNotSupportedException {
        throw new CloneNotSupportedException();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy