org.jmeterplugins.repository.ChangesMaker Maven / Gradle / Ivy
package org.jmeterplugins.repository;
import org.apache.jmeter.util.JMeterUtils;
import org.apache.jorphan.logging.LoggingManager;
import org.apache.jorphan.util.JOrphanUtils;
import org.apache.log.Logger;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.net.URLDecoder;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.nio.file.Files;
public class ChangesMaker {
private static final Logger log = LoggingManager.getLoggerForClass();
private final Map allPlugins;
public ChangesMaker(Map allPlugins) {
this.allPlugins = allPlugins;
}
public ProcessBuilder getProcessBuilder(File moveFile, File installFile, File restartFile) throws IOException {
final ArrayList command = new ArrayList<>();
command.add(SafeDeleter.getJVM());
command.add("-classpath");
command.add(URLDecoder.decode(getTempPmgrJAR().getPath(), "UTF-8"));
command.add(SafeDeleter.class.getCanonicalName());
command.add("--move-list");
command.add(moveFile.getAbsolutePath());
command.add("--install-list");
command.add(installFile.getAbsolutePath());
if (restartFile != null) {
command.add("--restart-command");
command.add(restartFile.getAbsolutePath());
}
log.debug("Command to execute: " + command);
final ProcessBuilder builder = new ProcessBuilder(command);
File cleanerLog = File.createTempFile("jpgc-cleaner-", ".log");
builder.redirectError(cleanerLog);
builder.redirectOutput(cleanerLog);
return builder;
}
private File getTempPmgrJAR() throws IOException {
String jarPath = URLDecoder.decode(PluginManager.class.getProtectionDomain().getCodeSource().getLocation().getFile(), "UTF-8");
if (!jarPath.endsWith(".jar")) {
log.warn("Suspicious JAR path detected: " + jarPath);
}
File origJAR = new File(jarPath);
File tempJAR = File.createTempFile(origJAR.getName(), ".jar");
tempJAR.delete();
Files.copy(origJAR.toPath(), tempJAR.toPath());
return tempJAR;
}
public File getRestartFile(LinkedList additionalJMeterOptions) throws IOException {
File file = File.createTempFile("jpgc-restart-", ".list");
try (PrintWriter out = new PrintWriter(file)) {
out.print(SafeDeleter.getJVM() + "\n");
RuntimeMXBean runtimeMXBean = ManagementFactory.getRuntimeMXBean();
List jvmArgs = runtimeMXBean.getInputArguments();
for (String arg : jvmArgs) {
out.print(arg + "\n");
}
out.print("-jar\n");
out.print(getJMeterStartCommand(additionalJMeterOptions));
return file;
}
}
private String getJMeterStartCommand(LinkedList additionalJMeterOptions) {
StringBuilder cmd = new StringBuilder(JMeterUtils.getJMeterBinDir() + File.separator + "ApacheJMeter.jar\n");
if (additionalJMeterOptions != null) {
for (String option : additionalJMeterOptions) {
cmd.append(option).append("\n");
}
}
return cmd.toString();
}
public File getInstallFile(Set plugins, Set installLibs) throws IOException {
File file = File.createTempFile("jpgc-installers-", ".list");
try (PrintWriter out = new PrintWriter(file)) {
for (Plugin plugin : plugins) {
String cls = plugin.getInstallerClass();
if (cls != null) {
log.debug("Plugin " + plugin + " has installer: " + cls);
StringBuilder cp = new StringBuilder();
Map libs = plugin.getLibs(plugin.getCandidateVersion());
for (String lib : libs.keySet()) {
Library.InstallationInfo libInfo = getLibForInstallLibs(lib, installLibs);
if (libInfo != null) {
cp.append(generateLibPath(libInfo.getDestinationFileName()));
cp.append(File.pathSeparator);
continue;
}
String installedPath = Plugin.getLibInstallPath(lib);
if (installedPath != null) {
cp.append(generateLibPath(installedPath));
cp.append(File.pathSeparator);
continue;
}
log.error("Library '" + lib + "' will not be installed!");
}
cp.append(plugin.getDestName());
// add class for run
cp.append('\t');
cp.append(cls);
cp.append('\n');
out.print(cp.toString());
}
}
return file;
}
}
protected Library.InstallationInfo getLibForInstallLibs(String lib, Set installLibs) {
for (Library.InstallationInfo info : installLibs) {
if (info.getName().equals(lib)) {
return info;
}
}
return null;
}
protected String generateLibPath(String libName) throws UnsupportedEncodingException {
String libPath = new File(JOrphanUtils.class.getProtectionDomain().getCodeSource().getLocation().getFile()).getParent();
return URLDecoder.decode(libPath, "UTF-8") + File.separator + libName;
}
public File getMovementsFile(Set deletes, Set installs, Set installLibs, Set libDeletions) throws IOException {
final File file = File.createTempFile("jpgc-jar-changes", ".list");
try (PrintWriter out = new PrintWriter(file)) {
if (!deletes.isEmpty() || !libDeletions.isEmpty()) {
File delDir = File.createTempFile("jpgc-deleted-jars-", "");
delDir.delete();
delDir.mkdir();
log.info("Will move deleted JARs to directory " + delDir);
for (Plugin plugin : deletes) {
File installed = new File(plugin.getInstalledPath());
String delTo = delDir + File.separator + installed.getName();
out.print(plugin.getInstalledPath() + "\t" + delTo + "\n");
}
for (String lib : libDeletions) {
for (Plugin plugin : allPlugins.keySet()) {
if (plugin.isInstalled() && plugin.getInstalledPath().equals(lib)) {
log.warn("Cannot delete " + lib + " since it is part of plugin " + plugin);
libDeletions.remove(lib);
}
}
}
for (String lib : libDeletions) {
File installed = new File(lib);
String delTo = delDir + File.separator + installed.getName();
out.print(lib + "\t" + delTo + "\n");
}
}
for (Library.InstallationInfo libInfo : installLibs) {
out.print(libInfo.getTmpPath() + "\t" + generateLibPath(libInfo.getDestinationFileName()) + "\n");
}
for (Plugin plugin : installs) {
out.print(plugin.getTempName() + "\t" + plugin.getDestName() + "\n");
}
return file;
}
}
}