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

com.jpattern.gwt.client.cache.TimedCache Maven / Gradle / Ivy

There is a newer version: 2.45.7
Show newest version
package com.jpattern.gwt.client.cache;

import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;

/**
 * 
 * A Cache that holds objects for a fixed maximum time.
 * 
 * @author Francesco Cina
 *
 * 26/lug/2011
 */
public class TimedCache implements ICache {

	private Map map = new HashMap();
	private Map timestampMap = new HashMap();
	private final long timeToLiveMilliSeconds;
	private final int checkAllElementsAfterActions;
	private int performedActions = 0;
	private int miss = 0;
	private int hits = 0;
	
	/**
	 * 
	 * @param timeToLiveSeconds the validity time of an object in the cache
	 * @param checkAllElementsAfterActions indicate to control the validity of all the elements in the cache after n executed actions  
	 */
	public TimedCache(int timeToLiveSeconds, int checkAllElementsAfterActions) {
		this.checkAllElementsAfterActions = checkAllElementsAfterActions;
		this.timeToLiveMilliSeconds = (((long)timeToLiveSeconds) * 1000l);
	}
	
	@Override
	public void put(String key, Object value) {
		checkAllElementsValidity();
		map.put(key, value);
		timestampMap.put(key, new Date().getTime() + timeToLiveMilliSeconds);
	}

	@Override
	public Object get(String key) {
		checkAllElementsValidity();
		checkElementValidity(key);
		Object result = map.get(key);
		if (result != null) {
			hits++;
		} else {
			miss++;
		}
		return map.get(key);
	}

	@SuppressWarnings("unchecked")
	@Override
	public  T get(String key, Class clazz) {
		return (T) get(key);
	}

	@Override
	public void remove(String key) {
		checkAllElementsValidity();
		timestampMap.remove(key);
		map.remove(key);	
	}
	
	@Override
	public int cacheSize() {
		checkAllElementsValidity();
		return map.size();
	}
	
	private void checkAllElementsValidity() {
		if (performedActions++ > checkAllElementsAfterActions) {
			performedActions = 0;
			long currentTime = new Date().getTime();
			for (Iterator> i = timestampMap.entrySet().iterator(); i.hasNext();) {
				Entry entry = i.next();
				if (entry.getValue() < currentTime) {
					map.remove(entry.getKey());
					i.remove();
				}
			}

		}
	}
	
	private void checkElementValidity(String key) {
		Long timestamp = timestampMap.get(key);
		if ( (timestamp!=null) && (timestamp < new Date().getTime())) {
			remove(key);
		}
	}
	
	@Override
	public int getMissing() {
		return miss;
	}

	@Override
	public int getHits() {
		return hits;
	}

	@Override
	public int getTotalcalls() {
		return miss + hits;
	}

	@Override
	public void clear() {
		map = new HashMap();
		timestampMap = new HashMap();
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy