GalilControllerCfgManager.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. using Aitex.Common.Util;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.SCCore;
  4. using Aitex.Core.Util;
  5. using MECF.Framework.Common.Device.Festo;
  6. using MECF.Framework.Common.Equipment;
  7. using MECF.Framework.Common.IOCore;
  8. using MECF.Framework.Common.Net;
  9. using System;
  10. using System.Collections.Concurrent;
  11. using System.Collections.Generic;
  12. using System.IO;
  13. using System.Linq;
  14. using System.Reflection;
  15. using System.Text;
  16. using System.Threading.Tasks;
  17. namespace MECF.Framework.Common.Device.Galil
  18. {
  19. public class GalilControllerCfgManager : Singleton<GalilControllerCfgManager>
  20. {
  21. #region 常量
  22. private const string STOPCODE = "StopCode";
  23. private const string REFERENCE_POSITION = "ReferencePosition";
  24. private const string TORQUE = "Torque";
  25. private const string VELOCITY = "Velocity";
  26. private const string POSITION_ERROR = "PositionError";
  27. private const string AUXILIARY_POSITION="AuxiliaryPosition";
  28. private const string GAILI_21 = "Galil21";
  29. private const string GALIL_40 = "Galil40";
  30. #endregion
  31. #region 内部变量
  32. /// <summary>
  33. /// 模块数据字典(key-模块名称,value-模块Galil数据)
  34. /// </summary>
  35. private Dictionary<string, GalilControllerData> _moduleGalilDataDictionary = new Dictionary<string, GalilControllerData>();
  36. /// <summary>
  37. /// 电机数据字典(key-电机名称,value-电机数据)
  38. /// </summary>
  39. private Dictionary<string, GalilAxisData> _moduleNameAxisDataDictionary = new Dictionary<string, GalilAxisData>();
  40. /// <summary>
  41. /// 电机索引字典(key-电机名称,value-索引)
  42. /// </summary>
  43. private Dictionary<string, int> _moduleNameIndexDictionary = new Dictionary<string, int>();
  44. /// <summary>
  45. /// 模块电机集合字典(key-模块名称,value-电机集合)
  46. /// </summary>
  47. private Dictionary<string,List<string>> _moduleNameLstDictionary= new Dictionary<string,List<string>>();
  48. /// <summary>
  49. /// 模块电机配置字典(key-电机名称,value-电机配置)
  50. /// </summary>
  51. private Dictionary<string, GalilAxisConfig> _moduleNameAxisConfigDictionary = new Dictionary<string, GalilAxisConfig>();
  52. /// <summary>
  53. /// 模块设备配置字典
  54. /// </summary>
  55. private Dictionary<string, GalilDeviceConfig> _moduleDeviceConfigDictionary = new Dictionary<string, GalilDeviceConfig>();
  56. /// <summary>
  57. /// 模块电机tcp设备字典(key-模块名称,value-tcp设备)
  58. /// </summary>
  59. private Dictionary<string, IGalilDevice> _moduleGalilTcpDeviceDictionary = new Dictionary<string, IGalilDevice>();
  60. /// <summary>
  61. /// 模块DI数组字典
  62. /// </summary>
  63. private ConcurrentDictionary<string, byte[]> _moduleDiDictionary = new ConcurrentDictionary<string, byte[]>();
  64. /// <summary>
  65. /// 电机
  66. /// </summary>
  67. private char[] _axisArray = null;
  68. #endregion
  69. /// <summary>
  70. /// 初始化
  71. /// </summary>
  72. public void Initialize()
  73. {
  74. bool isSimulate = SC.GetValue<bool>("System.IsSimulatorMode");
  75. string xmlPath = "";
  76. try
  77. {
  78. if (isSimulate)
  79. {
  80. xmlPath = PathManager.GetCfgDir() + "Devices\\GalilControllerCfg-Simulator.xml";
  81. }
  82. else
  83. {
  84. xmlPath = PathManager.GetCfgDir() + "Devices\\GalilControllerCfg.xml";
  85. }
  86. GalilControllerCfg cfg = CustomXmlSerializer.Deserialize<GalilControllerCfg>(new FileInfo(xmlPath));
  87. if (cfg != null)
  88. {
  89. foreach (var config in cfg.GalilDeviceConfigs)
  90. {
  91. InitializeGalilDevice(config);
  92. if (config.GalilType == GAILI_21)
  93. {
  94. Galil21TcpDevice galilDevice = new Galil21TcpDevice(config.Module, config.IpAddress, config.Port);
  95. galilDevice.ReceiveTimeout = config.RecvTimeout;
  96. galilDevice.SendTimeout = config.SendTimeout;
  97. galilDevice.Initialize();
  98. List<string> lst = _moduleNameLstDictionary[config.Module];
  99. foreach (var item in lst)
  100. {
  101. _moduleGalilTcpDeviceDictionary[item] = galilDevice;
  102. }
  103. }
  104. else
  105. {
  106. Galil40TcpDevice galilDevice = new Galil40TcpDevice(config.Module, config.IpAddress, config.Port);
  107. galilDevice.ReceiveTimeout = config.RecvTimeout;
  108. galilDevice.SendTimeout = config.SendTimeout;
  109. galilDevice.Initialize();
  110. List<string> lst = _moduleNameLstDictionary[config.Module];
  111. foreach (var item in lst)
  112. {
  113. _moduleGalilTcpDeviceDictionary[item] = galilDevice;
  114. }
  115. }
  116. }
  117. }
  118. }
  119. catch(Exception ex)
  120. {
  121. LOG.WriteLog(eEvent.ERR_GALIL, "Galil", "Load galil xml failed");
  122. }
  123. }
  124. /// <summary>
  125. /// 初始化Galil 设备
  126. /// </summary>
  127. /// <param name="deviceConfig"></param>
  128. private void InitializeGalilDevice(GalilDeviceConfig deviceConfig)
  129. {
  130. List<string> lst = new List<string>();
  131. _moduleDeviceConfigDictionary[deviceConfig.Module] = deviceConfig;
  132. foreach(var item in deviceConfig.GalilAxises)
  133. {
  134. _moduleNameIndexDictionary[item.Name] = item.Index;
  135. _moduleNameAxisConfigDictionary[item.Name]=item;
  136. if (!lst.Contains(item.Name))
  137. {
  138. lst.Add(item.Name);
  139. }
  140. }
  141. if (lst.Count > 0)
  142. {
  143. _moduleNameLstDictionary[deviceConfig.Module] = lst;
  144. }
  145. _axisArray = new char[10];
  146. int a = 'A';
  147. for (int i = 0; i < _axisArray.Length; i++)
  148. {
  149. _axisArray[i] = (char)(a + i);
  150. }
  151. }
  152. /// <summary>
  153. /// 更新模块数据
  154. /// </summary>
  155. /// <param name="controllerData"></param>
  156. public void UpdateModuleData(string module,GalilControllerData controllerData)
  157. {
  158. if (!_moduleGalilDataDictionary.ContainsKey(module))
  159. {
  160. _moduleGalilDataDictionary[module] = controllerData;
  161. }
  162. if (!_moduleNameLstDictionary.ContainsKey(module))
  163. {
  164. return;
  165. }
  166. UpdateModuleDI(module, controllerData.Inputs);
  167. List<string> lst = _moduleNameLstDictionary[module];
  168. foreach (var item in lst)
  169. {
  170. string moduleName = item;
  171. if (!_moduleNameIndexDictionary.ContainsKey(moduleName))
  172. {
  173. continue;
  174. }
  175. int index = _moduleNameIndexDictionary[moduleName];
  176. if(index>=controllerData.GalilAxisDatas.Count)
  177. {
  178. continue;
  179. }
  180. GalilAxisData galilAxisData=controllerData.GalilAxisDatas[index];
  181. CheckAxisDataChanged(moduleName, galilAxisData);
  182. }
  183. }
  184. /// <summary>
  185. /// 更新ModuleDI
  186. /// </summary>
  187. /// <param name="module"></param>
  188. /// <param name="diValues"></param>
  189. private void UpdateModuleDI(string module, byte[] diValues)
  190. {
  191. if (!_moduleDeviceConfigDictionary.ContainsKey(module))
  192. {
  193. return;
  194. }
  195. GalilDeviceConfig galilDeviceConfig = _moduleDeviceConfigDictionary[module];
  196. if (galilDeviceConfig.GalilDigIn == null || galilDeviceConfig.GalilDigIn.DIs == null)
  197. {
  198. return;
  199. }
  200. bool isInitial = false;
  201. if (!_moduleDiDictionary.ContainsKey(module))
  202. {
  203. _moduleDiDictionary[module] = new byte[diValues.Length];
  204. isInitial=true;
  205. }
  206. if (_moduleDiDictionary[module].Length == diValues.Length)
  207. {
  208. for(int i=0;i<diValues.Length;i++)
  209. {
  210. byte item= _moduleDiDictionary[module][i];
  211. byte diValue = diValues[i];
  212. if (isInitial)
  213. {
  214. _moduleDiDictionary[module][i]= diValue;
  215. UpdateDIValue(galilDeviceConfig,diValue, i);
  216. }
  217. else if (item != diValue)
  218. {
  219. _moduleDiDictionary[module][i] = diValue;
  220. UpdateDIValue(galilDeviceConfig, diValue, i);
  221. }
  222. }
  223. }
  224. }
  225. /// <summary>
  226. /// 更新DI数值
  227. /// </summary>
  228. /// <param name="byt"></param>
  229. /// <param name="index"></param>
  230. private void UpdateDIValue(GalilDeviceConfig deviceConfig,byte byt,int index)
  231. {
  232. List<GalilDI> dIs = deviceConfig.GalilDigIn.DIs.FindAll(O => O.Address == index);
  233. foreach(GalilDI item in dIs)
  234. {
  235. bool value = false;
  236. if (item.Bit == 0)
  237. {
  238. value = (byt & 0x01) == 0x01;
  239. }
  240. else
  241. {
  242. value = (byt >> item.Bit & 0x01) == 0x01;
  243. }
  244. if (item.Invert)
  245. {
  246. value = !value;
  247. }
  248. IOModuleManager.Instance.UpdateIoValue(item.Name,value );
  249. }
  250. }
  251. /// <summary>
  252. /// 检验电机数据是否发生变化
  253. /// </summary>
  254. /// <param name="moduleName"></param>
  255. /// <param name="axisData"></param>
  256. private void CheckAxisDataChanged(string moduleName,GalilAxisData axisData)
  257. {
  258. if (_moduleNameAxisDataDictionary.ContainsKey(moduleName))
  259. {
  260. NotifyGalilAxisData(moduleName, _moduleNameAxisDataDictionary[moduleName],axisData);
  261. _moduleNameAxisDataDictionary[moduleName].Copy(axisData);
  262. }
  263. else
  264. {
  265. NotifyGalilAxisAllData(moduleName, axisData);
  266. _moduleNameAxisDataDictionary[moduleName] = axisData.Clone();
  267. }
  268. }
  269. /// <summary>
  270. /// 更新Galil电机数据
  271. /// </summary>
  272. /// <param name="axisData"></param>
  273. private void NotifyGalilAxisAllData(string moduleName,GalilAxisData axisData)
  274. {
  275. PropertyInfo[] propertyInfos= axisData.GetType().GetProperties();
  276. foreach(var info in propertyInfos)
  277. {
  278. object value = info.GetValue(axisData);
  279. GalilAxisManager.Instance.UpdateIoValue($"{moduleName}.{info.Name}", value);
  280. }
  281. }
  282. /// <summary>
  283. /// 通知Galil电机数据
  284. /// </summary>
  285. /// <param name="sourceData"></param>
  286. /// <param name="targetData"></param>
  287. private void NotifyGalilAxisData(string moduleName,GalilAxisData sourceData, GalilAxisData targetData)
  288. {
  289. PropertyInfo[] propertyInfos = sourceData.GetType().GetProperties();
  290. foreach (var info in propertyInfos)
  291. {
  292. object sourceValue= info.GetValue(sourceData);
  293. object targetValue = info.GetValue(targetData);
  294. if (sourceValue.ToString() != targetValue.ToString())
  295. {
  296. GalilAxisManager.Instance.UpdateIoValue($"{moduleName}.{info.Name}", targetValue);
  297. }
  298. }
  299. }
  300. /// <summary>
  301. /// 设置
  302. /// </summary>
  303. /// <param name="module"></param>
  304. /// <param name="name"></param>
  305. /// <param name="variable"></param>
  306. /// <param name="value"></param>
  307. /// <returns></returns>
  308. public bool SetSystemCommand(string module, string name, string commad, object value)
  309. {
  310. string str = $"{module}.{name}";
  311. if (!_moduleGalilTcpDeviceDictionary.ContainsKey(str))
  312. {
  313. LOG.WriteLog(eEvent.ERR_GALIL, module, $"{module} does not have tcp device");
  314. return false;
  315. }
  316. if (_moduleNameIndexDictionary.ContainsKey(str))
  317. {
  318. int index = _moduleNameIndexDictionary[str];
  319. if (index >= _axisArray.Length)
  320. {
  321. LOG.WriteLog(eEvent.ERR_GALIL, module, $"{str} is not matched with index");
  322. return false;
  323. }
  324. string strCommand = "";
  325. if (value != null)
  326. {
  327. strCommand = $"{commad}{value};";
  328. }
  329. else
  330. {
  331. strCommand = $"{commad};";
  332. }
  333. return _moduleGalilTcpDeviceDictionary[str].SetGalilCommand(strCommand);
  334. }
  335. else
  336. {
  337. LOG.WriteLog(eEvent.ERR_GALIL, module, $"{str} is not matched with index");
  338. return false;
  339. }
  340. }
  341. /// <summary>
  342. /// 设置
  343. /// </summary>
  344. /// <param name="module"></param>
  345. /// <param name="name"></param>
  346. /// <param name="variable"></param>
  347. /// <param name="value"></param>
  348. /// <returns></returns>
  349. public bool SetAxisCommand(string module, string name,string commad, object value)
  350. {
  351. string str = $"{module}.{name}";
  352. if (!_moduleGalilTcpDeviceDictionary.ContainsKey(str))
  353. {
  354. LOG.WriteLog(eEvent.ERR_GALIL, module, $"{module} does not have tcp device");
  355. return false;
  356. }
  357. if(_moduleNameIndexDictionary.ContainsKey(str))
  358. {
  359. int index = _moduleNameIndexDictionary[str];
  360. if (index >= _axisArray.Length)
  361. {
  362. LOG.WriteLog(eEvent.ERR_GALIL, module, $"{str} is not matched with index");
  363. return false;
  364. }
  365. string strCommand = "";
  366. string axis = _axisArray[index].ToString();
  367. if (value != null)
  368. {
  369. strCommand = $"{commad}{axis}={value};";
  370. }
  371. else
  372. {
  373. strCommand = $"{commad}{axis};";
  374. }
  375. return _moduleGalilTcpDeviceDictionary[str].SetGalilCommand(strCommand);
  376. }
  377. else
  378. {
  379. LOG.WriteLog(eEvent.ERR_GALIL, module, $"{str} is not matched with index");
  380. return false;
  381. }
  382. }
  383. /// <summary>
  384. /// 获取Galil配置对象
  385. /// </summary>
  386. /// <param name="module"></param>
  387. /// <param name="name"></param>
  388. /// <returns></returns>
  389. public GalilAxisConfig GetGalilAxisConfig(string module,string name)
  390. {
  391. string str = $"{module}.{name}";
  392. if (_moduleNameAxisConfigDictionary.ContainsKey(str))
  393. {
  394. return _moduleNameAxisConfigDictionary[str];
  395. }
  396. else
  397. {
  398. return null;
  399. }
  400. }
  401. }
  402. }