JNA - 在 C++ 上调用方法从 DLL 传回的实例
假设我有一个带有单个导出方法的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于任意
type* function()
定义,您可以使用 JNA 映射该方法作为返回com.sun.jna.Pointer
,但您将无法调用来自 JNA 的 C++ 对象上的方法。一个简单的解决方法是编写一个 C 接口库,它只需为您调用对象上的方法...因此,如果您有一些成员函数
foo()
您可以从你的 C++ 代码:显然这会为你增加一些工作......但我怀疑切换到 JNI 的开销 大致相同。
For any arbitrary
type* function()
definition you can map the method using JNA as returning acom.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:Obviously this will add some work for you...but I suspect the overhead for switching to JNI would be about the same.
JNAerator 可能会帮助您完成您所要求的操作。它对分解和 vtable 访问有一些支持(调用 *this 方法需要)。
JNAerator may facilitate doing what you ask. It has some support for demangling and vtable access (required for calling *this methods).