我有一个 Java 应用程序,它调用 ac 库来执行加密功能。这是一个用 c 实现的自定义库,我们需要从一些 Java 程序中使用它。我需要一种方法来定义一个 SWIG 类型映射,它允许我调用一个从 Java 传递 bytearray 的函数,并将其视为 C 函数中的无符号字符指针,其中 c 函数填充数据并将其返回给 java
我目前不满意的接口文件摘录如下
%module CryptoFacade
%pointer_functions(int, intp);
%pointer_functions(unsigned char, unsigned_charp);
int enCrypt(char* clearText, int clearLen,unsigned char* retCipherText, int *retCipherLen);
我不满意的Java代码摘录如下。在下面的代码中,我预计对 enCrypt 函数的调用会给我一个缓冲区,但根据生成的代码,它会给我一个“短”。(见代码中的注释)
class MainLoader {
static {
System.loadLibrary("dccasecuJ"); //Load my crypto library
}
public static void main(String[] args) {
// Define the parameters to be passed by reference
SWIGTYPE_p_int retCipherLen=CryptoFacade.new_intp();
SWIGTYPE_p_unsigned_char retCipherText =
CryptoFacade.new_unsigned_charp();
CryptoFacade myFacade=new CryptoFacade();
// Call crypto library function. First two are value parameters, next two are return
myFacade.enCrypt("STRING-TO-ENCRYPT", 17, retCipherText, retCipherLen);
// The length I get back in fourth parameter is just fine
int gotLen= CryptoFacade.intp_value(retCipherLen);
//The value I get for the Ciphertext though is a "short" ... no good
// I need a byte[] in java that has the ciphertext
short gotText= CryptoFacade.unsigned_charp_value(retCipherText);
我想我应该将我的接口定义更改为如下所示,我将第三个参数设为 jbytearray,然后我必须实现一个类型映射,它将 C 程序中无符号字符指针指向的内容复制到 java bytearray。
如果我必须将内容的长度指定为 256 字节,那我很好,因为处理任意长度可能会很棘手。
有人能指出我可以找到这样一个类型图的地方吗(我是 SWIG 的新手,没有编写类型图的经验)
%module CryptoFacade
%pointer_functions(int, intp);
%pointer_functions(unsigned char, unsigned_charp);
int enCrypt(char* clearText, int clearLen, jbyteArray retCipherText, int *retCipherLen);