FestoSocketSimulator.cs 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. using Aitex.Common.Util;
  2. using Aitex.Core.RT.Device;
  3. using Aitex.Core.RT.IOCore;
  4. using Aitex.Core.Util;
  5. using MECF.Framework.Common.Device.Festo;
  6. using MECF.Framework.Common.Net;
  7. using MECF.Framework.Simulator.Core.Driver;
  8. using System;
  9. using System.Collections.Generic;
  10. using System.IO;
  11. using System.Net;
  12. using Xceed.Wpf.Toolkit.PropertyGrid.Attributes;
  13. namespace CyberX8_Simulator.Devices
  14. {
  15. public class FestoSocketSimulator : SocketDeviceSimulator
  16. {
  17. //Write Address
  18. private const ushort FESTO_DO_START_ADDRESS = 0x9C43;//FestoDO起始地址(40003)
  19. //Read Address
  20. private const ushort FESTO_DI_START_ADDRESS = 0xB153;//FestoDI起始地址(45395)
  21. //Register Count
  22. private const int FESTO_REGISTER_COUNT = 100;
  23. private IByteTransform byteTransform = new BigEndianByteTransformBase();
  24. /// <summary>
  25. /// 数据(index - data)
  26. /// </summary>
  27. private short[] _festoOutputDataDic = new short[FESTO_REGISTER_COUNT];
  28. /// <summary>
  29. /// 数据(DOName - index)
  30. /// </summary>
  31. private Dictionary<string, FestoDO> _festoNameIndexDic = new Dictionary<string, FestoDO>();
  32. /// <summary>
  33. /// do 索引对象字典(key-地址索引-bit,value--do名称)
  34. /// </summary>
  35. private Dictionary<string, string> _doNameDictionary = new Dictionary<string, string>();
  36. /// <summary>
  37. /// 构造函数
  38. /// </summary>
  39. /// <param name="port"></param>
  40. public FestoSocketSimulator(int port) : base(port)
  41. {
  42. InitData(port);
  43. }
  44. /// <summary>
  45. /// 解析信息
  46. /// </summary>
  47. /// <param name="data"></param>
  48. protected override void ProcessUnsplitMessage(byte[] data)
  49. {
  50. short flag = byteTransform.TransInt16(data, 0);//事务标识符
  51. byte channel = data[6];//单元标识符
  52. byte command = data[7];//功能码
  53. if (command == 0x03)//读取
  54. {
  55. ushort startAddress = byteTransform.TransUInt16(data, 8);//起始寄存器地址
  56. short registerCount = byteTransform.TransInt16(data, 10);//寄存器数量
  57. byte[] bytes = new byte[2 * registerCount];//读取2*registerCount Byte数据
  58. if (startAddress >= FESTO_DI_START_ADDRESS)
  59. {
  60. for (int i = 0; i < registerCount; i++)
  61. {
  62. Array.Copy(byteTransform.GetBytes(_festoOutputDataDic[startAddress - FESTO_DI_START_ADDRESS + i]), 0, bytes, i * 2, 2);
  63. }
  64. OnWriteMessage(CreateReadResponse(flag, channel, command, registerCount, bytes));
  65. }
  66. else
  67. {
  68. OnWriteMessage(CreateError(flag, channel, command, 0x8A));
  69. }
  70. }
  71. else if(command == 0x06)//写入
  72. {
  73. ushort startAddress = byteTransform.TransUInt16(data, 8);//起始寄存器地址
  74. short value = byteTransform.TransInt16(data, 10);//写入的值(2 Byte)
  75. if(startAddress >= FESTO_DO_START_ADDRESS)
  76. {
  77. //通知相关数据变化
  78. var result = DecodeDOData(startAddress, value);
  79. SimulatorCommManager.Instance.CheckDataChanged(result.Item1, result.Item2);
  80. //modbus起始地址n为数据,n+1为诊断数据,取地址n下的数据
  81. _festoOutputDataDic[(startAddress - FESTO_DO_START_ADDRESS) * 2] = value;
  82. OnWriteMessage(CreateWriteResponse(flag, channel, command, startAddress, value));
  83. }
  84. else
  85. {
  86. OnWriteMessage(CreateError(flag, channel, command, 0x8A));
  87. }
  88. }
  89. else
  90. {
  91. OnWriteMessage(CreateError(flag, channel, command, 0x84));
  92. }
  93. }
  94. /// <summary>
  95. /// 读回复
  96. /// </summary>
  97. /// <param name="flag"></param>
  98. /// <param name="channel"></param>
  99. /// <param name="command"></param>
  100. /// <param name="registerCount"></param>
  101. /// <param name="values"></param>
  102. /// <returns></returns>
  103. private byte[] CreateReadResponse(short flag, byte channel, byte command, short registerCount, byte[] values)
  104. {
  105. byte[] bytes = new byte[6 + 3 + values.Length];
  106. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  107. bytes[2] = 0x00;
  108. bytes[3] = 0x00;
  109. short dataLength = (short)(3 + values.Length);
  110. Array.Copy(byteTransform.GetBytes(dataLength), 0, bytes, 4, 2);
  111. bytes[6] = channel;
  112. bytes[7] = command;
  113. bytes[8] = (byte)(2 * registerCount);
  114. Array.Copy(values, 0, bytes, 9, values.Length);
  115. return bytes;
  116. }
  117. /// <summary>
  118. /// 写回复
  119. /// </summary>
  120. /// <param name="flag"></param>
  121. /// <param name="channel"></param>
  122. /// <param name="command"></param>
  123. /// <param name="startAddress"></param>
  124. /// <param name="value"></param>
  125. /// <returns></returns>
  126. private byte[] CreateWriteResponse(short flag, byte channel, byte command, ushort startAddress, short value)
  127. {
  128. byte[] bytes = new byte[12];
  129. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  130. bytes[2] = 0x00;
  131. bytes[3] = 0x00;
  132. bytes[4] = 0x00;
  133. bytes[5] = 0x06;
  134. bytes[6] = channel;
  135. bytes[7] = command;
  136. byte[] addressByt = byteTransform.GetBytes(startAddress);
  137. Array.Copy(addressByt, 0, bytes, 8, 2);
  138. byte[] valueByt = byteTransform.GetBytes(value);
  139. Array.Copy(valueByt, 0, bytes, 10, 2);
  140. return bytes;
  141. }
  142. /// <summary>
  143. /// 错误回复
  144. /// </summary>
  145. /// <param name="flag"></param>
  146. /// <param name="channel"></param>
  147. /// <param name="command"></param>
  148. /// <param name="error"></param>
  149. /// <returns></returns>
  150. private byte[] CreateError(short flag, byte channel, byte command, byte error)
  151. {
  152. byte[] bytes = new byte[9];
  153. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  154. bytes[2] = 0x00;
  155. bytes[3] = 0x00;
  156. bytes[4] = 0x00;
  157. bytes[5] = 0x03;
  158. bytes[6] = channel;
  159. bytes[7] = (byte)(command | 0x80);
  160. bytes[8] = error;
  161. return bytes;
  162. }
  163. /// <summary>
  164. /// 更新DI数据
  165. /// </summary>
  166. /// <param name="name"></param>
  167. /// <param name="value"></param>
  168. public void UpdataDOBytes(string name, int value)
  169. {
  170. if (_festoNameIndexDic.ContainsKey(name))
  171. {
  172. FestoDO festoDO = _festoNameIndexDic[name];
  173. short byteValue = (short) (_festoOutputDataDic[(festoDO.Address - FESTO_DO_START_ADDRESS) * 2] & ~(1 << festoDO.Bit));
  174. short tmp = (short)(value << festoDO.Bit);
  175. _festoOutputDataDic[(festoDO.Address - FESTO_DO_START_ADDRESS) * 2] = (short)(byteValue | tmp);
  176. }
  177. }
  178. /// <summary>
  179. /// 解析数据
  180. /// </summary>
  181. /// <param name="address"></param>
  182. /// <param name="value"></param>
  183. /// <returns></returns>
  184. private (string, bool) DecodeDOData(ushort address, short value)
  185. {
  186. int index = (address - FESTO_DO_START_ADDRESS) * 2;
  187. int bitNum = (int)Math.Log(_festoOutputDataDic[index] ^ value, 2);
  188. bool valueBool = (value & (1 << bitNum)) != 0 ? true : false;
  189. string str = $"{address}-{bitNum}";
  190. return (_doNameDictionary[str], valueBool);
  191. }
  192. /// <summary>
  193. /// 初始化
  194. /// </summary>
  195. private void InitData(int port)
  196. {
  197. //初始化数据
  198. for (int i = 0; i < FESTO_REGISTER_COUNT; i++)
  199. {
  200. _festoOutputDataDic[i] = 0x00;
  201. }
  202. //加载对应配置文件 FestoControllerCfg-Simulator.xml
  203. string oldXmlPath = PathManager.GetCfgDir();
  204. string newXmlPath = oldXmlPath.Replace("CyberX8_Simulator", "CyberX8_RT") + "Devices\\FestoControllerCfg-Simulator.xml";
  205. FestoControllerCfg cfg = CustomXmlSerializer.Deserialize<FestoControllerCfg>(new FileInfo(newXmlPath));
  206. foreach (FestoDeviceConfig config in cfg.FestoDeviceConfigs)
  207. {
  208. if (port == config.Port)
  209. {
  210. foreach (FestoDO item in config.FestoDoes)
  211. {
  212. _festoNameIndexDic[item.Name] = item;
  213. string str = $"{item.Address}-{item.Bit}";
  214. _doNameDictionary[str] = item.Name;
  215. }
  216. }
  217. }
  218. }
  219. }
  220. }