Foreign API interop with C++

I want to know if theres any way to load/use C++ class from Java?
26 Replies
JavaBot
JavaBot15mo ago
This post has been reserved for your question.
Hey @Koblížkáč! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
tjoener
tjoener15mo ago
full blown C++ might be hard, but for C functions I use JNA
Koblížkáč
KoblížkáčOP15mo ago
Im looking exclusively for C++ interop, since with C i can already accomplish it with jextract/foreign api
tjoener
tjoener15mo ago
For C++, you might need to write some JNI adapters unfortunately Although I think there's a foreign function api coming
tjoener
tjoener15mo ago
Oracle Help Center
Core Libraries
An upcall is a call from native code back to Java code. An upcall stub enables you to pass Java code as a function pointer to a foreign function.
tjoener
tjoener15mo ago
This But also pretty C based You could probably do C++ interop, but you'd need different names for different OSes, as C++ uses name mangling, plus code in headers only is lost
Koblížkáč
KoblížkáčOP15mo ago
i think you don't understand what i want, i know how to use foreign memory api. ff memory api doesnt yet support c++ classes
tjoener
tjoener15mo ago
yeah, like I said, C++ uses name mangling So you'd need the correct function names, the correct setup for classes etc probably easier to write a C wrapper around it, and then call that Which C++ library are you trying to interact with?
Koblížkáč
KoblížkáčOP15mo ago
winui3
tjoener
tjoener15mo ago
ah, the new UWP, yeah, that's definitely going to be painful to do If not straight up impossible
Koblížkáč
KoblížkáčOP15mo ago
yeah no problem i can scrape it, thats no problem it just came up in my mind if it would be possible
tjoener
tjoener15mo ago
Codename One
Java Developers can FINALLY Target Windows UWP - Codename One
The whole source of this port as well as our changes to iKVM are available in our git repository.
tjoener
tjoener15mo ago
I found this
Koblížkáč
KoblížkáčOP15mo ago
that looks cool
tjoener
tjoener15mo ago
no idea if it's free or anything well, for UIs I use flatlaf nowadays, nice layer on top of swing got that intellij vibe
Koblížkáč
KoblížkáčOP15mo ago
i like flatlaf as well yeah exactly thats what i though
0x150
0x15015mo ago
? if anything, c++ will be easier just slap an extern "C" JNIEXPORT on the exported jni function and no mangling will be done
tjoener
tjoener15mo ago
yeah, you have to write JNI...
0x150
0x15015mo ago
yeah..?
Koblížkáč
KoblížkáčOP15mo ago
but yet, its not possible with foreign memory api?¨
0x150
0x15015mo ago
that’s a given if you want c++ code to interact with java, no? what exactly do you want to do in what direction do you want c++ code to call java code? do you want java code to call c++ code and be able to provide a native callback that goes back to java code?
Koblížkáč
KoblížkáčOP15mo ago
use jextract to create calls to the winui3 library, basically access winui classes from java
0x150
0x15015mo ago
jna or ffi
Koblížkáč
KoblížkáčOP15mo ago
ffi
0x150
0x15015mo ago
you can just bind native methods found via a linker to a methodhandle and invoke that with the native params gotten from the memory area basic ffi
JavaBot
JavaBot15mo ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.

Did you find this page helpful?