/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * 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. */ package com.liferay.portal.template.velocity.internal; import com.liferay.portal.configuration.metatype.bnd.util.ConfigurableUtil; import com.liferay.portal.kernel.cache.MultiVMPool; import com.liferay.portal.kernel.cache.SingleVMPool; import com.liferay.portal.kernel.template.TemplateConstants; import com.liferay.portal.kernel.template.TemplateResource; import com.liferay.portal.kernel.template.TemplateResourceLoader; import com.liferay.portal.template.DefaultTemplateResourceLoader; import com.liferay.portal.template.velocity.configuration.VelocityEngineConfiguration; import java.util.Map; import org.osgi.service.component.annotations.Activate; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.ConfigurationPolicy; import org.osgi.service.component.annotations.Deactivate; import org.osgi.service.component.annotations.Modified; import org.osgi.service.component.annotations.Reference; /** * @author Igor Spasic * @author Peter Fellwock */ @Component( configurationPid = "com.liferay.portal.template.velocity.configuration.VelocityEngineConfiguration", configurationPolicy = ConfigurationPolicy.OPTIONAL, immediate = true, service = { TemplateResourceLoader.class, VelocityTemplateResourceLoader.class } ) public class VelocityTemplateResourceLoader implements TemplateResourceLoader { @Override public void clearCache() { _defaultTemplateResourceLoader.clearCache(); } @Override public void clearCache(String templateId) { _defaultTemplateResourceLoader.clearCache(templateId); } @Deactivate @Override public void destroy() { _defaultTemplateResourceLoader.destroy(); } @Override public String getName() { return _defaultTemplateResourceLoader.getName(); } @Override public TemplateResource getTemplateResource(String templateId) { return _defaultTemplateResourceLoader.getTemplateResource(templateId); } @Override public boolean hasTemplateResource(String templateId) { return _defaultTemplateResourceLoader.hasTemplateResource(templateId); } @Activate @Modified protected void activate(Map<String, Object> properties) { _velocityEngineConfiguration = ConfigurableUtil.createConfigurable( VelocityEngineConfiguration.class, properties); _defaultTemplateResourceLoader = new DefaultTemplateResourceLoader( TemplateConstants.LANG_TYPE_VM, null, _velocityEngineConfiguration.resourceModificationCheckInterval(), _multiVMPool, _singleVMPool); } @Reference(unbind = "-") protected void setMultiVMPool(MultiVMPool multiVMPool) { _multiVMPool = multiVMPool; } @Reference(unbind = "-") protected void setSingleVMPool(SingleVMPool singleVMPool) { _singleVMPool = singleVMPool; } private static volatile DefaultTemplateResourceLoader _defaultTemplateResourceLoader; private static volatile VelocityEngineConfiguration _velocityEngineConfiguration; private MultiVMPool _multiVMPool; private SingleVMPool _singleVMPool; }