结构内部的JNA结构

时间:2016-08-04 10:19:11

标签: java pointers structure jna

我对JNA编程很新。我有一个本机代码如下

int Data(int Number, aaa *Data, int* error);

typedef struct {
    uint8 Storage;
    LStr path;
    int32 chart;
    int32 strt;
    LStr val;
    int32 timedata;
    } aaa;

typedef struct {
    int32   cnt;    /*num of bytes that follow*/    
    uChar   str[1]; 
} LStrval, *LStrPtr, **LStr;

如何使用JNA从Java调用此本机函数。我尝试了几种选择,但我没有得到结果。我试过的其中一个选项如下。

界面功能

public int SetStorage_Data(int num,Storage_Data.ByReference data, Pointer error);

 public class Storage_Data extends Structure{
        public static class ByReference extends Storage_Data implements Structure.ByReference {}

        public byte storage;
        public Stringtype.ByReference savepath;
        public int chart;
        public int strt;
        public Stringtype.ByReference val;
        public int timedata;

        @Override
        protected List getFieldOrder() {
            return Arrays.asList("storage", "savepath","chart",
                    "strt","val","timedata");
        }
    }



public class Stringtype extends Structure{
        public static class ByReference extends Stringtype implements Structure.ByReference {

            public ByReference(int buffersize) {
                super(buffersize);
                // TODO Auto-generated constructor stub
            }}

        public int count;
        public byte[] str;

        public Stringtype(int buffersize) {
            str = new byte[buffersize];
            count = str.length;
            allocateMemory();
        }

        @Override
        protected List getFieldOrder() {
            return Arrays.asList("count", "str");
        }
    }

Java调用

InjectionAnalyzerInterfaces.Storage_Data.ByReference storagedata = new InjectionAnalyzerInterfaces.Storage_Data.ByReference();

 int len= string.length;
 InjectionAnalyzerInterfaces.Stringtype.ByReference savepath = new InjectionAnalyzerInterfaces.Stringtype.ByReference(len);

            byte[] stringbyte = string.getBytes();
            System.arraycopy(stringbyte, 0, savepath.str, 0, bytes);
            storagedata.savepath = savepath;
            storagedata.chart = 1;
            storagedata.strt =1;
            String temp= "all";
            byte[] strtbyte = temp.getBytes();
            int dd = strtbyte.length;
            InjectionAnalyzerInterfaces.Stringtype.ByReference stra = new InjectionAnalyzerInterfaces.Stringtype.ByReference(dd);
            System.arraycopy(strtbyte, 0,  stra.str,0, dd);
            storagedata.strt = stra;


            storagedata.tdata = 0;

            Pointer error = new Memory(5);

            int status1 =  lib.Set_Config_Storage_Data(deviceNumber, storagedata, error);

请帮帮我。提前谢谢

2 个答案:

答案 0 :(得分:1)

在定义LStrVal时,需要初始化基本数组字段,以便JNA知道要分配多少内存(至少开始时):

public byte str = new byte[1];

您需要覆盖Structure.read()才能做正确的事情,并提供一个基于Pointer的构造函数,以便在从本机内存初始化后进行读取:

public void read() {
    count = (int)readField("count");
    str = new byte[count];
    super.read();
}

public LStr(Pointer p) {
    super(p);
    read();
}

最后,你的包含结构有struct**个字段(不知道为什么),你必须将它们映射到Pointer,并提供一个方便的功能来实际转换为你想要的结构:

public Pointer savepath;
public LStr getSavepath() {
    return savepath != null ? new LStr(savepath.getPointer(0)) : null;
}

答案 1 :(得分:0)

你走在正确的轨道上。

您需要将内部结构(LStrVal)声明为其自己的结构类。看起来你已经使用Stringtype结构完成了这项工作,但你需要在那里更改一些内容:

  • 使用int arg删除构造函数。您的C结构将byte[]数组的大小指定为1,只需使用该常量。
  • 您需要一个调用super()
  • 的无参数构造函数
  • 你需要一个带有指针arg p的构造函数,它可以调用super(p)
  • 您不需要ByReference部分

然后外部结构应该为这些结构指针使用PointerByReference类型,然后在主代码中使用new Stringtype(pbr.getValue())将指针转换为必要的类。

或者,正如@technomage建议的那样,您可以使用指针类型,然后使用getValue()代替getPointer(0)。底线是你需要一个指针(指针)作为你的实例变量。