newLISP Fan Club

Forum => newLISP in the real world => Topic started by: HPW on September 14, 2013, 11:18:20 PM

Title: java app using newlisp.dll ?
Post by: HPW on September 14, 2013, 11:18:20 PM
Hello,



Is it possible to write a windows-Java app (jar) which uses newlisp.dll as ist engine ?



The newlisp IDE is a Java app, but uses newlisp.exe in a separate process and communicates with it.

(I see 2 processes in the taskmanager)



So can I use Java like other enviroments with embedded newlisp within one process?

Callback-Support?

Sample?



Regards
Title: Re: java app using newlisp.dll ?
Post by: Lutz on October 01, 2013, 11:40:09 AM
To import the newLISP C library to Java, a Java Native Interface (JNI) would have to be added to access the newlisp shared library. Currently there are no plans implement this, but it is on my list of things to do in the future.
Title: Re: java app using newlisp.dll ?
Post by: HPW on October 01, 2013, 02:03:41 PM
Hello,



Sounds very interesting. Thanks for the info.

Future will tell us.



Regards
Title: Re: java app using newlisp.dll ?
Post by: HPW on October 07, 2013, 06:02:09 AM
Here is also an interesting project: JNA



https://github.com/twall/jna



As a java newbee I have no idea if this can be used with newlisp.



Regards
Title: Re: java app using newlisp.dll ?
Post by: Lutz on October 07, 2013, 09:59:27 AM
Yes, you should definitely be able to use JNA on an unmodified newlisp.dll (standard calling conventions) or newlisp.dylib or newlisp.so (C calling conventions - cdecl). You would use newlispEvalStr in Java as a function taking a Java String type and returning a Java String type. You could probably do this without using https://github.com/twall/jna as you just deal with one or two functions, which have to be setup once. Callbacks using  newlispCallback are probably possible too. newlispCallback would take String, Pointer and int or long and return Pointer.