/** * 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.deploy.hot; import com.liferay.portal.kernel.deploy.hot.BaseHotDeployListener; import com.liferay.portal.kernel.deploy.hot.HotDeployEvent; import com.liferay.portal.kernel.deploy.hot.HotDeployException; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.servlet.ServletContextPool; import com.liferay.portal.kernel.util.HttpUtil; import com.liferay.portal.theme.ThemeLoaderFactory; import javax.servlet.ServletContext; /** * @author Brian Wing Shun Chan */ public class ThemeLoaderHotDeployListener extends BaseHotDeployListener { @Override public void invokeDeploy(HotDeployEvent hotDeployEvent) throws HotDeployException { try { doInvokeDeploy(hotDeployEvent); } catch (Throwable t) { throwHotDeployException( hotDeployEvent, "Error registering theme loader for ", t); } } @Override public void invokeUndeploy(HotDeployEvent hotDeployEvent) throws HotDeployException { try { doInvokeUndeploy(hotDeployEvent); } catch (Throwable t) { throwHotDeployException( hotDeployEvent, "Error unregistering theme loader for ", t); } } protected void doInvokeDeploy(HotDeployEvent hotDeployEvent) throws Exception { ServletContext servletContext = hotDeployEvent.getServletContext(); String servletContextName = servletContext.getServletContextName(); if (_log.isDebugEnabled()) { _log.debug("Invoking deploy for " + servletContextName); } String[] xmls = new String[] { HttpUtil.URLtoString( servletContext.getResource("/WEB-INF/liferay-theme-loader.xml")) }; if (xmls[0] == null) { return; } if (_log.isInfoEnabled()) { _log.info("Registering theme loader for " + servletContextName); } ThemeLoaderFactory.init(servletContextName, servletContext, xmls); } protected void doInvokeUndeploy(HotDeployEvent hotDeployEvent) throws Exception { ServletContext servletContext = hotDeployEvent.getServletContext(); String servletContextName = servletContext.getServletContextName(); if (_log.isDebugEnabled()) { _log.debug("Invoking undeploy for " + servletContextName); } boolean value = ThemeLoaderFactory.destroy(servletContextName); if (!value) { return; } if (_log.isInfoEnabled()) { _log.info("Unregistering theme loader for " + servletContextName); } ServletContextPool.remove(servletContextName); if (_log.isInfoEnabled()) { _log.info( "Theme loader for " + servletContextName + " unregistered successfully"); } } private static final Log _log = LogFactoryUtil.getLog( ThemeLoaderHotDeployListener.class); }