whyclj
2020-08-01 10f0858cf445684d3c1439b962abd743f5d89f5d
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
package com.modbus.data;
 
import com.serotonin.modbus4j.ModbusMaster;
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;;
        try {
            value = master.getMaster().getValue(loc);
        } catch (ModbusTransportException | ErrorResponseException e) {
            master.addErrorCount();
            //e.printStackTrace();
        }
        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;;
        try {
            value = master.getMaster().getValue(loc);
        } catch (ModbusTransportException | ErrorResponseException e) {
            master.addErrorCount();
            //e.printStackTrace();
        }
        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;
        try {
            value = master.getMaster().getValue(loc);
        } catch (ModbusTransportException | ErrorResponseException e) {
            //e.printStackTrace();
            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;
        try {
            value = master.getMaster().getValue(loc);
        } catch (ModbusTransportException | ErrorResponseException e) {
            //e.printStackTrace();
            master.addErrorCount();
        }
        return value;
    }
 
    /**
     * ÅúÁ¿¶ÁȡʹÓ÷½·¨
     * 
     * @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));
    }
 
    /**
     * Ð´ [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) {
            e.printStackTrace();
        }
        if (response == null || response.isException()) {
            master.addErrorCount();
            return false;
        } else {
            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 {
            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 {
            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 {
            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);
        try {
            tcpMaster.setValue(locator, value);
        } catch (ModbusTransportException | ErrorResponseException e) {
            e.printStackTrace();
        }
    }
 
    
    
}