blob: db8648361a79738c3851913318cbdc99eba201da [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2021 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Platform;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.jdt.launching.AbstractJavaLaunchConfigurationDelegate;
import org.eclipse.jdt.launching.ExecutionArguments;
import org.eclipse.jdt.launching.IVMInstall;
import org.eclipse.jdt.launching.IVMInstall2;
import org.eclipse.jdt.launching.IVMRunner;
import org.eclipse.jdt.launching.VMRunnerConfiguration;
import org.eclipse.jst.server.core.ServerProfilerDelegate;
import org.eclipse.wst.server.core.IServer;
import org.eclipse.wst.server.core.ServerCore;
import org.eclipse.wst.server.core.ServerUtil;
/**
*
*/
public class TomcatLaunchConfigurationDelegate extends AbstractJavaLaunchConfigurationDelegate {
public TomcatLaunchConfigurationDelegate() {
super();
allowAdvancedSourcelookup();
}
public void launch(ILaunchConfiguration configuration, String mode, ILaunch launch, IProgressMonitor monitor) throws CoreException {
IServer server = ServerUtil.getServer(configuration);
if (server == null) {
Trace.trace(Trace.FINEST, "Launch configuration could not find server");
// throw CoreException();
return;
}
if (server.shouldPublish() && ServerCore.isAutoPublishing())
server.publish(IServer.PUBLISH_INCREMENTAL, monitor);
TomcatServerBehaviour tomcatServer = (TomcatServerBehaviour) server.loadAdapter(TomcatServerBehaviour.class, null);
String mainTypeName = tomcatServer.getRuntimeClass();
IVMInstall vm = verifyVMInstall(configuration);
IVMRunner runner = vm.getVMRunner(mode);
if (runner == null)
runner = vm.getVMRunner(ILaunchManager.RUN_MODE);
File workingDir = verifyWorkingDirectory(configuration);
String workingDirName = null;
if (workingDir != null)
workingDirName = workingDir.getAbsolutePath();
// Program & VM args
String pgmArgs = getProgramArguments(configuration);
String vmArgs = getVMArguments(configuration);
String[] envp = getEnvironment(configuration);
ExecutionArguments execArgs = new ExecutionArguments(vmArgs, pgmArgs);
// VM-specific attributes
Map vmAttributesMap = getVMSpecificAttributesMap(configuration);
// Classpath
String[] classpath = getClasspath(configuration);
// Create VM config
VMRunnerConfiguration runConfig = new VMRunnerConfiguration(mainTypeName, classpath);
runConfig.setProgramArguments(execArgs.getProgramArgumentsArray());
List<String> vmArguments = new ArrayList<String>();
/*
* Strip any previously set endorsed directories if needed, and enable
* source lookup java agent if allowAdvancedSourcelookup() was
* invoked
*/
vmArguments.addAll(Arrays.asList(DebugPlugin.parseArguments(getVMArguments(configuration, mode))));
vmArguments.addAll(Arrays.asList(execArgs.getVMArgumentsArray()));
if (vm instanceof IVMInstall2) {
String version = ((IVMInstall2) vm).getJavaVersion();
if (version != null) {
int versionForComparison = Integer.parseInt(version.split("\\.")[0]);
if (versionForComparison > 8) {
Iterator<String> argsIterator = vmArguments.iterator();
while (argsIterator.hasNext()) {
String vmArg = argsIterator.next();
if (vmArg.startsWith("-Djava.endorsed.dirs=")) {
argsIterator.remove();
StringBuilder builder = new StringBuilder();
builder.append("Skipping argument '");
builder.append(vmArg);
builder.append("' while launching ");
builder.append(server.getName());
Platform.getLog(Platform.getBundle(TomcatPlugin.PLUGIN_ID)).info(builder.toString());
}
}
}
}
}
runConfig.setVMArguments(vmArguments.toArray(new String[vmArguments.size()]));
runConfig.setWorkingDirectory(workingDirName);
runConfig.setEnvironment(envp);
runConfig.setVMSpecificAttributesMap(vmAttributesMap);
// Bootpath
String[] bootpath = getBootpath(configuration);
if (bootpath != null && bootpath.length > 0)
runConfig.setBootClassPath(bootpath);
setDefaultSourceLocator(launch, configuration);
if (ILaunchManager.PROFILE_MODE.equals(mode)) {
try {
ServerProfilerDelegate.configureProfiling(launch, vm, runConfig, monitor);
} catch (CoreException ce) {
tomcatServer.stopImpl();
throw ce;
}
}
// Launch the configuration
tomcatServer.setupLaunch(launch, mode, monitor);
try {
runner.run(runConfig, launch, monitor);
tomcatServer.addProcessListener(launch.getProcesses()[0]);
} catch (Exception e) {
// Ensure we don't continue to think the server is starting
tomcatServer.stopImpl();
StringBuilder builder = new StringBuilder();
builder.append("Exception while launching using ");
builder.append(vm.getInstallLocation());
builder.append("with VM args '");
builder.append(String.join(" ", runConfig.getVMArguments()));
builder.append("' and program args'");
builder.append(String.join(" ", runConfig.getProgramArguments()));
builder.append("'");
builder.append(server.getName());
Platform.getLog(Platform.getBundle(TomcatPlugin.PLUGIN_ID)).error(builder.toString(), e);
}
}
}