blob: ccfd49c47a3f1c5257c6093270ed1520998ddf4a [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.io.File;
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 32 handler.
*/
public class Tomcat32Handler implements ITomcatVersionHandler {
public boolean verifyInstallPath(IPath installPath) {
return TomcatPlugin.verifyInstallPath(installPath, TomcatPlugin.TOMCAT_32);
}
/**
* Return the runtime class name.
*
* @return java.lang.String
*/
public String getRuntimeClass() {
return "org.apache.tomcat.startup.Tomcat";
}
public List getRuntimeClasspath(IPath installPath) {
List cp = new ArrayList();
// add all jars from the Tomcat lib directory
File libDir = installPath.append("lib").toFile();
if (libDir.exists()) {
String[] libs = libDir.list();
for (int i = 0; i < libs.length; i++) {
if (libs[i].endsWith("jar")) {
IPath path = installPath.append("lib").append(libs[i]);
cp.add(JavaRuntime.newArchiveRuntimeClasspathEntry(path));
}
}
}
return cp;
}
/**
* Return the program's runtime arguments.
*
* @return java.lang.String[]
*/
public String[] getRuntimeProgramArguments(IPath configPath, boolean debug, boolean starting) {
List list = new ArrayList();
if (configPath != null) {
list.add("-f \"" + configPath.append("conf").append("server.xml").toOSString() + "\"");
}
if (!starting)
list.add("-stop");
String[] s = new String[list.size()];
list.toArray(s);
return s;
}
/**
* Return the runtime (VM) arguments.
*
* @return java.lang.String[]
*/
public String[] getRuntimeVMArguments(IPath installPath, IPath configPath, boolean isTestEnv, boolean isSecure) {
List list = new ArrayList();
list.add("-Dtomcat.home=\"" + installPath.toOSString() + "\"");
// run in secure mode
if (isSecure) {
list.add("-Djava.security.manager");
IPath dir = configPath.append("conf").append("tomcat.policy");
list.add("-Djava.security.policy=\"" + dir.toOSString() + "\"");
}
String[] s = new String[list.size()];
list.toArray(s);
return s;
}
/**
* Returns true if the given project is supported by this
* server, and false otherwise.
*
* @param module a web module
* @return the status
*/
public IStatus canAddModule(IWebModule module) {
if ("1.2".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("%errorSpec32"), null);
}
}