blob: ae1e653b6152ddd5bf78c99c47f1896c7a3a9fc6 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
 *
* Contributors:
* IBM Corporation - Initial API and implementation
**********************************************************************/
package org.eclipse.jst.server.tomcat.core.internal;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jdt.launching.JavaRuntime;
import org.eclipse.jst.server.core.IWebModule;
/**
* Tomcat 41 handler.
*/
public class Tomcat41Handler implements ITomcatVersionHandler {
/**
* @see ITomcatVersionHandler#verifyInstallPath(IPath)
*/
public boolean verifyInstallPath(IPath installPath) {
if (installPath == null)
return false;
String s = installPath.lastSegment();
if (s != null && s.startsWith("jakarta-tomcat-") && !s.startsWith("jakarta-tomcat-4.1"))
return false;
return TomcatPlugin.verifyInstallPath(installPath, TomcatPlugin.TOMCAT_41);
}
/**
* @see ITomcatVersionHandler#getRuntimeClass()
*/
public String getRuntimeClass() {
return "org.apache.catalina.startup.Bootstrap";
}
/**
* @see ITomcatVersionHandler#getRuntimeClasspath(IPath)
*/
public List getRuntimeClasspath(IPath installPath) {
List cp = new ArrayList();
// 4.1 - add bootstrap.jar from the Tomcat bin directory
IPath binPath = installPath.append("bin");
if (binPath.toFile().exists()) {
IPath path = binPath.append("bootstrap.jar");
cp.add(JavaRuntime.newArchiveRuntimeClasspathEntry(path));
}
return cp;
}
/**
* @see ITomcatVersionHandler#getRuntimeProgramArguments(IPath, boolean, boolean)
*/
public String[] getRuntimeProgramArguments(IPath configPath, boolean debug, boolean starting) {
List list = new ArrayList();
if (debug)
list.add("-debug");
if (starting)
list.add("start");
else
list.add("stop");
String[] temp = new String[list.size()];
list.toArray(temp);
return temp;
}
/**
* @see ITomcatVersionHandler#getRuntimeVMArguments(IPath, IPath, boolean, boolean)
*/
public String[] getRuntimeVMArguments(IPath installPath, IPath configPath, boolean isTestEnv, boolean isSecure) {
List list = new ArrayList();
if (isTestEnv)
list.add("-Dcatalina.base=\"" + configPath.toOSString() + "\"");
else
list.add("-Dcatalina.base=\"" + installPath.toOSString() + "\"");
list.add("-Dcatalina.home=\"" + installPath.toOSString() + "\"");
list.add("-Djava.endorsed.dirs=\"" + installPath.append("common").append("endorsed").toOSString() + "\"");
// run in secure mode
if (isSecure) {
list.add("-Djava.security.manager");
IPath dir = configPath.append("conf").append("catalina.policy");
list.add("-Djava.security.policy=\"" + dir.toOSString() + "\"");
}
String[] s = new String[list.size()];
list.toArray(s);
return s;
}
/**
* @see ITomcatVersionHandler#canAddModule(IWebModule)
*/
public IStatus canAddModule(IWebModule module) {
if ("1.2".equals(module.getJ2EESpecificationVersion()) || "1.3".equals(module.getJ2EESpecificationVersion()))
return new Status(IStatus.OK, TomcatPlugin.PLUGIN_ID, 0, TomcatPlugin.getResource("%canAddModule"), null);
return new Status(IStatus.ERROR, TomcatPlugin.PLUGIN_ID, 0, TomcatPlugin.getResource("%errorSpec41"), null);
}
}