Most of the documentation that details how to get started with JNI described how to build a new JNI application using X-Code. Can anyone link me to a description of how to use JNI to interface with Objective-C in an existing application.
|
|
|
|
|
|
|
NOTE: I have completely re-written this answer from scratch, now that I know for sure it works ;-). Use Rococoa instead of JNI. Here is a brief sample I was able to whip up that displays the picture taker dialog (based on your comment to Stephen C's answer).
If you get lost, try the Rococoa mailing lists. The developers are very helpful. |
||||||||||||
|
|
|
You will still need to write a JNI library of some sort to wrap your access to the existing code (aka, shared object, DLL, service program, etc). This is because JNI requires a rather obtuse (but sensible) naming convention for the native functions invoked, because you need to move data in and out of Java memory space and because you need to have conceptual "bridging" code between Java and your native function. For example, I wrote a JNI library to provide access to existing C functions on the iSeries. One such function to read from a data area looks as follows:
Note the one-line invocation for underlying existing API, QWCRDTAA, which is provided by IBM; the rest is Java-centric wrapping which is necessary to make the call and deal with the results. Also, be very careful that what you invoke is thread-safe, or that you protect the code from concurrent invocations globally in the Java layer, or that you protect the code with a mutex in the O/S layer. PS: Note that non-threadsafe native code is globally non-threadsafe; you must prevent concurrent invocation with all other non-threadsafe native code, not just the one method you are invoking. This is because it might be unsafe due to an underlying call to some other function which other unsafe methods call (like strerror(), (if my C memory serves well)). |
|||
|
|
|
|
Assuming that the Object-C application can be run via the command line, a simpler (and less problematic) approach would be to launch it using one of the JNI is fraught with complexity and stability issues, and it is best to avoid it if you can. EDIT: The OP has explained that this is a "widget" not a command line application. That makes it harder to avoid using JNI. But I still think that you ought to try. For example, you could consider wrapping the Objective-C widget in an Objective-C application, that runs the widget in a new window. |
|||
|
