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 events-gatling-maven-plugin Show documentation
Show all versions of events-gatling-maven-plugin Show documentation
Forked from gatling-maven-plugin 3.1.0, this version has test events integration.
The newest version!
/**
* 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.
*
* This file has been changed in the fork: events-gatling-maven-plugin
*/
package io.gatling.mojo;
import nl.stokpop.eventscheduler.api.SchedulerExceptionHandler;
import nl.stokpop.eventscheduler.api.SchedulerExceptionType;
import nl.stokpop.eventscheduler.exception.handler.AbortSchedulerException;
import nl.stokpop.eventscheduler.exception.handler.KillSwitchException;
import org.apache.commons.exec.*;
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;
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;
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 File workingDirectory;
// volatile because possibly multiple threads are involved
private volatile SchedulerExceptionType schedulerExceptionType = SchedulerExceptionType.NONE;
private final ExecuteWatchdog gatlingProcessWatchDog =
new ExecuteWatchdog(ExecuteWatchdog.INFINITE_TIMEOUT);
private final SchedulerExceptionHandler schedulerExceptionHandler = new SchedulerExceptionHandler() {
@Override
public void kill(String message) {
log.info("Killing running process, message: " + message);
schedulerExceptionType = SchedulerExceptionType.KILL;
gatlingProcessWatchDog.destroyProcess();
}
@Override
public void abort(String message) {
log.info("Killing running process, message: " + message);
schedulerExceptionType = SchedulerExceptionType.ABORT;
gatlingProcessWatchDog.destroyProcess();
}
};
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, classpath, jvmArgs, args, toolchain, propagateSystemProperties, log, null);
}
Fork(String mainClassName,//
List classpath,//
List jvmArgs,//
List args,//
Toolchain toolchain,//
boolean propagateSystemProperties,//
Log log,
File workingDirectory) {
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;
this.workingDirectory = workingDirectory;
}
SchedulerExceptionHandler getSchedulerExceptionHandler() {
return schedulerExceptionHandler;
}
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
© 2015 - 2024 Weber Informatics LLC | Privacy Policy