SWIG 将 const unsigned char example[] 包装到 Java byte[] 作为参数

Posted

技术标签:

【中文标题】SWIG 将 const unsigned char example[] 包装到 Java byte[] 作为参数【英文标题】:SWIG wrap const unsigned char example[] into a Java byte[] as argument 【发布时间】:2014-05-27 09:33:21 【问题描述】:

我有

const unsigned char publicKeyModulus[],我想将它包装为一个参数并在我的 java 层中作为一个字节 [] 获取。

c++ onInitialize(publicKeyModulus)

Java onInitialize(byte[] publicKeyModulus)

SWIG.i

%typemap(jni) unsigned char *content "jbyteArray"
%typemap(jtype) unsigned char *content "byte[]"
%typemap(jstype) unsigned char *content "byte[]"
%typemap(javain) unsigned char *content 

%typemap(in) unsigned char * content 
    $result = JCALL1(NewByteArray, jenv, arg1->contentLength);
    JCALL4(SetByteArrayRegion, jenv, $result, 0, arg1->contentLength, $1);


// Optional: ignore contentLength;
%ignore contentLength;

%inline %
typedef struct 
    unsigned char * content;
    int contentLength;
 Foo;
%

我一直在尝试这个 swig 文件的很多变体,就像人们建议的类似问题一样,但它对我不起作用。我猜是因为在另一个问题中,他们将其用作返回值,而我必须在修改中做错事才能将其作为参数。

感谢您的 cmets,谢谢。

【问题讨论】:

您是否尝试过按照24.8.5 Binary data vs Strings 中的说明使用%apply 是的,我尝试了申请,它还给了我想要的东西。但它会在 cxx 文件中生成一个 GetByteArrayElements,这会使我的应用程序崩溃。 【参考方案1】:

在尝试了一堆不同的解决方案后,效果更好的是上面一条评论中建议的 %apply。

%apply (char *STRING, size_t LENGTH)  (char *modulusBytes, int modulusLength) 

需要强调的一点是变量的名称必须与声明中使用的名称相同。

【讨论】:

以上是关于SWIG 将 const unsigned char example[] 包装到 Java byte[] 作为参数的主要内容,如果未能解决你的问题,请参考以下文章

TypeError:在方法“...”中,使用 swig 模块时类型为“unsigned char const *”的参数 1

SWIG 将 unsigned char* 转换为 20 字节缓冲区 Java 结构

Swig:将 std::vector<unsigned char> 传递给从 c++ 生成的 c# 函数

如何使用 swig 将 const 字符串参数从 perl 传递到 c++

Swig:如何将 c++ 字符串 const & 类型映射到 python 字符串?

如何使用 swig 从`unsigned int *`返回`uint []`