aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/os
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-01-05 08:55:06 +0100
committerSven Gothel <[email protected]>2012-01-05 08:55:06 +0100
commit9a211fe6cfb4150d97b50325c1778b7f5d3419af (patch)
treefc37b492bc29a77286ca7b185029d48e96720e56 /src/java/com/jogamp/common/os
parent3eb4fd96cd65e49625663fdb6421a2f1cf2204dc (diff)
Further fix for bug 537 - Catch IllegalArgumentException in Platform.loadGlueGenRTImpl(), Reuse JarUtil (same methodology) to determine whether we run from JarURL
Diffstat (limited to 'src/java/com/jogamp/common/os')
-rw-r--r--src/java/com/jogamp/common/os/Platform.java30
1 files changed, 13 insertions, 17 deletions
diff --git a/src/java/com/jogamp/common/os/Platform.java b/src/java/com/jogamp/common/os/Platform.java
index 55210ce..bd8523a 100644
--- a/src/java/com/jogamp/common/os/Platform.java
+++ b/src/java/com/jogamp/common/os/Platform.java
@@ -28,7 +28,6 @@
package com.jogamp.common.os;
-import java.io.IOException;
import java.net.URL;
import java.nio.ByteBuffer;
import java.nio.IntBuffer;
@@ -36,7 +35,6 @@ import java.nio.ShortBuffer;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.concurrent.TimeUnit;
-import java.util.jar.JarFile;
import com.jogamp.common.nio.Buffers;
import com.jogamp.common.util.JarUtil;
@@ -204,7 +202,7 @@ public class Platform {
os_and_arch = getOSAndArch(OS_TYPE, CPU_ARCH);
- USE_TEMP_JAR_CACHE = (OS_TYPE != OSType.ANDROID) && !isRunningFromClassFile() &&
+ USE_TEMP_JAR_CACHE = (OS_TYPE != OSType.ANDROID) && isRunningFromJarURL() &&
AccessController.doPrivileged(new PrivilegedAction<Boolean>() {
public Boolean run() {
return Boolean.valueOf(Debug.getBooleanProperty(true, useTempJarCachePropName, true, AccessController.getContext()));
@@ -233,20 +231,17 @@ public class Platform {
private Platform() {}
- /* Used to disable JAR caching if we're not running from a JAR.
- *
- * If you build JOGL in an IDE like Eclipse, it's possible for other projects in your
- * workspace to depend directly on the JOGL class files rather than on the built JAR files.
- * This allows you to turn off JAR file creation in your JOGL Ant build to speed up the
- * build, and allows Eclipse to resolve dependencies to auto-built class files before
- * the Ant build even runs (which is not until after file save).
+ /**
+ * Preemptively avoids initializing and using {@link TempJarCache} in case we are <b>not</b> running
+ * from a Jar URL, ie. plain class files. Used to set {@link USE_TEMP_JAR_CACHE}.
+ * <p>
+ * Impact: Less overhead and more robustness.
+ * </p>
*
- * @return true if we're running from a class file, false if we're running some other
- * way (like from a JAR file).
+ * @return true if we're running from a Jar URL, otherwise false
*/
- private static boolean isRunningFromClassFile() {
- URL url = Platform.class.getResource( "Platform.class" );
- return( url.getProtocol().equalsIgnoreCase( "file" ) );
+ private static boolean isRunningFromJarURL() {
+ return JarUtil.hasJarURL(Platform.class.getName(), Platform.class.getClassLoader());
}
private static boolean queryIsLittleEndianImpl() {
@@ -326,8 +321,9 @@ public class Platform {
JarUtil.getJarSubURL(Platform.class.getName(), cl) );
final URL nativeJarURL = JarUtil.getJarFileURL(jarUrlRoot, nativeJarName);
TempJarCache.bootstrapNativeLib(Platform.class, libBaseName, nativeJarURL, cl);
- } catch (IOException ioe) {
- ioe.printStackTrace();
+ } catch (Exception e0) {
+ // IllegalArgumentException, IOException
+ System.err.println("Catched: "+e0.getMessage());
}
}
DynamicLibraryBundle.GlueJNILibLoader.loadLibrary(libBaseName, false);