org.tentackle.pdo.DefaultPdoCacheFactory Maven / Gradle / Ivy
/*
* Tentackle - https://tentackle.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.tentackle.pdo;
import org.tentackle.common.Service;
import org.tentackle.session.PersistenceException;
import org.tentackle.session.Session;
import org.tentackle.session.SessionCloseHandler;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.function.BiFunction;
import java.util.function.Function;
/**
* The default Pdo-Cache factory.
*
* @author harald
*/
@Service(PdoCacheFactory.class)
public class DefaultPdoCacheFactory implements PdoCacheFactory {
// all registered caches
private final Map>, PdoCache extends PersistentDomainObject>>> cacheMap;
/**
* Creates a cache factory.
*/
public DefaultPdoCacheFactory() {
cacheMap = new HashMap<>();
Pdo.registerGlobalSessionCloseHandler(createCloseHandler());
}
/**
* Creates the session close handler.
*
* @return the close handler
*/
protected SessionCloseHandler createCloseHandler() {
return new SessionCloseHandler() {
@Override
public void beforeClose(Session session) {
// not used
}
@Override
public void afterClose(Session session) {
removeObjectsForSessionInAllCaches(session);
}
};
}
@Override
public synchronized > PdoCache createCache(
Class clazz, boolean preload, boolean readOnly, boolean checkSecurity) {
if (cacheMap.get(clazz) != null) {
throw new PersistenceException("pdo cache already registered for " + clazz);
}
PdoCache cache = new PdoCache<>(clazz, preload, readOnly, checkSecurity);
cacheMap.put(clazz, cache);
return cache;
}
@Override
public , C extends Comparable super C>> PdoCacheIndex createCacheIndex(
String name, BiFunction selectFunction, Function extractFunction) {
return new PdoCacheIndex<>(name) {
@Override
public T select(DomainContext context, C key) {
return selectFunction.apply(context, key);
}
@Override
public C extract(T pdo) {
return extractFunction.apply(pdo);
}
};
}
@Override
public synchronized Collection>> getAllCaches() {
return cacheMap.values();
}
@Override
@SuppressWarnings("unchecked")
public synchronized > PdoCache getCache(Class clazz) {
return (PdoCache) cacheMap.get(clazz);
}
@Override
public void removeObjectsForSessionInAllCaches(Session session) {
for (PdoCache extends PersistentDomainObject>> cache: getAllCaches()) {
cache.removeObjectsForSession(session);
}
}
}