001
014
015 package com.liferay.portal.cache.ehcache;
016
017 import com.liferay.portal.kernel.log.Log;
018 import com.liferay.portal.kernel.log.LogFactoryUtil;
019 import com.liferay.portal.kernel.util.InstanceFactory;
020 import com.liferay.portal.util.PropsValues;
021
022 import java.util.Properties;
023
024 import net.sf.ehcache.bootstrap.BootstrapCacheLoader;
025 import net.sf.ehcache.bootstrap.BootstrapCacheLoaderFactory;
026
027
030 public class LiferayBootstrapCacheLoaderFactory<T extends BootstrapCacheLoader>
031 extends BootstrapCacheLoaderFactory<T> {
032
033 public LiferayBootstrapCacheLoaderFactory() {
034 String className = PropsValues.EHCACHE_BOOTSTRAP_CACHE_LOADER_FACTORY;
035
036 if (PropsValues.CLUSTER_LINK_ENABLED &&
037 PropsValues.EHCACHE_CLUSTER_LINK_REPLICATION_ENABLED) {
038
039 className =
040 EhcacheStreamBootstrapCacheLoaderFactory.class.getName();
041 }
042
043 if (_log.isDebugEnabled()) {
044 _log.debug("Instantiating " + className + " " + hashCode());
045 }
046
047 try {
048 _bootstrapCacheLoaderFactory =
049 (BootstrapCacheLoaderFactory<T>)InstanceFactory.newInstance(
050 className);
051 }
052 catch (Exception e) {
053 throw new RuntimeException(e);
054 }
055 }
056
057 @Override
058 public T createBootstrapCacheLoader(Properties properties) {
059 return _bootstrapCacheLoaderFactory.createBootstrapCacheLoader(
060 properties);
061 }
062
063 private static Log _log = LogFactoryUtil.getLog(
064 LiferayBootstrapCacheLoaderFactory.class);
065
066 private BootstrapCacheLoaderFactory<T> _bootstrapCacheLoaderFactory;
067
068 }