Load DLL (using JNA) inside an OSGi bundle

21,892

Solution 1

The problem is the specialised JNA loadLibrary call, which is not OSGi aware. When you invoke loadLibrary from an OSGi bundle, it will use the OSGi classloader (which is bundle aware) to find where the DLL is, and in this case, extract it out from the bundle and make it loadable via the System.loadLibrary() call against a specific location.

Since this JNA seems to be (a) not OSGi aware, and (b) superflous, why not just use System.loadLibrary() instead?

If you need to write both, then perform a System.loadLibrary() in the bundle's start() method in the BundleActivator, which will bring the native library in (you probably want to ensure that if it can't be loaded, the bundle can't be started in any case).

Solution 2

Looking at JNA's documentation, it states:

  • Make your target library available to your Java program. There are two ways to do this:
    • The preferred method is to set the jna.library.path system property to the path to your target library. This property is similar to java.library.path but only applies to libraries loaded by JNA.
    • Change the appropriate library access environment variable before launching the VM. This is PATH on Windows, LD_LIBRARY_PATH on Linux, and DYLD_LIBRARY_PATH on OSX.

So to get around this shortcoming you could resolve the the absolute path of the library and load that.

Assuming that its Eclipse's standard class loader, you can do ClassLoader.findLibrary() which should find the local library in the bundle.

Share:
21,892
Mark Elliot
Author by

Mark Elliot

Java developer in NYC. @_markelliot github

Updated on July 09, 2022

Comments

  • Mark Elliot
    Mark Elliot almost 2 years

    OSGi cannot find my DLL file, and I can't seem to figure out why.

    Currently I have the DLL file (foo.dll) at the root of my bundle, I've also tried having it in a libs directory.

    The Manifest for the bundle in question looks something like this:

    Manifest-Version: 1.0
    Bundle-ManifestVersion: 2
    Bundle-Name: foobundle
    Bundle-SymbolicName: com.foo.bar
    Bundle-Version: 1.0.0
    Bundle-Vendor: me
    Import-Package: com.sun.jna,
     com.sun.jna.ptr,
     com.sun.jna.win32
    Export-Package: com.foo.bar
    Bundle-NativeCode: foo.dll;
     osname=WindowsXP;
     processor=x86
    

    Then in my JNA interface I perform a loadLibrary (as per the documentation):

    public interface MyFooInterface extends com.sun.jna.Library{
        static final MyFooInterface INSTANCE = (MyFooInterface)com.sun.jna.Native.loadLibrary("foo", MyFooInterface .class);
    
        // specific interface defs here...
    }
    

    Then in another class I attempt to use the JNA interface

    // ...code
    int var = MyFooInterface.INSTANCE.bar();
    // ...more code
    

    I have JNA supplied via another bundle (which exports com.sun.jna and the other packages imported above), but have also tried packaging it with the bundle defined here (and added it to the classpath in that case, etc.).

    I've also tried specifying Bundle-NativeCode: /foo.dll.

    Also of interest, these are the relevant OSGi properties (which I pulled up using getprop)

    org.osgi.framework.os.name=WindowsXP
    org.osgi.framework.processor=x86
    

    Even after all this (and with every trial I made) I always end up with the following error (and a stack trace not shown):

    java.lang.UnsatisfiedLinkError: Unable to load library 'foo': The specified module could not be found.
    

    ...so what am I missing?

    Edit: I should also note that I've tested and had success the JNA interface code and the DLL that it talks to as part of a JUnit Test program.

    Edit 2: Adding this code to the class that's calling the library seems to allow JNA to find the library (when Native.loadLibrary gets called later). It seems I should be able to avoid this call based on the Bundle-NativeCode directive in the Manifest. Clearly once the library is loaded Native.loadLibrary grabs the existing instance of it, but I'd prefer not to depend on this very order-specific tactic.

    static{
        System.loadLibrary("foo");
    }
    
  • Mark Elliot
    Mark Elliot over 14 years
    I'm not sure that's a viable approach, I need to load the DLL as a native library, and am already sure that it's packaged as part of the OSGi bundle that is trying to use it.
  • Miguel Ping
    Miguel Ping over 14 years
    I'm using this tecnhique in JNLP to load native libs. The jvm can find native libs inside jars
  • Mark Elliot
    Mark Elliot over 14 years
    Ultimately JNA must call its own Native.loadLibrary or Native.register (which after tracing through with the debugger follows the same sequence of events) in order to enable the interface-driven or direct native access that JNA provides. I've found that the solution, albeit one that seems unsatisfactory is to call System.loadLibrary first, as you suggest, followed later by a call to Native.loadLibrary or Native.register in the appropriate place.
  • AlBlue
    AlBlue over 14 years
    You might find this works on Windows, but perhaps not on other platforms. I recall an issue whereby loading a DLL with dependencies works on Windows (by loading A first, then B, when B depends on A) but has issues on Macs. I have no idea why that might be the case ... but just a warning that you may have a platform-specific solution in your hands. At the very least, you should test (rather than assume) for non-Windows platforms.
  • Mark Elliot
    Mark Elliot over 14 years
    System.loadLibrary uses the OSGi class loader -- the Bundle-NativeCode statement in the Manifest is absolutely required in order to locate the DLL -- so regardless of operating system this solution will find the native code. If foo.dll depended on bar.dll it would become very important to load them in sequence, but that's another issue and fortunately not the case here. Thanks for the heads up, though.
  • whatnick
    whatnick almost 13 years
    This comes down to an application packaging and distribution issue, place the natives in a predictable location in your application an synthesize this location for injection into the JVM properties with "jna.library.path".
  • torkildr
    torkildr over 7 years
    I struggled with the same problem and came up a solution. As the JNA documentation states "Make your native library available on your classpath, under the path {OS}-{ARCH}/{LIBRARY}, where {OS}-{ARCH} is JNA's canonical prefix for native libraries (e.g. win32-x86, linux-amd64, or darwin). If the resource is within a jar file it will be automatically extracted when loaded." So create a folder at the root of the bundle (assuming the classpath includes that) named i.e. darwin and place the library there. Tested on macOS with a JNA 4.1.0 and a library in an Eclipse plugin.