-
Notifications
You must be signed in to change notification settings - Fork 7
/
ModbusTCPClient.cs
338 lines (288 loc) · 13.7 KB
/
ModbusTCPClient.cs
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
namespace Opc.Ua.Edge.Translator
{
using Opc.Ua.Edge.Translator.Interfaces;
using Opc.Ua.Edge.Translator.Models;
using System;
using System.IO;
using System.Net.Sockets;
using System.Threading.Tasks;
class ModbusTCPClient : IAsset
{
public enum FunctionCode : byte
{
ReadCoilStatus = 1,
ReadInputStatus = 2,
ReadHoldingRegisters = 3,
ReadInputRegisters = 4,
ForceSingleCoil = 5,
PresetSingleRegister = 6,
ReadExceptionStatus = 7,
ForceMultipleCoils = 15,
PresetMultipleRegisters = 16
}
private TcpClient _tcpClient = null;
// Modbus uses long timeouts (10 seconds minimum)
private const int _timeout = 10000;
private ushort _transactionID = 0;
private const byte _errorFlag = 0x80;
private object _lock = new object();
private void HandlerError(byte errorCode)
{
switch (errorCode)
{
case 1: throw new Exception("Illegal function");
case 2: throw new Exception("Illegal data address");
case 3: throw new Exception("Illegal data value");
case 4: throw new Exception("Server failure");
case 5: throw new Exception("Acknowledge");
case 6: throw new Exception("Server busy");
case 7: throw new Exception("Negative acknowledge");
case 8: throw new Exception("Memory parity error");
case 10: throw new Exception("Gateway path unavailable");
case 11: throw new Exception("Target unit failed to respond");
default: throw new Exception("Unknown error");
}
}
public void Connect(string ipAddress, int port)
{
_tcpClient = new TcpClient(ipAddress, port);
_tcpClient.GetStream().ReadTimeout = _timeout;
_tcpClient.GetStream().WriteTimeout = _timeout;
}
public string GetRemoteEndpoint()
{
return _tcpClient.Client.RemoteEndPoint.ToString();
}
public bool IsConnected()
{
return _tcpClient != null;
}
public void Disconnect()
{
if (_tcpClient != null)
{
_tcpClient.Close();
_tcpClient = null;
}
}
public Task<byte[]> Read(string addressWithinAsset, byte unitID, string function, ushort count)
{
ushort registerAddress = ushort.Parse(addressWithinAsset);
switch (function)
{
case "ForceMultipleCoils": return ReadInternal(unitID, FunctionCode.ForceMultipleCoils, registerAddress, count);
case "ForceSingleCoil": return ReadInternal(unitID, FunctionCode.ForceSingleCoil, registerAddress, count);
case "PresetMultipleRegisters": return ReadInternal(unitID, FunctionCode.PresetMultipleRegisters, registerAddress, count);
case "PresetSingleRegister": return ReadInternal(unitID, FunctionCode.PresetSingleRegister, registerAddress, count);
case "ReadCoilStatus": return ReadInternal(unitID, FunctionCode.ReadCoilStatus, registerAddress, count);
case "ReadExceptionStatus": return ReadInternal(unitID, FunctionCode.ReadExceptionStatus, registerAddress, count);
case "ReadHoldingRegisters": return ReadInternal(unitID, FunctionCode.ReadHoldingRegisters, registerAddress, count);
case "ReadInputRegisters": return ReadInternal(unitID, FunctionCode.ReadInputRegisters, registerAddress, count);
case "ReadInputStatus": return ReadInternal(unitID, FunctionCode.ReadInputStatus, registerAddress, count);
default: return Task.FromResult(Array.Empty<byte>());
}
}
public Task Write(string addressWithinAsset, byte unitID, string function, byte[] values, bool singleBitOnly)
{
ushort registerAddress = ushort.Parse(addressWithinAsset);
if (singleBitOnly && (values.Length > 0))
{
return WriteCoil(unitID, registerAddress, values[0] != 0);
}
else
{
int ushortArrayLength = values.Length / 2;
ushort[] ushortArray = new ushort[ushortArrayLength];
for (int i = 0; i < ushortArrayLength; i++)
{
ushortArray[i] = BitConverter.ToUInt16(values, i * 2);
}
return WriteHoldingRegisters(unitID, registerAddress, ushortArray);
}
}
public Task<byte[]> ReadInternal(byte unitID, FunctionCode function, ushort registerBaseAddress, ushort count)
{
lock (_lock)
{
// check funtion code
if ((function != FunctionCode.ReadInputRegisters)
&& (function != FunctionCode.ReadHoldingRegisters)
&& (function != FunctionCode.ReadCoilStatus))
{
throw new ArgumentException("Only coil, input registers and holding registers can be read");
}
ApplicationDataUnit aduRequest = new ApplicationDataUnit();
aduRequest.TransactionID = _transactionID++;
aduRequest.Length = 6;
aduRequest.UnitID = unitID;
aduRequest.FunctionCode = (byte)function;
aduRequest.Payload[0] = (byte)(registerBaseAddress >> 8);
aduRequest.Payload[1] = (byte)(registerBaseAddress & 0x00FF);
aduRequest.Payload[2] = (byte)(count >> 8);
aduRequest.Payload[3] = (byte)(count & 0x00FF);
byte[] buffer = new byte[ApplicationDataUnit.maxADU];
aduRequest.CopyADUToNetworkBuffer(buffer);
// send request to Modbus server
_tcpClient.GetStream().Write(buffer, 0, ApplicationDataUnit.headerLength + 4);
// read response header from Modbus server
int numBytesRead = _tcpClient.GetStream().Read(buffer, 0, ApplicationDataUnit.headerLength);
if (numBytesRead != ApplicationDataUnit.headerLength)
{
throw new EndOfStreamException();
}
ApplicationDataUnit aduResponse = new ApplicationDataUnit();
aduResponse.CopyHeaderFromNetworkBuffer(buffer);
// check for error
if ((aduResponse.FunctionCode & _errorFlag) > 0)
{
// read error
int errorCode = _tcpClient.GetStream().ReadByte();
if (errorCode == -1)
{
throw new EndOfStreamException();
}
else
{
HandlerError((byte)errorCode);
}
}
// read length of response
int length = _tcpClient.GetStream().ReadByte();
if (length == -1)
{
throw new EndOfStreamException();
}
// read response
byte[] responseBuffer = new byte[length];
numBytesRead = _tcpClient.GetStream().Read(responseBuffer, 0, length);
if (numBytesRead != length)
{
throw new EndOfStreamException();
}
return Task.FromResult(responseBuffer);
}
}
public async Task WriteHoldingRegisters(byte unitID, ushort registerBaseAddress, ushort[] values)
{
// throttle writing to not overwhelm our poor little Modbus server
await Task.Delay(1000).ConfigureAwait(false);
lock (_lock)
{
if ((11 + (values.Length * 2)) > ApplicationDataUnit.maxADU)
{
throw new ArgumentException("Too many values");
}
ApplicationDataUnit aduRequest = new ApplicationDataUnit();
aduRequest.TransactionID = _transactionID++;
aduRequest.Length = (ushort)(7 + (values.Length * 2));
aduRequest.UnitID = unitID;
aduRequest.FunctionCode = (byte)FunctionCode.PresetMultipleRegisters;
aduRequest.Payload[0] = (byte)(registerBaseAddress >> 8);
aduRequest.Payload[1] = (byte)(registerBaseAddress & 0x00FF);
aduRequest.Payload[2] = (byte)(((ushort)values.Length) >> 8);
aduRequest.Payload[3] = (byte)(((ushort)values.Length) & 0x00FF);
aduRequest.Payload[4] = (byte)(values.Length * 2);
int payloadIndex = 5;
foreach (ushort value in values)
{
aduRequest.Payload[payloadIndex++] = (byte)(value >> 8);
aduRequest.Payload[payloadIndex++] = (byte)(value & 0x00FF);
}
byte[] buffer = new byte[ApplicationDataUnit.maxADU];
aduRequest.CopyADUToNetworkBuffer(buffer);
// send request to Modbus server
_tcpClient.GetStream().Write(buffer, 0, ApplicationDataUnit.headerLength + 5 + (values.Length * 2));
// read response
int numBytesRead = _tcpClient.GetStream().Read(buffer, 0, ApplicationDataUnit.headerLength + 4);
if (numBytesRead != ApplicationDataUnit.headerLength + 4)
{
throw new EndOfStreamException();
}
ApplicationDataUnit aduResponse = new ApplicationDataUnit();
aduResponse.CopyHeaderFromNetworkBuffer(buffer);
// check for error
if ((aduResponse.FunctionCode & _errorFlag) > 0)
{
// read error
int errorCode = _tcpClient.GetStream().ReadByte();
if (errorCode == -1)
{
throw new EndOfStreamException();
}
else
{
HandlerError((byte)errorCode);
}
}
// check address written
if ((buffer[8] != (registerBaseAddress >> 8))
&& (buffer[9] != (registerBaseAddress & 0x00FF)))
{
throw new Exception("Incorrect base register returned");
}
// check number of registers written
if ((buffer[10] != (((ushort)values.Length) >> 8))
&& (buffer[11] != (((ushort)values.Length) & 0x00FF)))
{
throw new Exception("Incorrect number of registers written returned");
}
}
}
public async Task WriteCoil(byte unitID, ushort coilAddress, bool set)
{
// throttle writing to not overwhelm our poor little Modbus server
await Task.Delay(1000).ConfigureAwait(false);
lock (_lock)
{
ApplicationDataUnit aduRequest = new ApplicationDataUnit();
aduRequest.TransactionID = _transactionID++;
aduRequest.Length = 6;
aduRequest.UnitID = unitID;
aduRequest.FunctionCode = (byte)FunctionCode.ForceSingleCoil;
aduRequest.Payload[0] = (byte)(coilAddress >> 8);
aduRequest.Payload[1] = (byte)(coilAddress & 0x00FF);
aduRequest.Payload[2] = (byte)(set ? 0xFF : 0x0);
aduRequest.Payload[3] = 0x0;
byte[] buffer = new byte[ApplicationDataUnit.maxADU];
aduRequest.CopyADUToNetworkBuffer(buffer);
// send request to Modbus server
_tcpClient.GetStream().Write(buffer, 0, ApplicationDataUnit.headerLength + 4);
// read response
int numBytesRead = _tcpClient.GetStream().Read(buffer, 0, ApplicationDataUnit.headerLength + 4);
if (numBytesRead != ApplicationDataUnit.headerLength + 4)
{
throw new EndOfStreamException();
}
ApplicationDataUnit aduResponse = new ApplicationDataUnit();
aduResponse.CopyHeaderFromNetworkBuffer(buffer);
// check for error
if ((aduResponse.FunctionCode & _errorFlag) > 0)
{
// read error
int errorCode = _tcpClient.GetStream().ReadByte();
if (errorCode == -1)
{
throw new EndOfStreamException();
}
else
{
HandlerError((byte)errorCode);
}
}
// check address written
if ((buffer[8] != (coilAddress >> 8))
&& (buffer[9] != (coilAddress & 0x00FF)))
{
throw new Exception("Incorrect coil register returned");
}
// check flag written
if ((buffer[10] != (set ? 0xFF : 0x0))
&& (buffer[11] != 0x0))
{
throw new Exception("Incorrect coil flag returned");
}
}
}
}
}