4

我的情况是我有一个 C++ 类(MyClass),其方法具有以下签名:

bool getSerialized(const stdString & name, std::string & serialized);

其中 name 是一个 in 参数,而 serialized 是一个 out 参数。

我通过在“i”文件中进行 %extend 和 %ignore 声明使其工作,如下所示:

%extend MyClass{
    std::string getSerialized(const std::string & name){
        std::string res;
        $self->getSerialized(name, res);
        return res;
};
%rename("$ignore", fullname=1) "MyClass::getSerialized";

所以方法 con 可以从 Java 中使用,例如:

MyClass mc = new MyClass();
String res = mc.getSerialized("test");

但是现在我遇到了一个问题,序列化的 std::string 包含二进制数据,包括 '\0' 字符女巫表示 C 字符串的结尾,实际上以下代码显示了 C++ 中的问题:

std::string s;
s.push_back('H');
s.push_back('o');
s.push_back(0);
s.push_back('l');
s.push_back('a');
std::cout << "Length of std::string " << s.size() << std::endl;
std::cout << "CString: '" << s.c_str() << "'" << std::endl;

上面的代码显示:

Length of std::string 5
CString: 'Ho'

正如我在 SWIG 生成的 wrap 文件中看到的,wrap 方法实际上调用了 c_str(),wrap 的代码:

jstring jresult = 0 ;
std::string result;
result = (arg1)->getSerialized();
jresult = jenv->NewStringUTF((&result)->**c_str()**); 
return jresult;

因此,正如预期的那样,Java 中收到的 String 会被截断。那么我如何更改(大概)我的 %extend 函数包装器,以便我可以将其作为字节数组(byte [])返回,而无需事先知道数组的长度。如果可以在 SWIG 层中创建 byteArray 那就太好了,这样我就可以从 Java 调用该方法,例如:

byte[] serialized = mc.getSerialized("test");

其他注意事项:给出了使用 std::string 存储二进制数据,以及使用 Google protobuf 库C++ protobuf 用法的返回类型

有一个非常相似的问题,包括标题Swig: convert return type std::string to java byte[]但是没有二进制数据的情况,所以这里给出的解决方案不适用。

使用 SWIG 2。

4

1 回答 1

5

您可以使用一些类型映射和一些 JNI 来做您想做的事情。我整理了一个例子:

%module test

%include <std_string.i>

%typemap(jtype) bool foo "byte[]"
%typemap(jstype) bool foo "byte[]"
%typemap(jni) bool foo "jbyteArray"
%typemap(javaout) bool foo { return $jnicall; }
%typemap(in, numinputs=0) std::string& out (std::string temp) "$1=&temp;"
%typemap(argout) std::string& out {
  $result = JCALL1(NewByteArray, jenv, $1->size());
  JCALL4(SetByteArrayRegion, jenv, $result, 0, $1->size(), (const jbyte*)$1->c_str());
}
// Optional: return NULL if the function returned false
%typemap(out) bool foo {
  if (!$1) {
    return NULL;
  }
}

%inline %{
struct Bar {
  bool foo(std::string& out) {
    std::string s;
    s.push_back('H');
    s.push_back('o');
    s.push_back(0);
    s.push_back('l');
    s.push_back('a');
    out = s;
    return true;
  }
};
%}

它声明 C++ 包装器为匹配的函数返回一个 Java 字节数组bool foo。它还std::string为真正的实现设置了一个临时对象,该实现foo对 Java 接口本身隐藏了输入参数。

一旦调用完成,它就会创建并返回一个字节数组,前提是该函数没有返回 false。

我检查了它是否按预期工作:

public class run { 
  public static void main(String[] argv) {
    String s = "ho\0la";
    System.out.println(s.getBytes().length);

    System.loadLibrary("test");
    Bar b = new Bar();
    byte[] bytes = b.foo();
    s = new String(bytes);
    System.out.println(s + " - " + s.length());
    assert(s.charAt(2) == 0);
  }
}

您应该意识到const jbyte*从返回类型转换为的含义c_str()- 它可能并不总是您想要的。

作为替代方案,如果输出字节数组的大小实际上是固定的或可以轻松预测,您可以将其传递为预先分配的作为开始的输入。这会起作用,因为数组首先通过引用有效地传递给函数。

于 2012-08-30T12:08:15.043 回答