FestoSocketSimulator.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. using MECF.Framework.Common.Net;
  2. using MECF.Framework.Simulator.Core.Driver;
  3. using System;
  4. using System.Collections.Generic;
  5. namespace CyberX8_Simulator.Devices
  6. {
  7. public class FestoSocketSimulator : SocketDeviceSimulator
  8. {
  9. //Write Address
  10. private const ushort FESTO_DO_START_ADDRESS = 0x9C43;//FestoDO起始地址(40003)
  11. //Read Address
  12. private const ushort FESTO_DI_START_ADDRESS = 0xB153;//FestoDI起始地址(45395)
  13. //Register Count
  14. private const int FESTO_REGISTER_COUNT = 100;
  15. private IByteTransform byteTransform = new BigEndianByteTransformBase();
  16. /// <summary>
  17. /// 数据(index - data)
  18. /// </summary>
  19. private short[] _festoOutputDataDic = new short[FESTO_REGISTER_COUNT];
  20. /// <summary>
  21. /// 数据(DOName - index)
  22. /// </summary>
  23. private Dictionary<string, int> _festoNameIndexDic = new Dictionary<string, int>();
  24. /// <summary>
  25. /// 构造函数
  26. /// </summary>
  27. /// <param name="port"></param>
  28. public FestoSocketSimulator(int port) : base(port)
  29. {
  30. for(int i = 0; i < FESTO_REGISTER_COUNT; i++)
  31. {
  32. _festoOutputDataDic[i] = 0x00;
  33. }
  34. }
  35. /// <summary>
  36. /// 解析信息
  37. /// </summary>
  38. /// <param name="data"></param>
  39. protected override void ProcessUnsplitMessage(byte[] data)
  40. {
  41. short flag = byteTransform.TransInt16(data, 0);//事务标识符
  42. byte channel = data[6];//单元标识符
  43. byte command = data[7];//功能码
  44. if (command == 0x03)//读取
  45. {
  46. ushort startAddress = byteTransform.TransUInt16(data, 8);//起始寄存器地址
  47. short registerCount = byteTransform.TransInt16(data, 10);//寄存器数量
  48. byte[] bytes = new byte[2 * registerCount];//读取2*registerCount Byte数据
  49. if (startAddress >= FESTO_DI_START_ADDRESS)
  50. {
  51. for (int i = 0; i < registerCount; i++)
  52. {
  53. Array.Copy(byteTransform.GetBytes(_festoOutputDataDic[startAddress - FESTO_DI_START_ADDRESS + i]), 0, bytes, i * 2, 2);
  54. }
  55. OnWriteMessage(CreateReadResponse(flag, channel, command, registerCount, bytes));
  56. }
  57. else
  58. {
  59. OnWriteMessage(CreateError(flag, channel, command, 0x8A));
  60. }
  61. }
  62. else if(command == 0x06)//写入
  63. {
  64. ushort startAddress = byteTransform.TransUInt16(data, 8);//起始寄存器地址
  65. short value = byteTransform.TransInt16(data, 10);//写入的值(2 Byte)
  66. if(startAddress >= FESTO_DO_START_ADDRESS)
  67. {
  68. //modbus起始地址n为数据,n+1为诊断数据,取地址n下的数据
  69. int index = (startAddress - FESTO_DO_START_ADDRESS) * 2;
  70. _festoOutputDataDic[index] = value;
  71. OnWriteMessage(CreateWriteResponse(flag, channel, command, startAddress, value));
  72. }
  73. else
  74. {
  75. OnWriteMessage(CreateError(flag, channel, command, 0x8A));
  76. }
  77. }
  78. else
  79. {
  80. OnWriteMessage(CreateError(flag, channel, command, 0x84));
  81. }
  82. }
  83. /// <summary>
  84. /// 读回复
  85. /// </summary>
  86. /// <param name="flag"></param>
  87. /// <param name="channel"></param>
  88. /// <param name="command"></param>
  89. /// <param name="registerCount"></param>
  90. /// <param name="values"></param>
  91. /// <returns></returns>
  92. private byte[] CreateReadResponse(short flag, byte channel, byte command, short registerCount, byte[] values)
  93. {
  94. byte[] bytes = new byte[6 + 3 + values.Length];
  95. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  96. bytes[2] = 0x00;
  97. bytes[3] = 0x00;
  98. short dataLength = (short)(3 + values.Length);
  99. Array.Copy(byteTransform.GetBytes(dataLength), 0, bytes, 4, 2);
  100. bytes[6] = channel;
  101. bytes[7] = command;
  102. bytes[8] = (byte)(2 * registerCount);
  103. Array.Copy(values, 0, bytes, 9, values.Length);
  104. return bytes;
  105. }
  106. /// <summary>
  107. /// 写回复
  108. /// </summary>
  109. /// <param name="flag"></param>
  110. /// <param name="channel"></param>
  111. /// <param name="command"></param>
  112. /// <param name="startAddress"></param>
  113. /// <param name="value"></param>
  114. /// <returns></returns>
  115. private byte[] CreateWriteResponse(short flag, byte channel, byte command, ushort startAddress, short value)
  116. {
  117. byte[] bytes = new byte[12];
  118. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  119. bytes[2] = 0x00;
  120. bytes[3] = 0x00;
  121. bytes[4] = 0x00;
  122. bytes[5] = 0x06;
  123. bytes[6] = channel;
  124. bytes[7] = command;
  125. byte[] addressByt = byteTransform.GetBytes(startAddress);
  126. Array.Copy(addressByt, 0, bytes, 8, 2);
  127. byte[] valueByt = byteTransform.GetBytes(value);
  128. Array.Copy(valueByt, 0, bytes, 10, 2);
  129. return bytes;
  130. }
  131. /// <summary>
  132. /// 错误回复
  133. /// </summary>
  134. /// <param name="flag"></param>
  135. /// <param name="channel"></param>
  136. /// <param name="command"></param>
  137. /// <param name="error"></param>
  138. /// <returns></returns>
  139. private byte[] CreateError(short flag, byte channel, byte command, byte error)
  140. {
  141. byte[] bytes = new byte[9];
  142. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  143. bytes[2] = 0x00;
  144. bytes[3] = 0x00;
  145. bytes[4] = 0x00;
  146. bytes[5] = 0x03;
  147. bytes[6] = channel;
  148. bytes[7] = (byte)(command | 0x80);
  149. bytes[8] = error;
  150. return bytes;
  151. }
  152. }
  153. }