JNA - 在 C++ 上调用方法从 DLL 传回的实例

发布于 2024-08-14 00:47:58 字数 322 浏览 4 评论 0原文

假设我有一个带有单个导出方法的 C++ DLL,例如:

CustomerProcessor* getInstance();

它只是返回实际包含我需要调用的方法的类的实例。

我知道我可以使用 JNA (扩展 com.sun.jna.Library)将 getInstance() 方法映射到 Java 中的类,将返回的 CustomerProcessor 实例存储在 com.sun.jna.Pointer 中。

然后我可以以某种方式将其映射到 CustomerProcessor 类,以便我可以调用它的方法(如果可以,如何调用)?

Say I have a C++ DLL with a single exported method such as:

CustomerProcessor* getInstance();

i.e. it simply returns an instance of the class that actually contains the methods I need to call.

I know I can map the getInstance() method to a Class in Java using JNA (extending com.sun.jna.Library), store the returned CustomerProcessor instance in a com.sun.jna.Pointer.

Can I then somehow map this to the CustomerProcessor class so that I can call methods upon it (and if so, how)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏有森光若流苏 2024-08-21 00:47:58

对于任意 type* function() 定义,您可以使用 JNA 映射该方法作为返回 com.sun.jna.Pointer,但您将无法调用来自 JNA 的 C++ 对象上的方法。

一个简单的解决方法是编写一个 C 接口库,它只需为您调用对象上的方法...因此,如果您有一些成员函数 foo() 您可以从你的 C++ 代码:

extern "C" void bar(type* var){
   var->foo();
}

显然这会为你增加一些工作......但我怀疑切换到 JNI 的开销 大致相同。

For any arbitrary type* function() definition you can map the method using JNA as returning a com.sun.jna.Pointer, but you won't be able to invoke methods on a C++ object from JNA.

A simple workaround for this would be to write a C interface library that simply invokes the method on the objects for you...so if you have some member function foo() you could export a C method from your C++ code:

extern "C" void bar(type* var){
   var->foo();
}

Obviously this will add some work for you...but I suspect the overhead for switching to JNI would be about the same.

与酒说心事 2024-08-21 00:47:58

JNAerator 可能会帮助您完成您所要求的操作。它对分解和 vtable 访问有一些支持(调用 *this 方法需要)。

JNAerator may facilitate doing what you ask. It has some support for demangling and vtable access (required for calling *this methods).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文