io.gatling.mojo.Fork Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfana-gatling-maven-plugin Show documentation
Show all versions of perfana-gatling-maven-plugin Show documentation
Forked from gatling-maven-plugin, with Perfana integration.
/**
* Copyright 2011-2017 GatlingCorp (http://gatling.io)
*
* Licensed 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 io.gatling.mojo;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.Map.Entry;
import org.apache.commons.exec.CommandLine;
import org.apache.commons.exec.DefaultExecutor;
import org.apache.commons.exec.Executor;
import org.apache.commons.exec.PumpStreamHandler;
import org.apache.commons.exec.ShutdownHookProcessDestroyer;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.toolchain.Toolchain;
import org.codehaus.plexus.util.StringUtils;
class Fork {
private static final String ARG_FILE_PREFIX = "gatling-maven-plugin-";
private static final String ARG_FILE_SUFFIX = ".args";
private final String javaExecutable;
private final String mainClassName;
private final List classpath;
private final boolean propagateSystemProperties;
private final Log log;
private final List jvmArgs = new ArrayList<>();
private final List args = new ArrayList<>();
Fork(String mainClassName,//
List classpath,//
List jvmArgs,//
List args,//
Toolchain toolchain,//
boolean propagateSystemProperties,//
Log log) {
this.mainClassName = mainClassName;
this.classpath = classpath;
this.jvmArgs.addAll(jvmArgs);
this.args.addAll(args);
this.javaExecutable = safe(toWindowsShortName(findJavaExecutable(toolchain)));
this.propagateSystemProperties = propagateSystemProperties;
this.log = log;
}
private String toWindowsShortName(String value) {
if (MojoUtils.IS_WINDOWS) {
int programFilesIndex = value.indexOf("Program Files");
if (programFilesIndex >= 0) {
// Could be "Program Files" or "Program Files (x86)"
int firstSeparatorAfterProgramFiles = value.indexOf(File.separator, programFilesIndex + "Program Files".length());
File longNameDir =
firstSeparatorAfterProgramFiles < 0 ?
new File(value) : // C:\\Program Files with trailing separator
new File(value.substring(0, firstSeparatorAfterProgramFiles)); // chop child
// Some other sibling dir could be PrograXXX and might shift short name index
// so we can't be sure "Program Files" is "Progra~1" and "Program Files (x86)" is "Progra~2"
for (int i = 0; i < 10; i++) {
File shortNameDir = new File(longNameDir.getParent(), "Progra~" + i);
if (shortNameDir.equals(longNameDir)) {
return shortNameDir.toString();
}
}
}
}
return value;
}
private String safe(String value) {
return value.contains(" ") ? '"' + value + '"' : value;
}
void run() throws Exception {
if (propagateSystemProperties) {
for (Entry