whyclj
2021-01-05 64aba412c2b739d67795b14a3cae069d311697f9
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
package com.modbus.data;
 
import java.math.BigDecimal;
import java.util.Random;
 
import com.serotonin.modbus4j.BatchRead;
import com.serotonin.modbus4j.BatchResults;
import com.serotonin.modbus4j.ModbusMaster;
import com.serotonin.modbus4j.code.DataType;
import com.serotonin.modbus4j.exception.ErrorResponseException;
import com.serotonin.modbus4j.exception.ModbusTransportException;
import com.serotonin.modbus4j.locator.BaseLocator;
import com.serotonin.modbus4j.msg.ModbusResponse;
import com.serotonin.modbus4j.msg.WriteCoilRequest;
import com.serotonin.modbus4j.msg.WriteCoilResponse;
import com.serotonin.modbus4j.msg.WriteCoilsRequest;
import com.serotonin.modbus4j.msg.WriteCoilsResponse;
import com.serotonin.modbus4j.msg.WriteRegisterRequest;
import com.serotonin.modbus4j.msg.WriteRegisterResponse;
import com.serotonin.modbus4j.msg.WriteRegistersRequest;
 
public class MyModbusUtils {
        
    /**
     * ¶ÁÈ¡[01 Coil Status 0x]ÀàÐÍ ¿ª¹ØÊý¾Ý
     * 
     * @param slaveId
     *            slaveId
     * @param offset
     *            Î»ÖÃ
     * @return ¶Áȡֵ
     */
    public static Boolean readCoilStatus(int offset,MyModbusMaster master){
        // 01 Coil Status
        BaseLocator<Boolean> loc = BaseLocator.coilStatus(master.getSlaveId(), offset);
        Boolean value = null;
        boolean isSuccess = true;
        try {
            value = master.getMaster().getValue(loc);
        } catch (ModbusTransportException | ErrorResponseException e) {
            //e.printStackTrace();
            isSuccess = false;
        } finally {
            if(isSuccess) {
                master.clearError();
            }else {
                master.addErrorCount();
            }
        }
        return value;
    }
 
    /**
     * ¶ÁÈ¡[02 Input Status 1x]ÀàÐÍ ¿ª¹ØÊý¾Ý
     * 
     * @param slaveId
     * @param offset
     * @return
     */
    public static Boolean readInputStatus(int offset,MyModbusMaster master){
        // 02 Input Status
        BaseLocator<Boolean> loc = BaseLocator.inputStatus(master.getSlaveId(), offset);
        Boolean value = null;;
        boolean isSuccess = true;
        try {
            value = master.getMaster().getValue(loc);
        } catch (ModbusTransportException | ErrorResponseException e) {
            //e.printStackTrace();
            isSuccess = false;
        } finally {
            if(isSuccess) {
                master.clearError();
            }else {
                master.addErrorCount();
            }
        }
        return value;
    }
 
    /**
     * ¶ÁÈ¡[03 Holding RegisterÀàÐÍ 2x]Ä£ÄâÁ¿Êý¾Ý
     * 
     * @param slaveId
     *            slave Id
     * @param offset
     *            Î»ÖÃ
     * @param dataType
     *            Êý¾ÝÀàÐÍ,À´×Ôcom.serotonin.modbus4j.code.DataType
     * @return
     */
    public static Number readHoldingRegister(int offset, int dataType,MyModbusMaster master){
        // 03 Holding RegisterÀàÐÍÊý¾Ý¶ÁÈ¡
        BaseLocator<Number> loc = BaseLocator.holdingRegister(master.getSlaveId(), offset, dataType);
        Number value = null;
        boolean isSuccess = true;
        try {
            value = master.getMaster().getValue(loc);
        } catch (ModbusTransportException | ErrorResponseException e) {
            //e.printStackTrace();
            isSuccess = false;
        }  finally {
            if(isSuccess) {
                master.clearError();
            }else {
                master.addErrorCount();
            }
        }
        return value;
    }
 
    /**
     * ¶ÁÈ¡[04 Input Registers 3x]ÀàÐ͠ģÄâÁ¿Êý¾Ý
     * 
     * @param slaveId
     *            slaveId
     * @param offset
     *            Î»ÖÃ
     * @param dataType
     *            Êý¾ÝÀàÐÍ,À´×Ôcom.serotonin.modbus4j.code.DataType
     * @return ·µ»Ø½á¹û
     * @throws ModbusTransportException
     *             Òì³£
     * @throws ErrorResponseException
     *             Òì³£
     * @throws ModbusInitException
     *             Òì³£
     */
    public static Number readInputRegisters(int offset, int dataType,MyModbusMaster master){
        // 04 Input RegistersÀàÐÍÊý¾Ý¶ÁÈ¡
        BaseLocator<Number> loc = BaseLocator.inputRegister(master.getSlaveId(), offset, dataType);
        Number value = null;
        boolean isSuccess = true;
        try {
            value = master.getMaster().getValue(loc);
        } catch (ModbusTransportException | ErrorResponseException e) {
            //e.printStackTrace();
            isSuccess = false;
        } finally {
            if(isSuccess) {
                master.clearError();
            }else {
                master.addErrorCount();
            }
        }
        return value;
    }
 
    public static BatchResults<Integer> readMutilRegisters(BatchRead<Integer> batch,MyModbusMaster master){
        batch.setContiguousRequests(false);
        boolean isSuccess = true;
        try {
            return master.getMaster().send(batch);
        } catch (ModbusTransportException | ErrorResponseException e) {
            //e.printStackTrace();
            isSuccess = false;
        } finally {
            if(isSuccess) {
                master.clearError();
            }else {
                master.addErrorCount();
            }
        }
        return null;
    }
    
    
    /**
     * ÅúÁ¿¶ÁȡʹÓ÷½·¨
     * 
     * @throws ModbusTransportException
     * @throws ErrorResponseException
     * @throws ModbusInitException
     */
    public static void batchRead() { 
//        BatchRead<Integer> batch = new BatchRead<Integer>();
// 
//        batch.addLocator(0, BaseLocator.holdingRegister(1, 1, DataType.FOUR_BYTE_FLOAT));
//        batch.addLocator(1, BaseLocator.inputStatus(1, 0));
// 
//        ModbusMaster master = getMaster();
// 
//        batch.setContiguousRequests(false);
//        BatchResults<Integer> results = master.send(batch);
//        System.out.println(results.getValue(0));
//        System.out.println(results.getValue(1));
    }
    
    /**
     *     ¹¹ÔìÏßȦ¶ÁÈ¡½Úµã
     * @param offset
     * @param master
     * @return
     */
    public static BaseLocator<?> createBaseLocator(int offset,MyModbusMaster master) {
        return BaseLocator.coilStatus(master.getSlaveId(), offset);
    }
    
    /**
     *     ¹¹ÔìÀëÉ¢ÊäÈë¶ÁÈ¡½Úµã
     * @param offset
     * @param master
     * @return
     */
    public static BaseLocator<?> createInputLocator(int offset,MyModbusMaster master) {
        return BaseLocator.inputStatus(master.getSlaveId(), offset);
    }
    
    /**
     *     ¹¹Ôì±£³Ö¼Ä´æÆ÷¶ÁÈ¡½Úµã
     * @param offset
     * @param master
     * @return
     */
    public static BaseLocator<?> createBaseLocator(int offset,int datatype,MyModbusMaster master) {
        return BaseLocator.holdingRegister(master.getSlaveId(), offset, datatype);
    }
    
    /**
     * Ð´ [01 Coil Status(0x)]дһ¸ö function ID = 5
     * 
     * @param slaveId
     *            slaveµÄID
     * @param writeOffset
     *            Î»ÖÃ
     * @param writeValue
     *            Öµ
     * @return ÊÇ·ñдÈë³É¹¦
     */
    public static boolean writeCoil(int writeOffset, boolean writeValue,MyModbusMaster master){
        // »ñÈ¡master
        ModbusMaster tcpMaster = master.getMaster();
        // ´´½¨ÇëÇó
        // ·¢ËÍÇëÇó²¢»ñÈ¡ÏìÓ¦¶ÔÏó
        WriteCoilResponse response = null;
        try {
            WriteCoilRequest request = new WriteCoilRequest(master.getSlaveId(), writeOffset, writeValue);
            response = (WriteCoilResponse) tcpMaster.send(request);
        } catch (ModbusTransportException e) {
            master.logger.error(e.toString(),e);
            //e.printStackTrace();
        }
        if (response == null || response.isException()) {
            master.addErrorCount();
            return false;
        } else {
            master.clearError();
            return true;
        }
    }
    
    
 
    /**
     * Ð´[01 Coil Status(0x)] Ð´¶à¸ö function ID = 15
     * 
     * @param slaveId
     *            slaveId
     * @param startOffset
     *            ¿ªÊ¼Î»ÖÃ
     * @param bdata
     *            Ð´ÈëµÄÊý¾Ý
     * @return ÊÇ·ñдÈë³É¹¦
     */
    public static boolean writeCoils(int startOffset, boolean[] bdata,MyModbusMaster master) {
        // »ñÈ¡master
        ModbusMaster tcpMaster = master.getMaster();
        // ´´½¨ÇëÇó
        WriteCoilsRequest request;
        WriteCoilsResponse response = null;
        try {
            request = new WriteCoilsRequest(master.getSlaveId(), startOffset, bdata);
            response = (WriteCoilsResponse) tcpMaster.send(request);
        } catch (ModbusTransportException e) {
            e.printStackTrace();
        }
        // ·¢ËÍÇëÇó²¢»ñÈ¡ÏìÓ¦¶ÔÏó
        if (response == null || response.isException()) {
            master.addErrorCount();
            return false;
        } else {
            master.clearError();
            return true;
        }
 
    }
 
    /***
     * Ð´[03 Holding Register(4x)] Ð´Ò»¸ö function ID = 6
     * 
     * @param slaveId
     * @param writeOffset
     * @param writeValue
     * @return
     */
    public static boolean writeRegister(int writeOffset, short writeValue,MyModbusMaster master){
        // »ñÈ¡master
        ModbusMaster tcpMaster = master.getMaster();
        // ´´½¨ÇëÇó¶ÔÏó
        WriteRegisterRequest request;
        WriteRegisterResponse response = null;
        try {
            request = new WriteRegisterRequest(master.getSlaveId(), writeOffset, writeValue);
            response = (WriteRegisterResponse) tcpMaster.send(request);
        } catch (ModbusTransportException e) {
            e.printStackTrace();
        }
        if (response == null || response.isException()) {
            master.addErrorCount();
            return false;
        } else {
            master.clearError();
            return true;
        }
 
    }
 
    /**
     * 
     * Ð´Èë[03 Holding Register(4x)]д¶à¸ö function ID=16
     * 
     * @param slaveId
     *            modbusµÄslaveID
     * @param startOffset
     *            ÆðʼλÖÃÆ«ÒÆÁ¿Öµ
     * @param sdata
     *            Ð´ÈëµÄÊý¾Ý
     * @return ·µ»ØÊÇ·ñдÈë³É¹¦
     */
    public static boolean writeRegisters(int startOffset, short[] sdata,MyModbusMaster master){
        // »ñÈ¡master
        ModbusMaster tcpMaster = master.getMaster();
        // ´´½¨ÇëÇó¶ÔÏó
        WriteRegistersRequest request;
        // ·¢ËÍÇëÇó²¢»ñÈ¡ÏìÓ¦¶ÔÏó
        ModbusResponse response = null;
        try {
            request = new WriteRegistersRequest(master.getSlaveId(), startOffset, sdata);
            response = tcpMaster.send(request);
        } catch (ModbusTransportException e) {
            e.printStackTrace();
        }
        if (response.isException()) {
            //log.error(response.getExceptionMessage());
            master.addErrorCount();
            return false;
        } else {
            master.clearError();
            return true;
        }
    }
 
    /**
     * Ð´ÈëÊý×ÖÀàÐ͵ÄÄ£ÄâÁ¿£¨Èç:дÈëFloatÀàÐ͵ÄÄ£ÄâÁ¿¡¢DoubleÀàÐÍÄ£ÄâÁ¿¡¢ÕûÊýÀàÐÍShort¡¢Integer¡¢Long£©
     * 
     * @param slaveId
     * @param offset
     * @param value
     *            Ð´ÈëÖµ,NumberµÄ×ÓÀà,ÀýÈçдÈëFloat¸¡µãÀàÐÍ,DoubleË«¾«¶ÈÀàÐÍ,ÒÔ¼°ÕûÐÍshort,int,long
     * @param registerCount
     *            ,com.serotonin.modbus4j.code.DataType
     */
    public static void writeHoldingRegister(int offset, Number value, int dataType,MyModbusMaster master){
        // »ñÈ¡master
        ModbusMaster tcpMaster = master.getMaster();
        // ÀàÐÍ
        BaseLocator<Number> locator = BaseLocator.holdingRegister(master.getSlaveId(), offset, dataType);
        boolean isSuccess = true;
        try {
            tcpMaster.setValue(locator, value);
        } catch (ModbusTransportException | ErrorResponseException e) {
            //e.printStackTrace();
            isSuccess = true;
        } finally {
            if(isSuccess) {
                master.clearError();
            }else {
                master.addErrorCount();
            }
        }
    }
    
    public static boolean changeIntToBoolean(int data) {
        if(data > 0) {
            return true;
        }
        return false;
    }
    
    /**
     *     ¶ÁÈ¡floatÀàÐÍÊý¾Ý
     * @param obj    ShortÀàÐÍ
     * @return
     */
    public static float readShortToFloat(Object obj) {
        return (float)((Short)obj);
    }
    /**
     * 
     * @param obj
     * @param signed    true:ÓзûºÅÊý     false:ÎÞ·ûºÅ
     * @return
     */
    public static float readShortToFloat(Object obj,boolean signed) {
        return (float)((Short)obj);
    }
    /**
     *     ¶ÁÈ¡intÀàÐÍÊý¾Ý
     * @param obj    ShortÀàÐÍ
     * @return
     */
    public static int readShortToInt(Object obj) {
        return ((Short)obj);
    }
    
    public static int readIntergerToInt(Object obj) {
        return (int)obj;
    }
    /**
     *     ¶ÁÈ¡BooleanÀàÐÍÊý¾Ý
     * @param obj    BooleanÀàÐÍ
     * @return
     */
    public static int readBooleanToInt(Object obj) {
        return ((Boolean)obj?1:0);
    }
    
    /**
     * Ëæ»úÉú³É¿ª¹ØÁ¿±äÁ¿
     * @return
     */
    public static int CreateSwitchRanDom() {
        return new BigDecimal(Math.random()).setScale(0, BigDecimal.ROUND_HALF_UP).intValue();
    }
    
    /**
     * Éú³ÉÕûÊýËæ»úÊý
     * @return
     */
    public static int CreateIntRanDom() {
        return new Random().nextInt();
    }
    
    /**
     * Éú³ÉÕûÊýËæ»úÊý
     * @return °üº¬min,²»°üº¬max
     */
    public static int CreateIntRanDom(int min,int max) {
        return (min + ((int) (new Random().nextFloat() * (max - min))));
    }
    
    /**
     * Éú³É0.0-1.0Ö®¼äµÄfloatËæ»úÊý
     * @return  °üº¬0.0²»°üº¬1.0
     */
    public static float CreateFloat0To1() {
        return new Random().nextFloat();
    }
    
    /**
     *     Éú³ÉÓб߽çµÄfloat Ëæ»úÊý
     * @param min
     * @param max
     * @return
     */
    public static float CreateFloatRanDom(float min,float max) {
        return (min + new Random().nextFloat() * (max - min));
    }
    
    public static void main(String[] args) {
//        BatchRead<Integer> batch = new BatchRead<Integer>();
//        
//        batch.addLocator(0, BaseLocator.holdingRegister(1, 1, DataType.TWO_BYTE_INT_SIGNED));
//        batch.addLocator(1, BaseLocator.coilStatus(1, 1));
//        batch.setContiguousRequests(true);
//        
//        MyModbusMaster m = new MyModbusMaster("192.168.10.221", 2);
//        
//        ModbusMaster master = m.getMaster();
//        
//        BatchResults<Integer> results = new BatchResults<>();
//        try {
//            results = master.send(batch);
//        } catch (ModbusTransportException | ErrorResponseException e) {
//            e.printStackTrace();
//        }
//        System.out.println(results.getValue(0));
        //System.out.println(results.getValue(1));
        
        MyModbusMaster master = new MyModbusMaster("192.168.10.221", 2);
        MyModbusUtils.writeRegisters(1, new short[] {1}, master);
        
        
        
        //for(int i=0;i<100000;i++) {
        //    System.out.println(CreateIntRanDom());;
        //}
    }
}