1
zhanghua
2024-09-26 c775c6953d9759e70f08acbfa8f6d7490aaae3d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
package com.netsdk.demo.customize;
 
import com.netsdk.demo.util.CaseMenu;
import com.netsdk.lib.NetSDKLib;
import com.netsdk.lib.ToolKits;
import com.netsdk.lib.structure.*;
import com.netsdk.lib.utils.Initialization;
import com.sun.jna.Memory;
import com.sun.jna.Native;
import com.sun.jna.Pointer;
import com.sun.jna.ptr.IntByReference;
import java.io.File;
import java.io.UnsupportedEncodingException;
import static com.netsdk.lib.NetSDKLib.EVENT_IVS_REMOTE_APPROVAL_ALARM;
import static com.netsdk.lib.enumeration.NET_EM_CFG_OPERATE_TYPE.NET_EM_CFG_FINANCIAL_CABINET_CONFIG;
 
/**
 * @author 291189
 * @version 1.0
 * @description GIP220729030 自研业务库demo
 * @date 2022/8/10 10:23
 */
public class VaultDoorStateDemo extends Initialization {
 
 
    int channel=-1;
    NetSDKLib.LLong    attachHandle=new NetSDKLib.LLong(0);
 
    public void GetVaultDoorState(){
 
        NET_IN_GET_VAULTDOOR_STATE_INFO input=new NET_IN_GET_VAULTDOOR_STATE_INFO();
        Pointer pointerInput = new Memory(input.size());
        pointerInput.clear(input.size());
        ToolKits.SetStructDataToPointer(input, pointerInput, 0);
 
        NET_OUT_GET_VAULTDOOR_STATE_INFO outPut=new NET_OUT_GET_VAULTDOOR_STATE_INFO();
        Pointer pointerOutput = new Memory(outPut.size());
        pointerOutput.clear(outPut.size());
        ToolKits.SetStructDataToPointer(outPut, pointerOutput, 0);
 
        boolean b
                = netSdk.CLIENT_GetVaultDoorState(loginHandle, pointerInput, pointerOutput, 5000);
 
        if(b){
            System.out.printf(" CLIENT_GetVaultDoorState Success\n");
 
            ToolKits.GetPointerDataToStruct(pointerOutput,0,outPut);
            Native.free(Pointer.nativeValue(pointerInput)); //清理内存
            Pointer.nativeValue(pointerInput, 0);
 
            Native.free(Pointer.nativeValue(pointerOutput));
            Pointer.nativeValue(pointerOutput, 0);
 
            System.out.println("emDoorState:"+ outPut.emDoorState);
 
            System.out.println("emLockState:"+ outPut.emLockState);
        }else {
            Native.free(Pointer.nativeValue(pointerInput)); //清理内存
            Pointer.nativeValue(pointerInput, 0);  //防止gc重复回收
 
            Native.free(Pointer.nativeValue(pointerOutput));
            Pointer.nativeValue(pointerOutput, 0);
 
            System.out.printf("CLIENT_GetVaultDoorState Failed!LastError = %s\n",
                    ToolKits.getErrorCode());
        }
 
 
 
    }
 
 
    public void GetFinancialCabinetState(){
 
        NET_IN_GET_CABINET_STATE_INFO input=new NET_IN_GET_CABINET_STATE_INFO();
 
        Pointer pointerInput = new Memory(input.size());
        pointerInput.clear(input.size());
        ToolKits.SetStructDataToPointer(input, pointerInput, 0);
 
        NET_OUT_GET_CABINET_STATE_INFO outPut=new NET_OUT_GET_CABINET_STATE_INFO();
 
        Pointer pointerOutput = new Memory(outPut.size());
        pointerOutput.clear(outPut.size());
        ToolKits.SetStructDataToPointer(outPut, pointerOutput, 0);
 
        boolean b
                = netSdk.CLIENT_GetFinancialCabinetState(loginHandle, pointerInput, pointerOutput, 5000);
 
        if(b){
            System.out.printf(" CLIENT_GetFinancialCabinetState Success\n");
 
            ToolKits.GetPointerDataToStruct(pointerOutput,0,outPut);
            Native.free(Pointer.nativeValue(pointerInput)); //清理内存
            Pointer.nativeValue(pointerInput, 0);   //防止gc重复回收
 
            Native.free(Pointer.nativeValue(pointerOutput));
            Pointer.nativeValue(pointerOutput, 0);
 
 
            System.out.println("fTemperature:"+ outPut.fTemperature);
 
            System.out.println("fHumidity:"+ outPut.fHumidity);
        }else {
            Native.free(Pointer.nativeValue(pointerInput)); //清理内存
            Pointer.nativeValue(pointerInput, 0);
 
            Native.free(Pointer.nativeValue(pointerOutput));
            Pointer.nativeValue(pointerOutput, 0);
            System.out.printf("CLIENT_GetFinancialCabinetState Failed!LastError = %s\n",
                    ToolKits.getErrorCode());
        }
 
 
 
 
    }
 
 
    public void financialCabinetConfig(){
        //获取
        int emCfgOpType
                = NET_EM_CFG_FINANCIAL_CABINET_CONFIG;
 
        NET_CFG_FINANCIAL_CABINET_CONFIG_INFO msg=new NET_CFG_FINANCIAL_CABINET_CONFIG_INFO();
 
        //入参
        Pointer szOutBuffer =new Memory(msg.size());
        szOutBuffer.clear(msg.size());
        ToolKits.SetStructDataToPointer(msg, szOutBuffer, 0);
        boolean b=netSdk.CLIENT_GetConfig(loginHandle, emCfgOpType, -1, szOutBuffer, msg.size(), 3000, null);
 
        if(!b){
 
            Native.free(Pointer.nativeValue(szOutBuffer)); //清理内存
            Pointer.nativeValue(szOutBuffer, 0);
 
            System.out.printf("CLIENT_GetConfig Failed!LastError = %s\n",
                    ToolKits.getErrorCode());
 
            return;
        }
 
            System.out.printf(" CLIENT_GetConfig Success\n");
 
            ToolKits.GetPointerDataToStruct(szOutBuffer,0,msg);
            Native.free(Pointer.nativeValue(szOutBuffer)); //清理内存
            Pointer.nativeValue(szOutBuffer, 0);
 
            NET_FINANCIAL_CABINET_MESSAGE stuMobileMessage
                    = msg.stuMobileMessage;
 
 
            System.out.println("bEnable:"+stuMobileMessage.bEnable);
 
 
            int nPhoneNumberNum
                    = stuMobileMessage.nPhoneNumberNum;
 
            System.out.println("nPhoneNumberNum:"+nPhoneNumberNum);
 
            ByteSize16[] szPhoneNumber
                    = stuMobileMessage.szPhoneNumber;
 
            for(int i=0;i<nPhoneNumberNum;i++){
                ByteSize16 byteSize16
                        = szPhoneNumber[i];
 
                System.out.println("["+i+"]:"+new String(byteSize16.byte16));
            }
 
            if(nPhoneNumberNum>0){
            ToolKits.ByteArrZero(szPhoneNumber[0].byte16);
 
            String phone="18955652222";
 
            ToolKits.StringToByteArray(phone,szPhoneNumber[0].byte16);
            }
                stuMobileMessage.bEnable=1;
            //下发
 
        IntByReference restart = new IntByReference(0);
        Pointer szInBuffer =new Memory(msg.size());
        szInBuffer.clear(msg.size());
        ToolKits.SetStructDataToPointer(msg, szInBuffer, 0);
        boolean result=netSdk.CLIENT_SetConfig(loginHandle, emCfgOpType, -1, szInBuffer, msg.size(), 3000, restart, null);
 
        if(result) {
 
            Native.free(Pointer.nativeValue(szInBuffer)); //清理内存
            Pointer.nativeValue(szInBuffer, 0);
 
            System.out.println("CLIENT_SetConfig success");
        }else {
            Native.free(Pointer.nativeValue(szInBuffer)); //清理内存
            Pointer.nativeValue(szInBuffer, 0);
            System.err.println("CLIENT_SetConfig field");
        }
    }
 
    public NetSDKLib.LLong AttachEventRealLoadPic() {
        // 先退订,设备不会对重复订阅作校验,重复订阅后会有重复的事件返回
        if(attachHandle.longValue()!=0){
            this.DetachEventRealLoadPic();
        }
 
        // 需要图片
        int bNeedPicture = 1;
        attachHandle = netSdk.CLIENT_RealLoadPictureEx(loginHandle, channel, EVENT_IVS_REMOTE_APPROVAL_ALARM, bNeedPicture,
                AnalyzerDataCB.getInstance(), null, null);
        if (attachHandle.longValue() != 0) {
            System.out.printf("Chn[%d] CLIENT_RealLoadPictureEx Success\n", channel);
        } else {
            System.out.printf("Chn[%d] CLIENT_RealLoadPictureEx Failed!LastError = %s\n", channel,
                    ToolKits.getErrorCode());
        }
 
        return attachHandle;
    }
    /**
     * 报警事件(智能)回调
     */
    private static class AnalyzerDataCB implements NetSDKLib.fAnalyzerDataCallBack {
        private final File picturePath;
        private static AnalyzerDataCB instance;
 
        private AnalyzerDataCB() {
            picturePath = new File("./AnalyzerPicture/");
            if (!picturePath.exists()) {
                picturePath.mkdirs();
            }
        }
 
        public static AnalyzerDataCB getInstance() {
            if (instance == null) {
                synchronized (AnalyzerDataCB.class) {
                    if (instance == null) {
                        instance = new AnalyzerDataCB();
                    }
                }
            }
            return instance;
        }
 
 
        @Override
        public int invoke(NetSDKLib.LLong lAnalyzerHandle, int dwAlarmType, Pointer pAlarmInfo, Pointer pBuffer, int dwBufSize,
                          Pointer dwUser, int nSequence, Pointer reserved) {
            if (lAnalyzerHandle == null || lAnalyzerHandle.longValue() == 0) {
                return -1;
            }
 
            switch (dwAlarmType) {
                case EVENT_IVS_REMOTE_APPROVAL_ALARM : {//金融远程审批事件
                            System.out.println(" 金融远程审批事件");
                    NET_DEV_EVENT_REMOTE_APPROVAL_ALARM_INFO msg=new NET_DEV_EVENT_REMOTE_APPROVAL_ALARM_INFO();
 
                         ToolKits.GetPointerData(pAlarmInfo, msg);
                 //   nChannelID
                            /**
                            通道号
                            */
                            System.out.println("nChannelID:"+msg.nChannelID);
                            /**
                             1:开始 2:停止
                             */
                             System.out.println("nAction:"+msg.nAction);
 
                    try {
                        /**
                         事件名称
                         */
                        System.out.println("szName UTF-8:"+new String(msg.szName,"UTF-8"));
 
                        System.out.println("szName GBK:"+new String(msg.szName,"GBK"));
 
                    } catch (UnsupportedEncodingException e) {
                        e.printStackTrace();
                    }
 
                    /**
                     时间戳(单位是毫秒)
                     */
                    System.out.println("PTS:"+msg.PTS);
 
                    /**
                     事件发生的时间
                     */
                    System.out.println("UTC:"+msg.UTC);
 
                    /**
                     事件ID
                     */
                    System.out.println("nEventID:"+msg.nEventID);
 
                    /**
                     审批单号
                     */
                    System.out.println("nApprovalNo:"+msg.nApprovalNo);
 
                    /**
                     操作类型,-1:未知,0:存箱, 1:取箱
                     */
                    System.out.println("nType:"+msg.nType);
                    /**
                     审批超时时间,单位秒
                     */
                    System.out.println("nTimeout:"+msg.nTimeout);
                        /**
                         存取的舱位下标数量
                         */
                    System.out.println("nCabinListNum:"+msg.nCabinListNum);
 
                    /**
                     存取的舱位下标数组
                     */
                    int[] nCabinList
                            = msg.nCabinList;
 
                    for(int i=0;i<msg.nCabinListNum;i++){
 
                        System.out.println("["+i+"]"+nCabinList[i]);
 
                    }
                    /**
                     存取人ID
                     */
                    System.out.println("szAccessorID:"+new String(msg.szAccessorID));
 
 
                    try {
                        System.out.println("szAccessorName UTF-8:"+new String(msg.szAccessorName,"UTF-8"));
 
                        System.out.println("szAccessorName GBK:"+new String(msg.szAccessorName,"GBK"));
 
                    } catch (UnsupportedEncodingException e) {
                        e.printStackTrace();
                    }
 
                    /**
                     复核人ID
                     */
                    System.out.println("szReviewerID:"+new String(msg.szReviewerID));
 
 
 
                    try {
                        System.out.println("szReviewerName UTF-8:"+new String(msg.szReviewerName,"UTF-8"));
 
                        System.out.println("szReviewerName GBK:"+new String(msg.szReviewerName,"GBK"));
 
                    } catch (UnsupportedEncodingException e) {
                        e.printStackTrace();
                    }
 
                        /**
                         图片信息个数
                         */
                    int nImageInfoNum
                            = msg.nImageInfoNum;
 
                    System.out.println("nImageInfoNum:"+nImageInfoNum);
 
                    NET_IMAGE_INFO_EX2[] stuImageInfo
                            = msg.stuImageInfo;
 
                    for(int i=0;i<nImageInfoNum;i++){
                        NET_IMAGE_INFO_EX2 image
                                = stuImageInfo[i];
 
                        if (dwBufSize > 0) {
                            String picture = picturePath + "/" + System.currentTimeMillis() + "_info.jpg";
                            ToolKits.savePicture(pBuffer, image.nOffset, image.nLength, picture);
                        }
                        System.out.println("szPath:"+ new String(image.szPath));
 
                    }
 
                    break;
                }
                default:
                    System.out.println("其他事件--------------------"+ dwAlarmType);
                    break;
            }
            return 0;
        }
    }
 
 
    /**
     * 停止侦听智能事件
     */
    public void DetachEventRealLoadPic() {
        if (this.attachHandle.longValue() != 0) {
            netSdk.CLIENT_StopLoadPic(this.attachHandle);
        }
    }
 
    public void RunTest()
    {
        System.out.println("Run Test");
        CaseMenu menu = new CaseMenu();;
        menu.addItem((new CaseMenu.Item(this , "AttachEventRealLoadPic" , "AttachEventRealLoadPic")));
        menu.addItem((new CaseMenu.Item(this , "DetachEventRealLoadPic" , "DetachEventRealLoadPic")));
        menu.addItem((new CaseMenu.Item(this , "financialCabinetConfig" , "financialCabinetConfig")));
        menu.addItem((new CaseMenu.Item(this , "GetFinancialCabinetState" , "GetFinancialCabinetState")));
        menu.addItem((new CaseMenu.Item(this , "GetVaultDoorState" , "GetVaultDoorState")));
        menu.run();
    }
 
    public static void main(String[] args) {
        VaultDoorStateDemo vaultDoorStateDemo=new VaultDoorStateDemo();
        InitTest("172.25.160.51",37777,"admin","admin123");
        vaultDoorStateDemo.RunTest();
        LoginOut();
 
    }
}