1

这是如何使用从 C++ 到 Java 的 ByteBuffer 返回问题的后续行动——我将感谢 Flexo 迄今为止的不懈支持——我想我只是还没有掌握类型映射...... :-(

我有一个带有如下四个参数的 C 函数,其中第三个和第四个参数通过引用传递

extern "C" int foo(const char* passByValText, const int passbyValLen, 
             unsigned char* retTextByRef, int *retTextLen) 

Calling Java Wrapper 函数需要看起来像这样

int foo(String passByValText, int passbyValLen, byte[] retBuf, SWIGTYPE_p_int retTextLen);

或者它可以是

int foo(String passByValText, int passbyValLen, ByteBuffer retBuf, SWIGTYPE_p_int retTextLen);

我可以为我写的类型图道歉 - 但基本上这可能会使事情更加混乱......所以我保持这个干净......

下面是c端的示例代码

extern "C" int foo (const char* passByValText, const int passbyValLen, char *retTextByRef, int *retTextLen){
    // binary value stuffed in the retTextByRef. In real program I compute this
    unsigned char someText[10]={0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x00};    
    memcpy(cipherText,someText,9);
    // I set the length of the value I stuffed into the buffer in c program
    *cipherLen=9;
return 0;

}

以及调用这个 c 函数的 Java 程序

class Caller{
    public static void main(String[] args) {

    //Define the parameter to pass by reference!!
    SWIGTYPE_p_int retTextLen=MYMODULE.new_intp();

    //Create a Java Wrapper Instance 
    JavaWrapClass myWrap=new JavaWrapClass();

    StringBuffer sBuf = new StringBuffer(50);
    int retTextLenVal=0;
    myWrap.foo("PASSED-STRING-BY-VALUE", 24, sBuf, retTextLen);
    retTextLenVal= MYMODULE.intp_value(retTextLen);
    System.out.println("JAVA :: got length "+ retTextLenVal);
    System.out.println("JAVA :: got BUFFER "+ sBuf);
    }
}

万分感谢!!!

4

1 回答 1

1

我使用以下标头进行测试:

static int foo(const char *passByValText, const int passByValLen,
               unsigned char *retTextByRef, int *retTextLen) {
  *retTextLen = passByValLen;
  if (retTextByRef) {
    memcpy(retTextByRef, passByValText, passByValLen);
  }
  return NULL == retTextByRef;
}

然后,我将最简单的(例如最少自定义类型映射)SWIG 接口放在一起,以合理地包装这个函数:

%module test

%{
#include "test.h"
%}

%apply (char *STRING, size_t LENGTH) { (const char *passByValText, const int passByValLen) };
// Use String instead of byte[] for input as requested in Q:
%typemap(jstype) (const char *passByValText, const int passByValLen) "String"
%typemap(javain) (const char *passByValText, const int passByValLen) "$javainput.getBytes()"

%include <arrays_java.i>

// Force unsigned char array to be byte[] in Java:
%apply signed char[]  { unsigned char *retTextByRef };

%include <typemaps.i>

// Use the OUTPUT typemap - it passes an array with only one element
// could also use cpointers.i if you prefer
%apply int *OUTPUT { int *retTextLen };

%include "test.h"

最终将函数公开foo为一个接受三个输入的函数 - a Stringbyte[]用于输出数组的 a 和int[]用于输出的a int

这让我可以写:

public class run {
  public static void main(String[] argv) {
    System.loadLibrary("test");
    byte arr[] = new byte[100];
    int sz[] = {100};
    test.foo("Hello world", arr, sz);
    System.out.println(new String(arr, 0 , sz[0]));    
  }
}

测试时按预期工作。arrays_java.i 中的类型映射拒绝null数组,因此if我编写的示例中的 不能用于查询输出大小。

如果要使用 aStringBuffer而不是byte[]最简单的解决方案是使用%pragma在 Java 中生成重载:

%pragma(java) modulecode = %{
  public static int foo(String in, StringBuffer out) {
    int sz[] = {out.capacity()};
    byte ret[] = new byte[out.capacity()];
    final int v = test.foo(in, ret, sz);
    // Or whatever your preferred semantics are: 
    out.replace(0, sz[0], new String(ret, 0, sz[0]));
    return v;
  }
%}
于 2012-07-26T11:06:22.643 回答