我有一个结构,其中包含一组其他结构指针,以及一个用于数组长度的字段。此结构由本机方法通过“out”参数返回。
原来的“C”结构:
typedef struct MMAL_COMPONENT_T
{
uint32_t input_num; /**< Number of input ports */
MMAL_PORT_T **input; /**< Array of input ports */
} MMAL_COMPONENT_T;
JNAerator生成的对应Java类:
public class MMAL_COMPONENT_T extends Structure {
public int input_num;
public MMAL_PORT_T.ByReference[] input;
}
“C”方法签名:
MMAL_STATUS_T mmal_component_create(const char *name, MMAL_COMPONENT_T **component);
Java用法:
PointerByReference ref = new PointerByReference();
status = mmal.mmal_component_create("<component-name>", ref);
MMAL_COMPONENT_T component = new MMAL_COMPONENT_T(ref.getValue());
这会生成一条 JNA 错误消息,指出“必须初始化数组字段”。
目前我正在使用Pointer
代替数组并从中手动构建数组:
public class MMAL_COMPONENT_T extends Structure {
public int input_num;
public Pointer input;
}
随着用法:
Pointer[] array = component.input.getPointerArray(0, component.input_num);
MMAL_PORT_T port = new MMAL_PORT_T(array[0]);
port.read();
但是这种方法似乎不能令人满意,因为它很冗长,而且因为使用的是指针而不是实际的结构类型。
那么用 JNA 处理这个问题的规范方法是什么?