潘志宝
2024-12-12 b095cfc785d4a280ffaae086503a6a0e4f1fa4c1
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
package com.iailab.netsdk.lib;
 
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.text.SimpleDateFormat;
import java.util.Date;
 
import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.UIManager;
import javax.swing.filechooser.FileFilter;
 
import com.iailab.netsdk.common.ErrorCode;
import com.iailab.netsdk.common.PaintPanel;
import com.iailab.netsdk.demo.module.LoginModule;
import com.iailab.netsdk.lib.NetSDKLib.LLong;
 
import com.sun.jna.Memory;
import com.sun.jna.Pointer;
import com.sun.jna.Structure;
import com.sun.jna.ptr.IntByReference;
 
public class ToolKits {
    static NetSDKLib netsdkapi = NetSDKLib.NETSDK_INSTANCE;
    static NetSDKLib configapi = NetSDKLib.CONFIG_INSTANCE;
    
      /***************************************************************************************************
       *                                          工具方法                                                       *
       ***************************************************************************************************/
    public static void GetPointerData(Pointer pNativeData, Structure pJavaStu)
    {
        GetPointerDataToStruct(pNativeData, 0, pJavaStu);
    }
 
    public static void GetPointerDataToStruct(Pointer pNativeData, long OffsetOfpNativeData, Structure pJavaStu) {
        pJavaStu.write();
        Pointer pJavaMem = pJavaStu.getPointer();
        pJavaMem.write(0, pNativeData.getByteArray(OffsetOfpNativeData, pJavaStu.size()), 0,
                pJavaStu.size());
        pJavaStu.read();
    }
    
    public static void GetPointerDataToStructArr(Pointer pNativeData, Structure []pJavaStuArr) {
        long offset = 0;
        for (int i=0; i<pJavaStuArr.length; ++i)
        {
            GetPointerDataToStruct(pNativeData, offset, pJavaStuArr[i]);
            offset += pJavaStuArr[i].size();
        }
    }
    
    /**
     * 将结构体数组拷贝到内存
     * @param pNativeData 
     * @param pJavaStuArr
     */
    public static void SetStructArrToPointerData(Structure []pJavaStuArr, Pointer pNativeData) {
        long offset = 0;
        for (int i = 0; i < pJavaStuArr.length; ++i) {
            SetStructDataToPointer(pJavaStuArr[i], pNativeData, offset);
            offset += pJavaStuArr[i].size();
        }
    }
    
    public static void SetStructDataToPointer(Structure pJavaStu, Pointer pNativeData, long OffsetOfpNativeData){
        pJavaStu.write();
        Pointer pJavaMem = pJavaStu.getPointer();
        pNativeData.write(OffsetOfpNativeData, pJavaMem.getByteArray(0, pJavaStu.size()), 0, pJavaStu.size());
    }
    
    public static void savePicture(byte[] pBuf, String sDstFile) throws IOException
    {
        FileOutputStream fos=null;
        try
        {
              fos = new FileOutputStream(sDstFile);
            fos.write(pBuf);    
        } catch (Exception e){
            e.printStackTrace();
        }finally{
            fos.close();    
        }
    }
    
    public static void savePicture(byte[] pBuf, int dwBufOffset, int dwBufSize, String sDstFile) throws IOException
    {
        FileOutputStream fos=null;
        try
        {           
            fos = new FileOutputStream(sDstFile);
            fos.write(pBuf, dwBufOffset, dwBufSize);
        } catch (Exception e){
            e.printStackTrace();
        }finally{
            fos.close();    
        }
    }
    
    public static void savePicture(Pointer pBuf, int dwBufSize, String sDstFile) throws IOException
    {
        FileOutputStream fos=null;
        try
        {
              fos = new FileOutputStream(sDstFile);
            fos.write(pBuf.getByteArray(0, dwBufSize), 0, dwBufSize);
        } catch (Exception e){
            e.printStackTrace();
        }finally{
            fos.close();    
        }
    }
    
    public static void savePicture(Pointer pBuf, int dwBufOffset, int dwBufSize, String sDstFile) throws IOException
    {
        FileOutputStream fos=null;
        try
        {
            fos = new FileOutputStream(sDstFile);
            fos.write(pBuf.getByteArray(dwBufOffset, dwBufSize), 0, dwBufSize);
        } catch (Exception e){
            e.printStackTrace();
        }finally{
            fos.close();    
        }
    }
    
    // 将Pointer值转为byte[]
    public static String GetPointerDataToByteArr(Pointer pointer) {    
        String str = "";
        if(pointer == null) {
            return str;
        }
 
        int length = 0;
        byte[] bufferPlace = new byte[1];
 
        for(int i = 0; i < 2048; i++) {        
            pointer.read(i, bufferPlace, 0, 1);        
            if(bufferPlace[0] == '\0') {
                length = i;
                break;
            }
        }
                
        if(length > 0) {
            byte[] buffer = new byte[length];
            pointer.read(0, buffer, 0, length);
            try {
                str = new String(buffer, "GBK").trim();
            } catch (UnsupportedEncodingException e) {
                return str;
            }
        } 
 
        return str;
    }
    
    // 获取当前时间
    public static String getDate() {
        SimpleDateFormat simpleDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String date = simpleDate.format(new Date()).replace(" ", "_").replace(":", "-");
        
        return date;
    }
 
    // 获取当前时间
    public static String getDate(Date curDate) {
        SimpleDateFormat simpleDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String date = simpleDate.format(curDate).replace(" ", "_").replace(":", "-");
 
        return date;
    }
    
    // 获取当前时间
    public static String getDay() {
            SimpleDateFormat simpleDate = new SimpleDateFormat("yyyy-MM-dd");
            String date = simpleDate.format(new Date());
            return date;
    }
 
    
    // 限制JTextField 长度,以及内容
    public static void limitTextFieldLength(final JTextField jTextField, final int size) {
        jTextField.addKeyListener(new KeyListener() {
            
            @Override
            public void keyTyped(KeyEvent e) {            
                String number = "0123456789" + (char)8;    
                if(number.indexOf(e.getKeyChar()) < 0 || jTextField.getText().trim().length() >= size) {
                    e.consume();
                    return;
                }        
            }
            
            @Override
            public void keyReleased(KeyEvent e) {        
            }
            
            @Override
            public void keyPressed(KeyEvent e) {    
            }
        });
    }
    
    // 获取当前窗口
    public static JFrame getFrame(ActionEvent e) {
        JButton btn = (JButton)e.getSource();
        JFrame frame = (JFrame)btn.getRootPane().getParent();
        
        return frame;
    }
    
    // 获取操作平台信息
    public static String getLoadLibrary(String library) {
        String path = "";
        String os = System.getProperty("os.name");
        if(os.toLowerCase().startsWith("win")) {
            path = "./libs/";
        } else if(os.toLowerCase().startsWith("linux")) {
            path = "";
        }
 
        return (path + library);
    }
        
    public static String getOsName() {
        String osName = "";
        String os = System.getProperty("os.name");
        if(os.toLowerCase().startsWith("win")) {
            osName = "win";
        } else if(os.toLowerCase().startsWith("linux")) {
            osName = "linux";
        }
        
        return osName;
    }
    
    /**
     * 读取图片大小
     * @param filePath  图片路径
     * @return
     */
    public static long GetFileSize(String filePath) {
        File f = new File(filePath);
        if (f.exists() && f.isFile()) {
            return f.length();
        }
        else
        {
            return 0;
        }
    }
    
    /**
     * 读取图片数据
     * @param file 图片路径
     * @param memory 图片数据缓存  
     * @return
     * @throws IOException 
     */
    public static boolean ReadAllFileToMemory(String file, Memory memory) throws IOException {
        if (memory != Memory.NULL)
        {
            long fileLen = GetFileSize(file);
            if (fileLen <= 0)
            {
                return false;
            }
            FileInputStream in =null;
            try {
                File infile = new File(file);
                if (infile.canRead())
                {
                    in = new FileInputStream(infile);
                    int buffLen = 1024; 
                    byte[] buffer = new byte[buffLen];
                    long currFileLen = 0;
                    int readLen = 0;
                    while (currFileLen < fileLen)
                    {
                        readLen = in.read(buffer);
                        memory.write(currFileLen, buffer, 0, readLen);
                        currFileLen += readLen;
                    }                                        
                    return true;
                }
                else
                {
                    System.err.println("Failed to open file %s for read!!!\n");
                    return false;
                }
            }catch (Exception e)
            {
                System.err.println("Failed to open file %s for read!!!\n");
                e.printStackTrace();
            }finally{
                if(in!=null){
                    in.close();
                }                
            }
        }
        
        return false;
    }
    
    static class JPGFilter extends FileFilter {
        public boolean accept(File f) {
            if(f.getName().toLowerCase().endsWith(".JPG")
                    || f.getName().toLowerCase().endsWith(".jpg") 
                    || f.isDirectory()) {
                return true;
            }
            return false;
        }
 
        @Override
        public String getDescription() {
            return "*.jpg; *.JPG";
        }
    }
    
    /*
     * 用选择器选择图片, 获取图片路径,并在界面显示
     */
    public static String openPictureFile(PaintPanel paintPanel) {    
        try {
            UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
        } catch (Exception e) {
            e.printStackTrace();
        } 
        
        String picPath = "";
        
        // 读取图片
        JFileChooser jfc = new JFileChooser("d:/");
        jfc.setMultiSelectionEnabled(false);    // 不可以拖选多个文件
        jfc.setAcceptAllFileFilterUsed(false);  // 关闭显示所有
 
        //添加过滤器
        JPGFilter filter = new JPGFilter();
        jfc.addChoosableFileFilter(filter);
        jfc.setFileFilter(filter);
        
        if( jfc.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {
            picPath = jfc.getSelectedFile().getAbsolutePath();
            
            /*
             * 读取本地图片, 并在面板上显示
             */
            BufferedImage bufferedImage = null;
            if(picPath == null || picPath.equals("")) {
                return "";
            }
            
            File file = new File(picPath);
            if(!file.exists()) {
                return "";
            }
            
            try {
                bufferedImage = ImageIO.read(file);
            } catch (IOException e) {
                e.printStackTrace();
            }
            
            if(bufferedImage == null) {
                paintPanel.setOpaque(true);
                paintPanel.repaint();
                
                System.err.println("打开图片失败,请重新选择!");
                return "";
            } else {
                paintPanel.setOpaque(false);
                paintPanel.setImage(bufferedImage);
                paintPanel.repaint();
            }
        }
        
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (Exception e) {
            e.printStackTrace();
        } 
        return picPath;
    }
    
    /*
     * 传入图片路径, 打开图片, 并在面板显示
     */
    public static File openPictureFile(String picPath, PaintPanel paintPanel) {        
        /*
         * 读取本地图片, 并在面板上显示
         */
        BufferedImage bufferedImage = null;
        if(picPath == null || picPath.equals("")) {
            return null;
        }
        
        File file = new File(picPath);
        if(!file.exists()) {
            return null;
        }
        
        try {
            bufferedImage = ImageIO.read(file);
        } catch (IOException e) {
            e.printStackTrace();
        }
        
        if(bufferedImage == null) {
            paintPanel.setOpaque(true);
            paintPanel.repaint();
            
            System.err.println("打开图片失败,请重新选择!");
            return null;
        } else {
            paintPanel.setOpaque(false);
            paintPanel.setImage(bufferedImage);
            paintPanel.repaint();
        }
        
        return file;
    }
    
    /**
     * 读取图片
     * @return 图片缓存
     * @throws IOException 
     */
    public static Memory readPictureFile(String picPath) throws IOException {
        int nPicBufLen = 0;
        Memory memory = null;
            
        /*
         * 读取本地图片大小
         */
        nPicBufLen = (int)ToolKits.GetFileSize(picPath);   
        
        // 读取文件大小失败
        if (nPicBufLen <= 0) {
            System.err.println("读取图片大小失败,请重新选择!");
            return null;
        }
 
        /*
         * 读取图片缓存
         */
        memory = new Memory(nPicBufLen);   // 申请缓存
        memory.clear();
        
        if (!ToolKits.ReadAllFileToMemory(picPath,  memory)) {
            System.err.println("读取图片数据,请重新选择!");
            return null;
        }
    
        return memory;
    }
    
    /**
     * 登录设备设备错误状态, 用于界面显示
     */
    public static String getErrorCodeShow() {
        return ErrorCode.getErrorCode(LoginModule.netsdk.CLIENT_GetLastError());
    }
    
    /**
     * 获取接口错误码和错误信息,用于打印
     * @return
     */
    public static String getErrorCodePrint() {
        return "\n{error code: (0x80000000|" + (LoginModule.netsdk.CLIENT_GetLastError() & 0x7fffffff) +").参考  NetSDKLib.java }" 
                + " - {error info:" + ErrorCode.getErrorCode(LoginModule.netsdk.CLIENT_GetLastError()) + "}\n";
    }
    
    /**
     * 获取单个配置
     * @param hLoginHandle 登陆句柄
     * @param nChn 通道号,-1 表示全通道
     * @param strCmd 配置名称
     * @param cmdObject 配置对应的结构体对象
     * @return 成功返回 true 
     */
    public static boolean GetDevConfig(LLong hLoginHandle, int nChn, String strCmd, Structure cmdObject) {
        boolean result = false;
        IntByReference error = new IntByReference(0);
        int nBufferLen = 2*1024*1024;
        byte[] strBuffer = new byte[nBufferLen];
       
        if(netsdkapi.CLIENT_GetNewDevConfig( hLoginHandle, strCmd , nChn, strBuffer, nBufferLen,error,3000,null)) {  
            cmdObject.write();
            if (configapi.CLIENT_ParseData(strCmd, strBuffer, cmdObject.getPointer(),
                    cmdObject.size(), null)) {
                cmdObject.read();
                 result = true;
             } else {
                 System.err.println("Parse " + strCmd + " Config Failed!" + ToolKits.getErrorCodePrint());
                 result = false;
             }
        } else {
             System.err.printf("Get %s Config Failed!Last Error = %s\n" , strCmd , getErrorCodePrint());
             result = false;
        }
            
        return result;
    }
    
    /**
     * 设置单个配置
     * @param hLoginHandle 登陆句柄
     * @param nChn 通道号,-1 表示全通道
     * @param strCmd 配置名称
     * @param cmdObject 配置对应的结构体对象
     * @return 成功返回 true
     */
    public static boolean SetDevConfig(LLong hLoginHandle, int nChn, String strCmd, Structure cmdObject) {
        boolean result = false;
        int nBufferLen = 2*1024*1024;
        byte szBuffer[] = new byte[nBufferLen];
        for(int i=0; i<nBufferLen; i++)szBuffer[i]=0;
        IntByReference error = new IntByReference(0);
        IntByReference restart = new IntByReference(0); 
 
        cmdObject.write();
        if (configapi.CLIENT_PacketData(strCmd, cmdObject.getPointer(), cmdObject.size(),
                szBuffer, nBufferLen)) {    
            cmdObject.read();
            if( netsdkapi.CLIENT_SetNewDevConfig(hLoginHandle, strCmd , nChn , szBuffer, nBufferLen, error, restart, 3000)) {
                result = true;
            } else {
                 System.err.printf("Set %s Config Failed! Last Error = %s\n" , strCmd , getErrorCodePrint());
                 result = false;
            }
        } else {
            System.err.println("Packet " + strCmd + " Config Failed!" + getErrorCodePrint());
             result = false;
        }
        
        return result;
    }
    
    // Win下,将GBK String类型的转为Pointer
    public static Pointer GetGBKStringToPointer(String src) {    
        Pointer pointer = null;
        try {
            byte[] b = src.getBytes("GBK");
            pointer = new Memory(b.length+1);
            pointer.clear(b.length+1);
            
            pointer.write(0, b, 0, b.length);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        return pointer;
    }
    
    /**
     * 字符串拷贝,用于先获取,再设置(src → dst)
     * @param src 
     * @param dst
     */
    public static void StringToByteArray(String src, byte[] dst) {
        for(int i = 0; i < dst.length; i++) {
            dst[i] = 0;
        }
        
        System.arraycopy(src.getBytes(), 0, dst, 0, src.getBytes().length);
    }
    
    /**
     * 数组拷贝, 用于先获取,再设置(src → dst)
     * @param b
     * @param dst
     */
    public static void ByteArrayToByteArray(byte[] src, byte[] dst) {
        for(int i = 0; i < dst.length; i++) {
            dst[i] = 0;
        }
        
        System.arraycopy(src, 0, dst, 0, src.length);
    }
}