From 0953f7cde8a2c09850f398790adc983ebf7f1b8b Mon Sep 17 00:00:00 2001 From: Jakob Heher Date: Tue, 22 Mar 2022 13:52:29 +0100 Subject: sanitize swt handling --- pdf-over-install-helper/pom.xml | 69 ----------- .../src/main/java/at/asit/helper/Main.java | 135 --------------------- 2 files changed, 204 deletions(-) delete mode 100644 pdf-over-install-helper/pom.xml delete mode 100644 pdf-over-install-helper/src/main/java/at/asit/helper/Main.java (limited to 'pdf-over-install-helper') diff --git a/pdf-over-install-helper/pom.xml b/pdf-over-install-helper/pom.xml deleted file mode 100644 index 1f5d833c..00000000 --- a/pdf-over-install-helper/pom.xml +++ /dev/null @@ -1,69 +0,0 @@ - - 4.0.0 - - at.a-sit - pdf-over - 4.3.3-RC8-SNAPSHOT - - pdf-over-install-helper - 4.3.3-RC8-SNAPSHOT - - - - commons-io - commons-io - - - - - - - - maven-compiler-plugin - org.apache.maven.plugins - 3.7.0 - - 8 - true - true - true - UTF-8 - true - lines,vars,source - - - - org.apache.maven.plugins - maven-dependency-plugin - - - copy-dependencies - prepare-package - - copy-dependencies - - - - ${project.build.directory} - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - false - - true - at.asit.helper.Main - - - - - - - - \ No newline at end of file diff --git a/pdf-over-install-helper/src/main/java/at/asit/helper/Main.java b/pdf-over-install-helper/src/main/java/at/asit/helper/Main.java deleted file mode 100644 index edf5ec2f..00000000 --- a/pdf-over-install-helper/src/main/java/at/asit/helper/Main.java +++ /dev/null @@ -1,135 +0,0 @@ -package at.asit.helper; - -import java.io.File; -import java.io.UnsupportedEncodingException; -import java.net.URLDecoder; - -import org.apache.commons.io.FileUtils; - - - - -/*** - * - * @author aabraham - * - * @version 1.0.0 - * - * The created jar is used as helper library when installing pdf-over. - * Basically, the helper determines the java version used including architecture and - * appends afterwards the right swt library since this swt is platform dependend. - * - */ -public class Main { - - private final static String SWT_VERSION = "4.20"; - - public static void main(String[] args) { - - System.out.println("start post install task"); - - copyLib(); - - } - - - public static int getArchBits() { - String arch = System.getProperty("sun.arch.data.model"); - return arch.contains("64") ? 64 : 32; - } - - public static String getSwtJarName() throws SWTLoadFailedException { - String os = System.getProperty("os.name").toLowerCase(); - if (os.contains("win")) - os = "windows"; - else if (os.contains("mac")) - os = "mac"; - else if (os.contains("linux") || os.contains("nix")) - os = "linux"; - else { - throw new SWTLoadFailedException("Unknown OS: " + os); - } - return "swt-" + os + "-" + getArchBits() + ".jar"; - } - - public static String getSwtJarPath() { - String path = ""; - try { - path = URLDecoder.decode(Main.class.getProtectionDomain().getCodeSource().getLocation().getPath(), "UTF-8"); - int idx = path.lastIndexOf('/'); - idx = path.lastIndexOf('/', idx - 1); - path = path.substring(0, idx + 1); - } catch (UnsupportedEncodingException e) { - // Ignore - System.err.println("Unsuported Encoding Exception " + e.getMessage()); - } - return path + "lib-swt/"; - } - - private static class SWTLoadFailedException extends Exception { - private static final long serialVersionUID = 1L; - - SWTLoadFailedException(String msg) { - super(msg); - } - } - - - private static String getSwtTargetLibName() throws SWTLoadFailedException { - - String os = System.getProperty("os.name").toLowerCase(); - System.out.println("OS " + os + " detected!"); - String swtTargetLibName; - - if (os.contains("win")) { - swtTargetLibName = "org.eclipse.swt.win32.win32.x86-" + SWT_VERSION + ".jar"; - } - else if (os.contains("mac")) { - swtTargetLibName = "org.eclipse.swt.cocoa.macosx-" + SWT_VERSION + ".jar"; - } - else if (os.contains("linux") || os.contains("nix")) { - swtTargetLibName = "org.eclipse.swt.gtk.linux.x86-" + SWT_VERSION + ".jar"; - } - else { - throw new SWTLoadFailedException("Unknown OS: " + os); - } - return swtTargetLibName; - - - } - - - private static void copyLib() { - try { - String swtLibPath = Main.getSwtJarPath() + Main.getSwtJarName(); - File swtLib = new File(swtLibPath); - if (!swtLib.isFile()) { - - System.err.println("not found "); - throw new SWTLoadFailedException("Library " + swtLibPath + " not found"); - } - - String newPath = swtLibPath.replace("lib-swt", "lib"); - newPath = newPath.replace(Main.getSwtJarName(), getSwtTargetLibName()); - File newFile = new File(newPath); - System.out.println("Source Lib " + swtLibPath.toString()); - System.out.println("Target Lib " + newFile.toString()); - FileUtils.copyFile(swtLib, newFile); - - if (!newFile.isFile()) { - System.err.println("not found "); - throw new SWTLoadFailedException("Library " + swtLibPath + " not found"); - } - - System.out.println("success "); - return; - - - } catch(Exception e){ - e.printStackTrace(); - } - - } - - -} -- cgit v1.2.3