ModbusClient.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO.Ports;
  4. using System.Net.Sockets;
  5. using System.Linq;
  6. using System.Net;
  7. namespace ModbusLibrary
  8. {
  9. public class ModbusClient
  10. {
  11. private TcpClient tcpClient;
  12. private NetworkStream tcpStream;
  13. private SerialPort serialPort;
  14. private bool isTcp;
  15. private BitMode bitMode= BitMode.大端;
  16. /// <summary>
  17. /// BitConverter 小端序
  18. /// IPAddress.HostToNetworkOrder 方法将本地字节序转换为网络字节序(大端序)。
  19. /// </summary>
  20. /// <param name="host"></param>
  21. /// <param name="port"></param>
  22. public ModbusClient(string host, int port)
  23. {
  24. tcpClient = new TcpClient(host, port);
  25. tcpStream = tcpClient.GetStream();
  26. isTcp = true;
  27. }
  28. public ModbusClient(string portName, int baudRate, int dataBits, StopBits stopBits, Parity parity)
  29. {
  30. serialPort = new SerialPort(portName, baudRate, parity, dataBits, stopBits);
  31. serialPort.Open();
  32. isTcp = false;
  33. }
  34. public void Close()
  35. {
  36. if ( isTcp )
  37. {
  38. tcpClient.Close();
  39. }
  40. else
  41. {
  42. serialPort.Close();
  43. }
  44. }
  45. private ushort CalculateCRC(byte[] data)
  46. {
  47. ushort crc = 0xFFFF;
  48. foreach ( byte b in data )
  49. {
  50. crc ^= b;
  51. for ( int i = 0; i < 8; i++ )
  52. {
  53. if ( ( crc & 0x0001 ) == 1 )
  54. {
  55. crc >>= 1;
  56. crc ^= 0xA001;
  57. }
  58. else
  59. {
  60. crc >>= 1;
  61. }
  62. }
  63. }
  64. return crc;
  65. }
  66. private byte[] BuildRequestToNetwork(byte unitId, byte functionCode, ushort startAddress, ushort quantity, byte[] data = null)
  67. {
  68. List<byte> request = new List<byte>();
  69. if ( isTcp )
  70. {
  71. // Modbus TCP
  72. request.AddRange(BitConverter.GetBytes(( ushort ) IPAddress.HostToNetworkOrder(( short ) 0))); // 事务标识符
  73. request.AddRange(BitConverter.GetBytes(( ushort ) IPAddress.HostToNetworkOrder(( short ) 0))); // 协议标识符
  74. int dataLength = 6+((quantity-1)*2);
  75. request.AddRange(BitConverter.GetBytes(( ushort ) IPAddress.HostToNetworkOrder(( short ) dataLength))); // 长度
  76. request.Add(unitId); // 单元标识符
  77. request.Add(functionCode); // 功能码
  78. request.AddRange(BitConverter.GetBytes(( ushort ) IPAddress.HostToNetworkOrder(( short ) startAddress))); // 起始地址
  79. if ( data != null )
  80. {
  81. request.AddRange(data); // 数据
  82. }
  83. if ( functionCode == 0x03 || functionCode == 0x04 )
  84. {
  85. request.AddRange(BitConverter.GetBytes(( ushort ) IPAddress.HostToNetworkOrder(( short ) quantity))); // 寄存器数量
  86. }
  87. }
  88. else
  89. {
  90. // Modbus RTU
  91. request.Add(unitId); // 地址
  92. request.Add(functionCode); // 功能码
  93. request.AddRange(BitConverter.GetBytes(startAddress)); // 起始地址
  94. if ( functionCode == 0x03 || functionCode == 0x04 )
  95. {
  96. request.AddRange(BitConverter.GetBytes(quantity)); // 寄存器数量
  97. }
  98. else if ( data != null )
  99. {
  100. request.AddRange(data); // 数据
  101. }
  102. ushort crc = CalculateCRC(request.ToArray());
  103. request.AddRange(BitConverter.GetBytes(crc)); // CRC 校验
  104. }
  105. return request.ToArray();
  106. }
  107. private byte[] BuildRequestTobit(byte unitId, byte functionCode, ushort startAddress, ushort quantity, byte[] data = null)
  108. {
  109. List<byte> request = new List<byte>();
  110. if ( isTcp )
  111. {
  112. // Modbus TCP
  113. request.AddRange(BitConverter.GetBytes(( ushort) 0)); // 事务标识符
  114. request.AddRange(BitConverter.GetBytes(( ushort )0)); // 协议标识符
  115. int dataLength = 6+((quantity-1)*2);
  116. request.AddRange(BitConverter.GetBytes(( ushort ) dataLength)); // 长度
  117. request.Add(unitId); // 单元标识符
  118. request.Add(functionCode); // 功能码
  119. request.AddRange(BitConverter.GetBytes(startAddress)); // 起始地址
  120. if ( data != null )
  121. {
  122. request.AddRange(data); // 数据
  123. }
  124. if ( functionCode == 0x03 || functionCode == 0x04 )
  125. {
  126. request.AddRange(BitConverter.GetBytes(quantity)); // 寄存器数量
  127. }
  128. }
  129. else
  130. {
  131. // Modbus RTU
  132. request.Add(unitId); // 地址
  133. request.Add(functionCode); // 功能码
  134. request.AddRange(BitConverter.GetBytes(startAddress)); // 起始地址
  135. if ( functionCode == 0x03 || functionCode == 0x04 )
  136. {
  137. request.AddRange(BitConverter.GetBytes(quantity)); // 寄存器数量
  138. }
  139. else if ( data != null )
  140. {
  141. request.AddRange(data); // 数据
  142. }
  143. ushort crc = CalculateCRC(request.ToArray());
  144. request.AddRange(BitConverter.GetBytes(crc)); // CRC 校验
  145. }
  146. return request.ToArray();
  147. }
  148. private byte[] ReadResponse()
  149. {
  150. byte[] buffer = new byte[256];
  151. int bytesRead;
  152. if ( isTcp )
  153. {
  154. // 读取事务标识符
  155. bytesRead = tcpStream.Read(buffer, 0, 2);
  156. ushort transactionId = (ushort)(buffer[0] << 8 | buffer[1]);
  157. // 读取协议标识符
  158. bytesRead += tcpStream.Read(buffer, 2, 2);
  159. ushort protocolId = (ushort)(buffer[2] << 8 | buffer[3]);
  160. // 读取长度
  161. bytesRead += tcpStream.Read(buffer, 4, 2);
  162. ushort length = (ushort)(buffer[4] << 8 | buffer[5]);
  163. // 读取完整帧
  164. bytesRead += tcpStream.Read(buffer, 6, length);
  165. byte[] response = new byte[bytesRead];
  166. Array.Copy(buffer, response, bytesRead);
  167. return response;
  168. }
  169. else
  170. {
  171. bytesRead = serialPort.Read(buffer, 0, buffer.Length);
  172. byte[] response = new byte[bytesRead];
  173. Array.Copy(buffer, response, bytesRead);
  174. return response;
  175. }
  176. }
  177. private void WriteRequest(byte[] request)
  178. {
  179. if ( isTcp )
  180. {
  181. tcpStream.Write(request, 0, request.Length);
  182. }
  183. else
  184. {
  185. serialPort.Write(request, 0, request.Length);
  186. }
  187. }
  188. private bool CheckCRC(byte[] response)
  189. {
  190. ushort crcReceived = (ushort)(response[response.Length - 2] << 8 | response[response.Length - 1]);
  191. byte[] data = new byte[response.Length - 2];
  192. Array.Copy(response, 0, data, 0, response.Length - 2);
  193. ushort crcCalculated = CalculateCRC(data);
  194. return crcReceived == crcCalculated;
  195. }
  196. public bool[] ReadCoils(byte unitId, ushort startAddress, ushort quantity)
  197. {
  198. byte[] request = BuildRequestToNetwork(unitId, 0x01, startAddress, quantity);
  199. WriteRequest(request);
  200. byte[] response = ReadResponse();
  201. if ( isTcp )
  202. {
  203. // 更严格的长度检查
  204. if ( response.Length < 9 )
  205. {
  206. throw new Exception("Invalid response length for ReadCoils (TCP)");
  207. }
  208. if ( response[ 7 ] == 0x01 )
  209. {
  210. int byteCount = response[8];
  211. if ( response.Length != 9 + byteCount )
  212. {
  213. throw new Exception("Invalid response length for ReadCoils (TCP)");
  214. }
  215. bool[] coils = new bool[quantity];
  216. int index = 0;
  217. for ( int i = 0; i < byteCount; i++ )
  218. {
  219. byte b = response[9 + i];
  220. for ( int j = 0; j < 8; j++ )
  221. {
  222. coils[ index++ ] = ( b & ( 1 << j ) ) != 0;
  223. if ( index >= quantity ) break;
  224. }
  225. }
  226. return coils;
  227. }
  228. else
  229. {
  230. throw new Exception("Error reading coils");
  231. }
  232. }
  233. else
  234. {
  235. if ( !CheckCRC(response) || response[ 1 ] != 0x01 )
  236. {
  237. throw new Exception("Error reading coils");
  238. }
  239. int byteCount = response[2];
  240. if ( response.Length != 3 + byteCount + 2 )
  241. {
  242. throw new Exception("Invalid response length for ReadCoils (RTU)");
  243. }
  244. bool[] coils = new bool[quantity];
  245. int index = 0;
  246. for ( int i = 0; i < byteCount; i++ )
  247. {
  248. byte b = response[3 + i];
  249. for ( int j = 0; j < 8; j++ )
  250. {
  251. coils[ index++ ] = ( b & ( 1 << j ) ) != 0;
  252. if ( index >= quantity ) break;
  253. }
  254. }
  255. return coils;
  256. }
  257. }
  258. public bool[] ReadDiscreteInputs(byte unitId, ushort startAddress, ushort quantity)
  259. {
  260. byte[] request = BuildRequestToNetwork(unitId, 0x02, startAddress, quantity);
  261. WriteRequest(request);
  262. byte[] response = ReadResponse();
  263. if ( isTcp )
  264. {
  265. if ( response.Length < 9 )
  266. {
  267. throw new Exception("Invalid response length for ReadDiscreteInputs (TCP)");
  268. }
  269. if ( response[ 7 ] == 0x02 )
  270. {
  271. int byteCount = response[8];
  272. if ( response.Length != 9 + byteCount )
  273. {
  274. throw new Exception("Invalid response length for ReadDiscreteInputs (TCP)");
  275. }
  276. bool[] inputs = new bool[quantity];
  277. int index = 0;
  278. for ( int i = 0; i < byteCount; i++ )
  279. {
  280. byte b = response[9 + i];
  281. for ( int j = 0; j < 8; j++ )
  282. {
  283. inputs[ index++ ] = ( b & ( 1 << j ) ) != 0;
  284. if ( index >= quantity ) break;
  285. }
  286. }
  287. return inputs;
  288. }
  289. else
  290. {
  291. throw new Exception("Error reading discrete inputs");
  292. }
  293. }
  294. else
  295. {
  296. if ( !CheckCRC(response) || response[ 1 ] != 0x02 )
  297. {
  298. throw new Exception("Error reading discrete inputs");
  299. }
  300. int byteCount = response[2];
  301. if ( response.Length != 3 + byteCount + 2 )
  302. {
  303. throw new Exception("Invalid response length for ReadDiscreteInputs (RTU)");
  304. }
  305. bool[] inputs = new bool[quantity];
  306. int index = 0;
  307. for ( int i = 0; i < byteCount; i++ )
  308. {
  309. byte b = response[3 + i];
  310. for ( int j = 0; j < 8; j++ )
  311. {
  312. inputs[ index++ ] = ( b & ( 1 << j ) ) != 0;
  313. if ( index >= quantity ) break;
  314. }
  315. }
  316. return inputs;
  317. }
  318. }
  319. public ushort[] ReadHoldingRegisters(byte unitId, ushort startAddress, ushort quantity)
  320. {
  321. byte[] request = BuildRequestToNetwork(unitId, 0x03, startAddress, quantity);
  322. WriteRequest(request);
  323. byte[] response = ReadResponse();
  324. if ( isTcp )
  325. {
  326. if ( response.Length < 9 )
  327. {
  328. throw new Exception("Invalid response length for ReadHoldingRegisters (TCP)");
  329. }
  330. if ( response[ 7 ] == 0x03 )
  331. {
  332. int byteCount = response[8];
  333. if ( response.Length != 9 + byteCount )
  334. {
  335. throw new Exception("Invalid response length for ReadHoldingRegisters (TCP)");
  336. }
  337. ushort[] registers = new ushort[byteCount / 2];
  338. for ( int i = 0; i < byteCount / 2; i++ )
  339. {
  340. // 转换为本地字节序
  341. registers[ i ] = ( ushort ) IPAddress.NetworkToHostOrder(( short ) ( response[ 9 + i * 2 ] << 8 | response[ 10 + i * 2 ] ));
  342. }
  343. return registers;
  344. }
  345. else
  346. {
  347. throw new Exception("Error reading holding registers");
  348. }
  349. }
  350. else
  351. {
  352. if ( !CheckCRC(response) || response[ 1 ] != 0x03 )
  353. {
  354. throw new Exception("Error reading holding registers");
  355. }
  356. int byteCount = response[2];
  357. if ( response.Length != 3 + byteCount + 2 )
  358. {
  359. throw new Exception("Invalid response length for ReadHoldingRegisters (RTU)");
  360. }
  361. ushort[] registers = new ushort[byteCount / 2];
  362. for ( int i = 0; i < byteCount / 2; i++ )
  363. {
  364. registers[ i ] = ( ushort ) ( response[ 3 + i * 2 ] << 8 | response[ 4 + i * 2 ] );
  365. }
  366. return registers;
  367. }
  368. }
  369. public ushort[] ReadInputRegisters(byte unitId, ushort startAddress, ushort quantity)
  370. {
  371. byte[] request = BuildRequestToNetwork(unitId, 0x04, startAddress, quantity);
  372. WriteRequest(request);
  373. byte[] response = ReadResponse();
  374. if ( isTcp )
  375. {
  376. if ( response.Length < 9 )
  377. {
  378. throw new Exception("Invalid response length for ReadInputRegisters (TCP)");
  379. }
  380. if ( response[ 7 ] == 0x04 )
  381. {
  382. int byteCount = response[8];
  383. if ( response.Length != 9 + byteCount )
  384. {
  385. throw new Exception("Invalid response length for ReadInputRegisters (TCP)");
  386. }
  387. ushort[] registers = new ushort[byteCount / 2];
  388. for ( int i = 0; i < byteCount / 2; i++ )
  389. {
  390. registers[ i ] = ( ushort ) ( response[ 9 + i * 2 ] << 8 | response[ 10 + i * 2 ] );
  391. }
  392. return registers;
  393. }
  394. else
  395. {
  396. throw new Exception("Error reading input registers");
  397. }
  398. }
  399. else
  400. {
  401. if ( !CheckCRC(response) || response[ 1 ] != 0x04 )
  402. {
  403. throw new Exception("Error reading input registers");
  404. }
  405. int byteCount = response[2];
  406. if ( response.Length != 3 + byteCount + 2 )
  407. {
  408. throw new Exception("Invalid response length for ReadInputRegisters (RTU)");
  409. }
  410. ushort[] registers = new ushort[byteCount / 2];
  411. for ( int i = 0; i < byteCount / 2; i++ )
  412. {
  413. registers[ i ] = ( ushort ) ( response[ 3 + i * 2 ] << 8 | response[ 4 + i * 2 ] );
  414. }
  415. return registers;
  416. }
  417. }
  418. public void WriteSingleCoil(byte unitId, ushort address, bool value)
  419. {
  420. byte[] data = BitConverter.GetBytes((ushort)(value? 0xFF00 : 0x0000));
  421. byte[] request = BuildRequestToNetwork(unitId, 0x05, address, 0, data);
  422. WriteRequest(request);
  423. byte[] response = ReadResponse();
  424. if ( isTcp )
  425. {
  426. if ( response.Length != 12 )
  427. {
  428. throw new Exception("Invalid response length for WriteSingleCoil (TCP)");
  429. }
  430. if ( response[ 7 ] != 0x05 )
  431. {
  432. throw new Exception("Error writing single coil");
  433. }
  434. }
  435. else
  436. {
  437. if ( !CheckCRC(response) || response[ 1 ] != 0x05 )
  438. {
  439. throw new Exception("Error writing single coil");
  440. }
  441. }
  442. }
  443. public void WriteSingleRegister(byte unitId, ushort address, ushort value)
  444. {
  445. byte[] data = BitConverter.GetBytes((ushort)IPAddress.HostToNetworkOrder((short)value));
  446. byte[] request = BuildRequestToNetwork(unitId, 0x06, address, 0, data);
  447. WriteRequest(request);
  448. byte[] response = ReadResponse();
  449. if ( isTcp )
  450. {
  451. if ( response.Length != 12 )
  452. {
  453. throw new Exception("Invalid response length for WriteSingleRegister (TCP)");
  454. }
  455. if ( response[ 7 ] != 0x06 )
  456. {
  457. throw new Exception("Error writing single register");
  458. }
  459. }
  460. else
  461. {
  462. if ( !CheckCRC(response) || response[ 1 ] != 0x06 )
  463. {
  464. throw new Exception("Error writing single register");
  465. }
  466. }
  467. }
  468. public void WriteMultipleCoils(byte unitId, ushort startAddress, bool[] values)
  469. {
  470. byte[] data = new byte[(values.Length / 8) + ((values.Length % 8 == 0)? 0 : 1)];
  471. for ( int i = 0; i < values.Length; i++ )
  472. {
  473. int byteIndex = i / 8;
  474. int bitIndex = i % 8;
  475. if ( values[ i ] )
  476. {
  477. data[ byteIndex ] |= ( byte ) ( 1 << bitIndex );
  478. }
  479. }
  480. byte[] request = BuildRequestToNetwork(unitId, 0x0F, startAddress, (ushort)values.Length, data);
  481. WriteRequest(request);
  482. byte[] response = ReadResponse();
  483. if ( isTcp )
  484. {
  485. if ( response.Length < 12 )
  486. {
  487. throw new Exception("Invalid response length for WriteMultipleCoils (TCP)");
  488. }
  489. if ( response[ 7 ] != 0x0F )
  490. {
  491. throw new Exception("Error writing multiple coils");
  492. }
  493. }
  494. else
  495. {
  496. if ( !CheckCRC(response) || response[ 1 ] != 0x0F )
  497. {
  498. throw new Exception("Error writing multiple coils");
  499. }
  500. }
  501. }
  502. public void WriteMultipleRegisters(byte unitId, ushort startAddress, ushort[] values)
  503. {
  504. byte[] data = new byte[values.Length * 2];
  505. for ( int i = 0; i < values.Length; i++ )
  506. {
  507. BitConverter.GetBytes(( ushort ) IPAddress.HostToNetworkOrder(( short ) values[i]));
  508. data[ i * 2 ] = ( byte ) ( values[ i ] >> 8 );
  509. data[ i * 2 + 1 ] = ( byte ) ( values[ i ] & 0xFF );
  510. }
  511. byte[] request = BuildRequestToNetwork(unitId, 0x10, startAddress, (ushort)values.Length, data);
  512. WriteRequest(request);
  513. byte[] response = ReadResponse();
  514. if ( isTcp )
  515. {
  516. if ( response.Length < 12 )
  517. {
  518. throw new Exception("Invalid response length for WriteMultipleRegisters (TCP)");
  519. }
  520. if ( response[ 7 ] != 0x10 )
  521. {
  522. throw new Exception("Error writing multiple registers");
  523. }
  524. }
  525. else
  526. {
  527. if ( !CheckCRC(response) || response[ 1 ] != 0x10 )
  528. {
  529. throw new Exception("Error writing multiple registers");
  530. }
  531. }
  532. }
  533. }
  534. public enum BitMode
  535. {
  536. 大端,
  537. 小端
  538. }
  539. }