我需要从Java调用C函数。 该函数具有以下API:
void convert(char* pchInput, int inputSize, int convertValue, char* pchOutput, int* outputSize);
我正在使用swig来制作包装。
我看了帖子: ByteBuffer.allocate() vs. ByteBuffer.allocateDirect()
最好将结果(pchOutput)
创建为DirectByteBuffer
。
Bytebuffer
传递给代码c(使用swig)由于
答案 0 :(得分:5)
来自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端是否正确生成。
%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;
}