org.glassfish.deployment.autodeploy.AutoDeployService Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2008-2011 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.glassfish.deployment.autodeploy;
import com.sun.enterprise.config.serverbeans.DasConfig;
import com.sun.logging.LogDomains;
import java.beans.PropertyChangeEvent;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Properties;
import java.util.Timer;
import java.util.TimerTask;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.glassfish.deployment.common.DeploymentUtils;
import org.glassfish.internal.api.*;
import org.jvnet.hk2.annotations.Inject;
import org.jvnet.hk2.annotations.Scoped;
import org.jvnet.hk2.annotations.Service;
import org.jvnet.hk2.component.Habitat;
import org.jvnet.hk2.component.PostConstruct;
import org.jvnet.hk2.component.PreDestroy;
import org.jvnet.hk2.component.Singleton;
import org.jvnet.hk2.config.ConfigListener;
import org.jvnet.hk2.config.UnprocessedChangeEvent;
import org.jvnet.hk2.config.UnprocessedChangeEvents;
/**
* A service wrapper around the autodeployer.
*
* The module system will start this service during GlassFish start-up. In turn
* it will start the actual autodeployer to run periodically.
*
* Note that some values used by the service are known when the class is first
* started. Others can be configured dynamically. The first type are initialized
* during postConstruct. The others will trigger the delivery of config change
* events to which we respond and, as needed, stop or reschedule the timer task.
*
* @author tjquinn
*/
@Service
@Scoped(Singleton.class)
public class AutoDeployService implements PostStartup, PostConstruct, PreDestroy, ConfigListener {
@Inject
DasConfig activeDasConfig;
@Inject
Habitat habitat;
private AutoDeployer autoDeployer = null;
private Timer autoDeployerTimer;
private TimerTask autoDeployerTimerTask;
private String target;
private static final String DAS_TARGET = "server";
private static final List configPropertyNames = Arrays.asList(
"autodeploy-enabled", "autodeploy-polling-interval-in-seconds",
"autodeploy-verifier-enabled", "autodeploy-jsp-precompilation-enabled"
);
/** Cannot find the resource bundle unless we want until postConstruct to create the logger. */
private Logger logger;
private static final String DEFAULT_POLLING_INTERVAL_IN_SECONDS = "2";
private static final String DEFAULT_AUTO_DEPLOY_ENABLED = "true";
public void postConstruct() {
logger = LogDomains.getLogger(DeploymentUtils.class, LogDomains.DPL_LOGGER);
/*
* Always create the autoDeployer, even if autodeployment is not enabled.
* Just don't start it if it's not enabled.
*/
String directory = activeDasConfig.getAutodeployDir();
target = getTarget();
try {
autoDeployer = new AutoDeployer(
target,
directory,
getDefaultVirtualServer(),
Boolean.parseBoolean(activeDasConfig.getAutodeployJspPrecompilationEnabled()),
Boolean.parseBoolean(activeDasConfig.getAutodeployVerifierEnabled()),
true /* renameOnSuccess */,
true /* force deployment */,
true /* enabled when autodeployed */,
habitat
);
boolean isEnabled = isAutoDeployEnabled();
int pollingIntervalInSeconds = Integer.valueOf(DEFAULT_POLLING_INTERVAL_IN_SECONDS);
try {
pollingIntervalInSeconds = getPollingIntervalInSeconds();
} catch (NumberFormatException ex) {
logger.log(
Level.WARNING,
"enterprise.deployment.autodeploy.error_parsing_polling_interval",
new Object[] {
activeDasConfig.getAutodeployPollingIntervalInSeconds(),
ex.getClass().getName(),
ex.getLocalizedMessage()
}
);
}
if (isEnabled) {
startAutoDeployer(pollingIntervalInSeconds);
}
} catch (AutoDeploymentException e) {
logger.log(Level.SEVERE, e.getLocalizedMessage(), e);
}
}
public void preDestroy() {
stopAutoDeployer();
}
static String getValue(String value, String defaultValue) {
return (value == null || value.equals("")) ? defaultValue : value;
}
private void logConfig(String title,
boolean isEnabled,
int pollingIntervalInSeconds,
String directory) {
if (logger.isLoggable(Level.FINE)) {
logger.fine("[AutoDeploy] " + title + ", enabled=" + isEnabled +
", polling interval(seconds)=" + pollingIntervalInSeconds +
", directory=" + directory);
}
}
private String getTarget() {
// XXX should this also be configurable ?
return DAS_TARGET;
}
private String getDefaultVirtualServer() {
// XXX write this? Or should DeployCommand take care of it on behalf of all code that uses DeployCommand?
return null;
}
private boolean isAutoDeployEnabled() {
return Boolean.parseBoolean(
getValue(activeDasConfig.getAutodeployEnabled(),
DEFAULT_AUTO_DEPLOY_ENABLED));
}
private int getPollingIntervalInSeconds() throws NumberFormatException {
return Integer.parseInt(
getValue(activeDasConfig.getAutodeployPollingIntervalInSeconds(),
DEFAULT_POLLING_INTERVAL_IN_SECONDS));
}
private void startAutoDeployer(int pollingIntervalInSeconds) {
long pollingInterval = pollingIntervalInSeconds * 1000L;
autoDeployer.init();
autoDeployerTimer = new Timer("AutoDeployer", true);
autoDeployerTimer.schedule(
autoDeployerTimerTask = new TimerTask() {
@Override
public void run() {
try {
autoDeployer.run();
} catch (Exception ex) {
// shoule have been already logged
AutoDeployer.sLogger.log(Level.FINE, ex.getMessage(), ex);
}
}
},
pollingInterval,
pollingInterval);
logConfig(
"Started",
isAutoDeployEnabled(),
pollingIntervalInSeconds,
activeDasConfig.getAutodeployDir());
}
private void stopAutoDeployer() {
/*
* Tell the running autodeployer to stop, then cancel the timer task
* and the timer.
*/
logger.fine("[AutoDeploy] Stopping");
if (autoDeployer!=null)
autoDeployer.cancel(true);
if (autoDeployerTimerTask!=null)
autoDeployerTimerTask.cancel();
if (autoDeployerTimer != null) {
autoDeployerTimer.cancel();
}
}
/**
* Reschedules the autodeployer because a configuration change has altered
* the frequency.
*/
private void rescheduleAutoDeployer(int pollingIntervalInSeconds) {
logger.fine("[AutoDeploy] Restarting...");
stopAutoDeployer();
try {
autoDeployer.waitUntilIdle();
} catch (InterruptedException e) {
// XXX OK to glide through here?
}
startAutoDeployer(pollingIntervalInSeconds);
}
public UnprocessedChangeEvents changed(PropertyChangeEvent[] events) {
/*
* Deal with any changes to the DasConfig that might affect whether
* the autodeployer should be stopped or started or rescheduled with a
* different frequency. Those change are handled here, by this
* class.
*/
if (autoDeployer == null) {
return null;
}
/* Record any events we tried to process but could not. */
List unprocessedEvents = new ArrayList();
Boolean newEnabled = null;
Integer newPollingIntervalInSeconds = null;
for (PropertyChangeEvent event : events) {
if (event.getSource() instanceof DasConfig) {
String propName = event.getPropertyName();
if (configPropertyNames.contains(propName) && event.getOldValue().equals(event.getNewValue())) {
logger.fine("[AutoDeploy] Ignoring reconfig of " + propName +
" from " + event.getOldValue() + " to " + event.getNewValue());
continue;
}
/*
* Substitute any placeholders in the new and old values.
*/
final String oldValue = replaceTokens((String) event.getOldValue(), System.getProperties());
final String newValue = replaceTokens((String) event.getNewValue(), System.getProperties());
if (propName.equals("autodeploy-enabled")) {
/*
* Either start the currently stopped autodeployer or stop the
* currently running one.
*/
newEnabled = Boolean.valueOf(newValue);
logger.fine("[AutoDeploy] Reconfig - enabled changed to " + newEnabled);
} else if (propName.equals("autodeploy-polling-interval-in-seconds")) {
try {
newPollingIntervalInSeconds = new Integer(newValue);
logger.fine("[AutoDeploy] Reconfig - polling interval (seconds) changed from "
+ oldValue + " to " +
newPollingIntervalInSeconds);
} catch (NumberFormatException ex) {
logger.log(Level.WARNING, "enterprise.deployment.autodeploy.error_processing_config_change",
new Object[] {
propName,
oldValue,
newValue,
ex.getClass().getName(),
ex.getLocalizedMessage()} );
}
} else if (propName.equals("autodeploy-dir")) {
String newDir = newValue;
try {
autoDeployer.setDirectory(newDir);
logger.fine("[AutoDeploy] Reconfig - directory changed from " +
oldValue + " to " +
newDir);
} catch (AutoDeploymentException ex) {
logger.log(Level.WARNING, "enterprise.deployment.autodeploy.error_processing_config_change",
new Object[] {
propName,
oldValue,
newValue,
ex.getClass().getName(),
ex.getCause().getLocalizedMessage()});
}
} else if (propName.equals("autodeploy-verifier-enabled")) {
boolean newVerifierEnabled = Boolean.parseBoolean(newValue);
autoDeployer.setVerifierEnabled(newVerifierEnabled);
logger.fine("[AutoDeploy] Reconfig - verifierEnabled changed from " +
Boolean.parseBoolean(oldValue) +
" to " + newVerifierEnabled);
} else if (propName.equals("autodeploy-jsp-precompilation-enabled")) {
boolean newJspPrecompiled = Boolean.parseBoolean(newValue);
autoDeployer.setJspPrecompilationEnabled(newJspPrecompiled);
logger.fine("[AutoDeploy] Reconfig - jspPrecompilationEnabled changed from " +
Boolean.parseBoolean(oldValue) +
" to " + newJspPrecompiled);
}
}
}
if (newEnabled != null) {
if (newEnabled) {
startAutoDeployer(newPollingIntervalInSeconds == null ?
getPollingIntervalInSeconds() : newPollingIntervalInSeconds);
} else {
stopAutoDeployer();
}
} else {
if ((newPollingIntervalInSeconds != null) && isAutoDeployEnabled()) {
/*
* There is no change in whether the autodeployer should be running, only
* in how often it should run. If it is not running now don't
* start it. If it is running now, restart it to use the new
* polling interval.
*/
rescheduleAutoDeployer(newPollingIntervalInSeconds.intValue());
}
}
return (unprocessedEvents.size() > 0) ? new UnprocessedChangeEvents(unprocessedEvents) : null;
}
/**
* pattern is: "${" followed by all chars excluding "}" followed by "}",
* capturing into group 1 all chars between the "${" and the "}"
*/
private static final Pattern TOKEN_SUBSTITUTION = Pattern.compile("\\$\\{([^\\}]*)\\}");
private static final String SLASH_REPLACEMENT = Matcher.quoteReplacement("\\\\");
private static final String DOLLAR_REPLACEMENT = Matcher.quoteReplacement("\\$");
/**
* Searches for placeholders of the form ${token-name} in the input String, retrieves
* the property with name token-name from the Properties object, and (if
* found) replaces the token in the input string with the property value.
* @param s String possibly containing tokens
* @param values Properties object containing name/value pairs for substitution
* @return the original string with tokens substituted using their values
* from the Properties object
*/
private static String replaceTokens(final String s, final Properties values) {
final Matcher m = TOKEN_SUBSTITUTION.matcher(s);
final StringBuffer sb = new StringBuffer();
/*
* For each match, retrieve group 1 - the token - and use its value from
* the Properties object (if found there) to replace the token with the
* value.
*/
while (m.find()) {
final String propertyName = m.group(1);
final String propertyValue = values.getProperty(propertyName);
/*
* Substitute only if the properties object contained a setting
* for the placeholder we found.
*/
if (propertyValue != null) {
/*
* The next line quotes any $ signs and backslashes in the replacement string
* so they are not interpreted as meta-characters by the regular expression
* processor's appendReplacement.
*/
final String adjustedPropertyValue =
propertyValue.replaceAll("\\\\",SLASH_REPLACEMENT).
replaceAll("\\$", DOLLAR_REPLACEMENT);
final String x = s.substring(m.start(),m.end());
try {
m.appendReplacement(sb, adjustedPropertyValue);
} catch (IllegalArgumentException iae) {
System.err.println("**** appendReplacement failed: segment is " + x + "; original replacement was " + propertyValue + " and adj. replacement is " + adjustedPropertyValue + "; exc follows");
throw iae;
}
}
}
/*
* There are no more matches, so append whatever remains of the matcher's input
* string to the output.
*/
m.appendTail(sb);
return sb.toString();
}
}