org.netbeans.modules.tomcat5.deploy.TomcatModuleConfig Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.tomcat5.deploy;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.netbeans.modules.tomcat5.config.gen.Context;
import org.netbeans.modules.tomcat5.config.gen.Engine;
import org.netbeans.modules.tomcat5.config.gen.Host;
import org.netbeans.modules.tomcat5.config.gen.SContext;
import org.netbeans.modules.tomcat5.config.gen.Server;
import org.netbeans.modules.tomcat5.config.gen.Service;
/**
* TomcatModuleConfig
offers easy access to some context.xml and
* server.xml settings.
*
* @author Stepan Herold
*/
public class TomcatModuleConfig {
private static final String CONTEXT_XML_PATH = "/META-INF/context.xml"; // NOI18N
private File contextXml;
private File serverXml;
private long timestampContextXML;
private long timestampServerXML;
private String path;
// context logger settings
private boolean hasLogger;
private String loggerClassName;
private String loggerDir;
private String loggerPrefix;
private String loggerSuffix;
private boolean loggerTimestamp;
/**
* Creates a new instance of TomcatModuleConfig.
*
* @param docBase document base class.
* @param path context path.
* @param serverXmlPath path to server.xml file.
*/
public TomcatModuleConfig(String docBase, String path, String serverXmlPath) {
if (path.equals("/")) {
this.path = ""; // NOI18N
} else {
this.path = path;
}
contextXml = new File(docBase + CONTEXT_XML_PATH);
serverXml = new File(serverXmlPath);
refresh();
}
/**
* Returns context from META-INF/context.xml if exists, null
otherwise
* @return context from META-INF/context.xml if exists, null
otherwise
*/
private Context getContext() {
try {
timestampContextXML = contextXml.lastModified();
Context ctx = Context.createGraph(contextXml);
return ctx;
} catch (IOException | RuntimeException ioe) {
Logger.getLogger(TomcatModuleConfig.class.getName()).log(Level.INFO, null, ioe);
return null;
}
}
/**
* Returns context element from server.xml if defined, null
otherwise
* @return context element from server.xml if defined, null
otherwise
*/
private SContext getSContext() {
try {
timestampServerXML = serverXml.lastModified();
Server server = Server.createGraph(serverXml);
// Looks for the first appearance of the service and host element.
// (ide currently does not support multiple service and host elements).
Service[] service = server.getService();
if (service.length > 0) {
Engine engine = service[0].getEngine();
if (engine != null) {
Host[] host = engine.getHost();
if (host.length > 0) {
SContext[] sContext = host[0].getSContext();
for (int i = 0; i < sContext.length; i++) {
if (sContext[i].getAttributeValue("path").equals(path)) { // NOI18N
return sContext[i];
}
}
}
}
}
} catch (IOException ioe) {
Logger.getLogger(TomcatModuleConfig.class.getName()).log(Level.INFO, null, ioe);
}
return null;
}
/**
* Returns true
if there is a logger defined for this module,
* false
otherwise.
*
* @return true
if there is a logger defined for this module,
* false
otherwise.
*/
public boolean hasLogger() {
return hasLogger;
}
/**
* Return logger class name.
*
* @return logger class name.
*/
public String loggerClassName() {
return loggerClassName;
}
/**
* Return logger directory.
*
* @return logger directory.
*/
public String loggerDir() {
return loggerDir;
}
/**
* Return logger prefix.
*
* @return logger prefix.
*/
public String loggerPrefix() {
return loggerPrefix;
}
/**
* Return logger suffix.
*
* @return logger suffix.
*/
public String loggerSuffix() {
return loggerSuffix;
}
/**
* Return true
whether logger timestamps messages, false
* otherwise.
*
* @return true
whether logger timestamps messages, false
* otherwise.
*/
public boolean loggerTimestamp() {
return loggerTimestamp;
}
/**
* Refresh cached values if the context.xml or server.xml file changed.
*/
public void refresh() {
if (contextXml.exists()) {
long newTimestamp = contextXml.lastModified();
if (newTimestamp > timestampContextXML) {
timestampContextXML = newTimestamp;
Context ctx = getContext();
if (ctx != null) {
hasLogger = ctx.isLogger();
if (hasLogger) {
loggerClassName = ctx.getLoggerClassName();
loggerDir = ctx.getLoggerDirectory();
loggerPrefix = ctx.getLoggerPrefix();
loggerSuffix = ctx.getLoggerSuffix();
loggerTimestamp = Boolean.valueOf(ctx.getLoggerTimestamp());
}
}
}
} else if (serverXml.exists()) {
long newTimestamp = serverXml.lastModified();
if (newTimestamp > timestampServerXML) {
timestampServerXML = newTimestamp;
SContext sCtx = getSContext();
if (sCtx != null) {
hasLogger = sCtx.isLogger();
if (hasLogger) {
loggerClassName = sCtx.getAttributeValue(SContext.LOGGER, "className"); // NOI18N
loggerDir = sCtx.getAttributeValue(SContext.LOGGER, "directory"); // NOI18N
loggerPrefix = sCtx.getAttributeValue(SContext.LOGGER, "prefix"); // NOI18N
loggerSuffix = sCtx.getAttributeValue(SContext.LOGGER, "suffix"); // NOI18N
String timestamp = sCtx.getAttributeValue(SContext.LOGGER, "timestamp"); // NOI18N
loggerTimestamp = Boolean.valueOf(timestamp);
}
}
}
} else {
hasLogger = false; // this shouldn't happen
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy