gpt4 book ai didi

java - SWIG 和 Java 将 carrays.i 和 array_functions 用于 C 字符串数组

转载 作者:太空宇宙 更新时间:2023-11-04 03:02:37 29 4
gpt4 key购买 nike

我在下面的配置中尝试创建一个测试 C 函数,该函数返回一个指向字符串数组的指针,然后使用 SWIG 的 carrays.i 和 array_functions 包装它,以便我可以访问 Java 中的数组元素。我不确定 %array_class 或 %array_functions 中的哪一个最适合这种情况。此示例是包装返回动态创建数组的 C 函数的构建 block 。

不确定性:

  • %array_functions(字符,SWIGArrayUtility); - 不确定字符是否正确
  • 内联 char *getCharArray() - 不确定 C 函数签名是否正确
  • 字符串结果 = getCharArray(); - 字符串返回看起来很奇怪,但这就是 SWIG 生成的内容
  • 不确定内联 char *getCharArray() 是否创建了一个具有适合包装的结构的数组。

SWIG.i:

%module Test

%{
#include "test.h"
%}

%include <carrays.i>
%array_functions(char, SWIGArrayUtility);
%include "test.h"

%pragma(java) modulecode=%{
public static char[] getCharArrayImpl() {
final int num = numFoo();
char ret[] = new char[num];
String result = getCharArray();
for (int i = 0; i < num; ++i) {
ret[i] = SWIGArrayUtility_getitem(result, i);
}
return ret;
}

%}

内联 header C 函数:

#ifndef TEST_H
#define TEST_H

inline static unsigned short numFoo() {
return 3;
}

inline char *getCharArray(){
static char* foo[3];
foo[0]="ABC";
foo[1]="5CDE";
foo[2]="EEE6";
return foo;
}

#endif

Java 主测试器:

public class TestMain {
public static void main(String[] args) {
System.loadLibrary("TestJni");
char[] test = Test.getCharArrayImpl();
System.out.println("length=" + test.length);
for(int i=0; i < test.length; i++){
System.out.println(test[i]);
}
}

}

Java 主测试器输出:

length=3
?
?
,

SWIG 生成的 Java API:

public class Test {
public static String new_SWIGArrayUtility(int nelements) {
return TestJNI.new_SWIGArrayUtility(nelements);
}

public static void delete_SWIGArrayUtility(String ary) {
TestJNI.delete_SWIGArrayUtility(ary);
}

public static char SWIGArrayUtility_getitem(String ary, int index) {
return TestJNI.SWIGArrayUtility_getitem(ary, index);
}

public static void SWIGArrayUtility_setitem(String ary, int index, char value) {
TestJNI.SWIGArrayUtility_setitem(ary, index, value);
}

public static int numFoo() {
return TestJNI.numFoo();
}

public static String getCharArray() {
return TestJNI.getCharArray();
}


public static char[] getCharArrayImpl() {
final int num = numFoo();
char ret[] = new char[num];
String result = getCharArray();
System.out.println("result=" + result);
for (int i = 0; i < num; ++i) {
ret[i] = SWIGArrayUtility_getitem(result, i);
System.out.println("ret[" + i + "]=" + ret[i]);
}
return ret;
}


}

最佳答案

有两个必要的改变:

  • char * getCharArray() 必须是 char ** getCharArray(),因为该函数返回指向 的指针数组(C 指针)字符 *。在此更改之后,将出现一个新的 SWIGTYPE_p_p_char Java 类,要获取它,必须将 %include "various.i" 添加到接口(interface)文件中。

    <
  • %array_functions(char, SWIGArrayUtility) 必须是 %array_functions(char *, SWIGArrayUtility),因为数组包含指向 char *(String Java 类)。

我已经使用这个包含文件测试了给定的解决方案:

#ifndef TEST2_H
#define TEST2_H

unsigned short numFoo() {
return 3;
}

char ** getCharArray(){
static char* foo[3];
foo[0]="ABC";
foo[1]="5CDE";
foo[2]="EEE6";
return foo;
}

#endif

这个接口(interface)文件:

%module Test2

%{
#include "test2.h"
%}
%include "test2.h"

%include "various.i"

%include "carrays.i"
%array_functions(char *, SWIGArrayUtility);

%pragma(java) modulecode=%{
public static String[] getCharArrayImpl() {
final int num = numFoo();
String ret[] = new String[num];
SWIGTYPE_p_p_char result = getCharArray();
for (int i = 0; i < num; ++i) {
ret[i] = SWIGArrayUtility_getitem(result, i);
}
return ret;
}
%}

这个测试类:

public static void main(String[] args) {
System.loadLibrary("test2");
String res[] = Test2.getCharArrayImpl();
System.out.println("length=" + res.length);
for(int i=0; i < res.length; i++){
System.out.println(res[i]);
}
}

关于java - SWIG 和 Java 将 carrays.i 和 array_functions 用于 C 字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9619623/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com