/** * 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.osgi.web.servlet.jsp.compiler.internal; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.util.FileUtil; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.util.PropsValues; import java.io.File; import org.osgi.framework.Bundle; import org.osgi.framework.BundleContext; import org.osgi.framework.BundleEvent; import org.osgi.framework.BundleListener; import org.osgi.service.component.annotations.Activate; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Deactivate; /** * @author Matthew Tambara */ @Component(immediate = true) public class JspReloader { @Activate protected void activate(BundleContext bundleContext) { _bundleContext = bundleContext; _bundleContext.addBundleListener(_jspReloadBundleListener); } @Deactivate protected void deactivate() { _bundleContext.removeBundleListener(_jspReloadBundleListener); } private static String _toString(BundleEvent bundleEvent) { StringBundler sb = new StringBundler(6); sb.append("{bundle="); sb.append(bundleEvent.getBundle()); sb.append(", origin="); sb.append(bundleEvent.getOrigin()); sb.append(", type="); if (BundleEvent.UPDATED == bundleEvent.getType()) { sb.append("UPDATED}"); } else { sb.append("UNINSTALLED}"); } return sb.toString(); } private static final String _WORK_DIR = PropsValues.LIFERAY_HOME + File.separator + "work" + File.separator; private static final Log _log = LogFactoryUtil.getLog(JspReloader.class); private BundleContext _bundleContext; private final BundleListener _jspReloadBundleListener = new BundleListener() { @Override public void bundleChanged(BundleEvent bundleEvent) { int type = bundleEvent.getType(); if ((type != BundleEvent.UPDATED) && (type != BundleEvent.UNINSTALLED)) { return; } Bundle bundle = bundleEvent.getBundle(); File file = new File( _WORK_DIR, bundle.getSymbolicName() + StringPool.DASH + bundle.getVersion()); if (file.exists()) { FileUtil.deltree(file); if (_log.isDebugEnabled()) { _log.debug( "Removed Jasper work dir " + file + " on event " + _toString(bundleEvent)); } } } }; }