[RFC] JNLP: jars with native libraries in incorrect locations
Andrew John Hughes
ahughes at redhat.com
Tue Jun 22 13:47:06 PDT 2010
On 22 June 2010 19:06, Omair Majid <omajid at redhat.com> wrote:
> On 06/15/2010 09:42 AM, Omair Majid wrote:
>>
>> Hi,
>>
>> I recently ran into a problem with SweetHome3D [1] not working under
>> Netx. The jnlp file contains no 'nativelib' elements which initially led
>> me to believe that it contains no native code. However, one of the jars
>> it references [2] contains native code under /linux/x64/. Both of these
>> things (no nativelib element and placing .so's anywhere other than under
>> /) seem to go against the developer guide's guidelines. Of course,
>> without reading the JSR, I can not say if this is against the JNLP spec
>> or not.
>>
>> That said, since the Sun/Oracle Webstart works with SweetHome3D, Netx
>> should work too. The attached patch modifies Netx so that it always
>> tries to look for .so's (placed anywhere) in jar files. If it finds
>> them, it activates them as if the .so's were in a nativelib jar.
>>
>> Any thoughts or comments?
>>
>> Cheers,
>> Omair
>>
>>
>> [1] http://www.sweethome3d.com/SweetHome3D.jnlp
>> [2] http://www.sweethome3d.com/lib/linux/x64/java3d.jar
>
> Anyone?
>
Sorry, didn't see this until your ping.
The code you have to find the file component of the path could be more
portably written as new File(e.getName()).getName():
http://java.sun.com/j2se/1.5.0/docs/api/java/io/File.html#getName%28%29
That also deals with the issue of the path ending in a '/', which
would currently result in an IndexOutOfBoundsException.
Sadly I can't see a method for obtaining the dynamic library name
extension (System has mapLibraryName to do x -> x.so, but nothing to
check an existing path; maybe something to suggest upstream).
Checking for .so, .dll and .dylib should cover most cases.
Cheers,
--
Andrew :-)
Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)
Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint: F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
More information about the distro-pkg-dev
mailing list