How to define and pass ByteBuffer using swig?(如何使用 swig 定义和传递 ByteBuffer?)
问题描述
我需要从 Java 调用 C 函数.该函数有以下API:
I need to call to C function from Java. The function has the following API:
void convert(char* pchInput, int inputSize, int convertValue, char* pchOutput, int* outputSize);
我正在使用 swig 来制作包装器.
I'm using swig in order to make the wrappers.
我读了这篇文章:ByteBuffer.allocate() 与 ByteBuffer.allocateDirect()
最好将结果 (pchOutput)
创建为 DirectByteBuffer
.
And it seems best to create the result (pchOutput)
as DirectByteBuffer
.
- 如何将
Bytebuffer
传递给代码 c(使用 swig) - c 代码如何从 ByteBuffer 读取和写入数据?
- How can I pass the
Bytebuffer
to the code c (using swig) - How the c code will read and write the data from the ByteBuffer ?
谢谢
推荐答案
来自 http://swig.10945.n7.nabble.com/Re-How-to-specify-access-to-a-java-nio-ByteBuffer-td6696.html 应该在小的更改后工作(特别是 %typemap(in) (char* pchOutput, int* outputSize))
因为我没有编译这个,只需运行 swig 来检查 java 端是否正确生成.
a little modified sample from http://swig.10945.n7.nabble.com/Re-How-to-specify-access-to-a-java-nio-ByteBuffer-td6696.html that should work after small changes (especially %typemap(in) (char* pchOutput, int* outputSize))
as I did not compiled this, just run swig to check if java side is properly generated.
%typemap(in) (char* pchInput, int inputSize) {
$1 = JCALL1(GetDirectBufferAddress, jenv, $input);
$2 = (int)JCALL1(GetDirectBufferCapacity, jenv, $input);
}
%typemap(in) (char* pchOutput, int* outputSize) {
$1 = JCALL1(GetDirectBufferAddress, jenv, $input);
$2 = &((int)JCALL1(GetDirectBufferCapacity, jenv, $input));
}
/* These 3 typemaps tell SWIG what JNI and Java types to use */
%typemap(jni) (char* pchInput, int inputSize), (char* pchOutput, int* outputSize) "jobject"
%typemap(jtype) (char* pchInput, int inputSize), (char* pchOutput, int* outputSize) "java.nio.ByteBuffer"
%typemap(jstype) (char* pchInput, int inputSize), (char* pchOutput, int* outputSize) "java.nio.ByteBuffer"
%typemap(javain) (char* pchInput, int inputSize), (char* pchOutput, int* outputSize) "$javainput"
%typemap(javaout) (char* pchInput, int inputSize), (char* pchOutput, int* outputSize) {
return $jnicall;
}
这篇关于如何使用 swig 定义和传递 ByteBuffer?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 swig 定义和传递 ByteBuffer?
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01