SystemConfigManager.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using System.Xml;
  10. using Aitex.Common.Util;
  11. using Aitex.Core.RT.ConfigCenter;
  12. using Aitex.Core.RT.DataCenter;
  13. using Aitex.Core.RT.Event;
  14. using Aitex.Core.RT.Log;
  15. using Aitex.Core.RT.OperationCenter;
  16. using Aitex.Core.RT.SCCore;
  17. using Aitex.Core.Util;
  18. using MECF.Framework.Common.Equipment;
  19. using Venus_Core;
  20. namespace MECF.Framework.Common.SCCore
  21. {
  22. public class SystemConfigManager : Singleton<SystemConfigManager>, ISCManager
  23. {
  24. private Dictionary<string, SCConfigItem> _items = new Dictionary<string, SCConfigItem>();
  25. private object _itemLocker = new object();
  26. private string _scConfigFile ;
  27. private string _scDataFile = PathManager.GetCfgDir() + "_sc.data";
  28. private string _scDataBackupFile = PathManager.GetCfgDir() + "_sc.data.bak";
  29. private string _scDataErrorFile = PathManager.GetCfgDir() + "_sc.data.err.";
  30. public void Initialize(string scConfigPathName,ConfigType configType)
  31. {
  32. if (configType == ConfigType.Other)
  33. {
  34. _scDataFile = PathManager.GetCfgDir() + "_sc.data";
  35. _scDataBackupFile = PathManager.GetCfgDir() + "_sc.data.bak";
  36. _scDataErrorFile = PathManager.GetCfgDir() + "_sc.data.err.";
  37. }
  38. else
  39. {
  40. _scDataFile = PathManager.GetCfgDir() + $"_sc_{configType}.data";
  41. _scDataBackupFile = PathManager.GetCfgDir() + $"_sc.data_{configType}.bak";
  42. //_scDataErrorFile = PathManager.GetCfgDir() + $"_sc.data.err._{configType}";
  43. }
  44. _scConfigFile = scConfigPathName;
  45. BuildItems(_scConfigFile);
  46. BackupAndRecoverDataFile();
  47. CustomData();
  48. GenerateDataFile();
  49. foreach (var item in _items)
  50. {
  51. CONFIG.Subscribe("", item.Key, ()=>item.Value.Value);
  52. }
  53. OP.Subscribe("System.SetConfig", InvokeSetConfig);
  54. SC.Manager = this;
  55. }
  56. private bool InvokeSetConfig(string cmd, object[] parameters)
  57. {
  58. string key = (string) parameters[0];
  59. object old = GetConfigValueAsObject(key);
  60. if ((string)parameters[0] == "PMB.Chiller.ChillerSameWithPMA" && (string)parameters[1] == "true")
  61. {
  62. if (_items["PMA.Chiller.EnableChiller"].Value.ToString() == "False") return true;
  63. }
  64. if (InitializeItemValue(_items[(string)parameters[0]], (string)parameters[1]))
  65. {
  66. GenerateDataFile();
  67. LOG.Write(eEvent.EV_SYSTEM_CONFIG, ModuleName.System, string.Format("SC {0} value changed from {1} to {2}", key, old, parameters[1]));
  68. }
  69. if ((string)parameters[0] == "PMA.Chiller.EnableChiller" && (string)parameters[1] == "false")
  70. {
  71. if (_items["PMB.Chiller.ChillerSameWithPMA"].Value.ToString() == "False") return true;
  72. if (InitializeItemValue(_items["PMB.Chiller.ChillerSameWithPMA"], "False"))
  73. {
  74. GenerateDataFile();
  75. LOG.Write(eEvent.EV_SYSTEM_CONFIG, ModuleName.System, string.Format("SC {0} value changed from {1} to {2}", "PMB.Chiller.ChillerSameWithPMA", "true", "false"));
  76. }
  77. }
  78. if ((string)parameters[0] == "PMB.Chiller.EnableChiller" && (string)parameters[1] == "false")
  79. {
  80. if (_items["PMB.Chiller.ChillerSameWithPMA"].Value.ToString() == "False") return true;
  81. if (InitializeItemValue(_items["PMB.Chiller.EnableChiller"], "true"))
  82. {
  83. GenerateDataFile();
  84. LOG.Write(eEvent.EV_SYSTEM_CONFIG, ModuleName.System, string.Format("SC {0} value changed from {1} to {2}", "PMB.Chiller.EnableChiller", "false", "true"));
  85. }
  86. }
  87. if ((string)parameters[0] == "PMB.Chiller.ChillerSameWithPMA" && (string)parameters[1] == "true")
  88. {
  89. if (_items["PMB.Chiller.EnableChiller"].Value.ToString() == "True") return true;
  90. if (InitializeItemValue(_items["PMB.Chiller.EnableChiller"], "true"))
  91. {
  92. GenerateDataFile();
  93. LOG.Write(eEvent.EV_SYSTEM_CONFIG, ModuleName.System, string.Format("SC {0} value changed from {1} to {2}", "PMB.Chiller.EnableChiller", "false", "true"));
  94. }
  95. }
  96. return true;
  97. }
  98. public void Terminate()
  99. {
  100. }
  101. public string GetFileContent()
  102. {
  103. if (!File.Exists(_scConfigFile))
  104. return "";
  105. StringBuilder s = new StringBuilder();
  106. try
  107. {
  108. using (StreamReader sr = new StreamReader(_scConfigFile))
  109. {
  110. while (!sr.EndOfStream)
  111. {
  112. s.Append(sr.ReadLine());
  113. }
  114. }
  115. }
  116. catch (Exception ex)
  117. {
  118. LOG.WriteExeption(ex);
  119. return "";
  120. }
  121. return s.ToString();
  122. }
  123. private void BuildItems(string xmlFile)
  124. {
  125. XmlDocument xml = new XmlDocument();
  126. try
  127. {
  128. var _sc_stream = File.Open(xmlFile, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.Read);
  129. xml.Load(_sc_stream);
  130. XmlNodeList nodeConfigs = xml.SelectNodes("root/configs");
  131. foreach (XmlElement nodeConfig in nodeConfigs)
  132. {
  133. BuildPathConfigs(nodeConfig.GetAttribute("name"), nodeConfig as XmlElement);
  134. }
  135. }
  136. catch (Exception ex)
  137. {
  138. LOG.WriteExeption(ex);
  139. }
  140. }
  141. private void BuildPathConfigs(string parentPath, XmlElement configElement)
  142. {
  143. XmlNodeList nodeConfigsList = configElement.SelectNodes("configs");
  144. foreach (XmlElement nodeConfig in nodeConfigsList)
  145. {
  146. if (string.IsNullOrEmpty(parentPath))
  147. {
  148. BuildPathConfigs(nodeConfig.GetAttribute("name"), nodeConfig as XmlElement);
  149. }
  150. else
  151. {
  152. BuildPathConfigs(parentPath + "." + nodeConfig.GetAttribute("name"), nodeConfig as XmlElement);
  153. }
  154. }
  155. XmlNodeList nodeConfigs = configElement.SelectNodes("config");
  156. foreach (XmlElement nodeConfig in nodeConfigs)
  157. {
  158. SCConfigItem item = new SCConfigItem()
  159. {
  160. Default = nodeConfig.GetAttribute("default"),
  161. Name = nodeConfig.GetAttribute("name"),
  162. Description = nodeConfig.GetAttribute("description"),
  163. Max = nodeConfig.GetAttribute("max"),
  164. Min = nodeConfig.GetAttribute("min"),
  165. Parameter = nodeConfig.GetAttribute("paramter"),
  166. Path = parentPath,
  167. Tag = nodeConfig.GetAttribute("tag"),
  168. Type = nodeConfig.GetAttribute("type"),
  169. Unit = nodeConfig.GetAttribute("unit"),
  170. };
  171. InitializeItemValue(item, item.Default);
  172. if (_items.ContainsKey(item.PathName))
  173. {
  174. //LOG.Error("Duplicated SC item, "+ item.PathName);
  175. }
  176. _items[item.PathName] = item;
  177. }
  178. }
  179. private void BackupAndRecoverDataFile()
  180. {
  181. try
  182. {
  183. if (File.Exists(_scDataFile) && IsXmlFileLoadable(_scDataFile))
  184. {
  185. File.Copy(_scDataFile, _scDataBackupFile, true);
  186. }
  187. else if (File.Exists(_scDataBackupFile) && IsXmlFileLoadable(_scDataBackupFile))
  188. {
  189. if (File.Exists(_scDataFile))
  190. {
  191. File.Copy(_scDataFile, _scDataErrorFile + DateTime.Now.ToString("yyyyMMdd_HHmmss"), true);
  192. }
  193. File.Copy(_scDataBackupFile, _scDataFile, true);
  194. }
  195. }
  196. catch (Exception ex)
  197. {
  198. LOG.WriteExeption(ex);
  199. }
  200. }
  201. private void CustomData()
  202. {
  203. Dictionary<string, string> values = new Dictionary<string, string>();
  204. try
  205. {
  206. if (File.Exists(_scDataFile))
  207. {
  208. XmlDocument xmlData = new XmlDocument();
  209. var _sc_stream = File.Open(_scDataFile, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.Read);
  210. xmlData.Load(_sc_stream);
  211. XmlNodeList scdatas = xmlData.SelectNodes("root/scdata");
  212. foreach (XmlElement nodedata in scdatas)
  213. {
  214. string name = nodedata.GetAttribute("name");
  215. if (_items.ContainsKey(name))
  216. {
  217. InitializeItemValue(_items[name], nodedata.GetAttribute("value"));
  218. }
  219. }
  220. }
  221. }
  222. catch (Exception ex)
  223. {
  224. LOG.WriteExeption(ex);
  225. }
  226. }
  227. private void GenerateDataFile()
  228. {
  229. try
  230. {
  231. XmlDocument xml = new XmlDocument();
  232. xml.LoadXml("<?xml version=\"1.0\" encoding=\"utf-8\"?><root></root>");
  233. XmlElement nodeRoot = xml.SelectSingleNode("root") as XmlElement;
  234. foreach (var scConfigItem in _items)
  235. {
  236. XmlElement node = xml.CreateElement("scdata");
  237. node.SetAttribute("name", scConfigItem.Key);
  238. node.SetAttribute("value", scConfigItem.Value.Value.ToString());
  239. nodeRoot.AppendChild(node);
  240. }
  241. if (File.Exists(_scDataFile) && IsXmlFileLoadable(_scDataFile))
  242. {
  243. File.Copy(_scDataFile, _scDataBackupFile, true);
  244. //File.Delete(_scDataFile);
  245. }
  246. using (FileStream fsFileStream = new FileStream(_scDataFile,
  247. FileMode.OpenOrCreate, FileAccess.Write, FileShare.None, 1024, FileOptions.WriteThrough))
  248. {
  249. fsFileStream.SetLength(0);
  250. XmlWriterSettings settings = new XmlWriterSettings();
  251. settings.Indent = true;
  252. settings.OmitXmlDeclaration = false;
  253. using (XmlWriter xmlWrite = XmlWriter.Create(fsFileStream, settings))
  254. {
  255. xml.Save(xmlWrite);
  256. }
  257. }
  258. }
  259. catch (Exception ex)
  260. {
  261. LOG.WriteExeption(ex);
  262. }
  263. }
  264. private bool IsXmlFileLoadable(string file)
  265. {
  266. try
  267. {
  268. XmlDocument xml = new XmlDocument();
  269. xml.Load(file);
  270. }
  271. catch (Exception ex)
  272. {
  273. LOG.WriteExeption(ex);
  274. return false;
  275. }
  276. return true;
  277. }
  278. public SCConfigItem GetConfigItem(string name)
  279. {
  280. //Debug.Assert(_items.ContainsKey(name), "can not find sc name, "+name);
  281. if (!_items.ContainsKey(name))
  282. {
  283. return null;
  284. }
  285. return _items[name];
  286. }
  287. public bool ContainsItem(string name)
  288. {
  289. return _items.ContainsKey(name);
  290. }
  291. public object GetConfigValueAsObject(string name)
  292. {
  293. SCConfigItem item = GetConfigItem(name);
  294. if(item == null)
  295. {
  296. return null;
  297. }
  298. switch (item.Type)
  299. {
  300. case "Bool": return item.BoolValue;
  301. case "Integer": return item.IntValue;
  302. case "Double": return item.DoubleValue;
  303. case "String": return item.StringValue;
  304. }
  305. return null;
  306. }
  307. public T GetValue<T>(string name) where T : struct
  308. {
  309. try
  310. {
  311. if (typeof(T) == typeof(bool))
  312. return (T)(object)_items[name].BoolValue;
  313. if (typeof(T) == typeof(int))
  314. return (T)(object)_items[name].IntValue;
  315. if (typeof(T) == typeof(double))
  316. return (T)(object)_items[name].DoubleValue;
  317. }
  318. catch (KeyNotFoundException)
  319. {
  320. MessageBox.Show($"Can not find system config item {name}");
  321. return default(T);
  322. }
  323. catch (Exception)
  324. {
  325. MessageBox.Show($"Can not get valid system config item value {name}");
  326. return default(T);
  327. }
  328. Debug.Assert(false, "unsupported type");
  329. return default(T);
  330. }
  331. public string GetStringValue(string name)
  332. {
  333. if (!_items.ContainsKey(name))
  334. return null;
  335. return _items[name].StringValue;
  336. }
  337. public List<SCConfigItem> GetItemList()
  338. {
  339. return _items.Values.ToList();
  340. }
  341. public void SetItemValueFromString(string name, string value)
  342. {
  343. if (InitializeItemValue(_items[name], value))
  344. {
  345. GenerateDataFile();
  346. }
  347. }
  348. private bool InitializeItemValue(SCConfigItem item, string value)
  349. {
  350. bool changed = false;
  351. switch (item.Type)
  352. {
  353. case "Bool":
  354. bool boolValue;
  355. if (bool.TryParse(value, out boolValue) && boolValue != item.BoolValue)
  356. {
  357. item.BoolValue = boolValue;
  358. changed = true;
  359. }
  360. break;
  361. case "Integer":
  362. int intValue;
  363. if (int.TryParse(value, out intValue) && intValue != item.IntValue)
  364. {
  365. int.TryParse(item.Min, out int min);
  366. int.TryParse(item.Max, out int max);
  367. if (intValue <min || intValue > max)
  368. {
  369. LOG.Write(eEvent.WARN_SYSTEM_CONFIG, ModuleName.System, $"SC {item.PathName} value {intValue} out of setting range ({item.Min}, {item.Max})");
  370. break;
  371. }
  372. item.IntValue = intValue;
  373. changed = true;
  374. }
  375. break;
  376. case "Double":
  377. double doubleValue;
  378. if (double.TryParse(value, out doubleValue) && Math.Abs(doubleValue - item.DoubleValue) > 0.0001)
  379. {
  380. double.TryParse(item.Min, out double min);
  381. double.TryParse(item.Max, out double max);
  382. if (doubleValue < min || doubleValue > max)
  383. {
  384. LOG.Write(eEvent.WARN_SYSTEM_CONFIG, ModuleName.System, $"SC {item.PathName} value {doubleValue} out of setting range ({item.Min}, {item.Max})");
  385. break;
  386. }
  387. item.DoubleValue = doubleValue;
  388. changed = true;
  389. }
  390. break;
  391. case "String":
  392. if (value != item.StringValue)
  393. {
  394. item.StringValue = value;
  395. changed = true;
  396. }
  397. break;
  398. }
  399. return changed;
  400. }
  401. public void SetItemValue(string name, object value)
  402. {
  403. Debug.Assert(_items.ContainsKey(name), "can not find sc name, " + name);
  404. if (!_items.ContainsKey(name))
  405. {
  406. return;
  407. }
  408. bool changed = false;
  409. switch (_items[name].Type)
  410. {
  411. case "Bool":
  412. bool boolValue = (bool)value;
  413. if (boolValue != _items[name].BoolValue)
  414. {
  415. _items[name].BoolValue = boolValue;
  416. changed = true;
  417. }
  418. break;
  419. case "Integer":
  420. int intValue = (int)value;
  421. if (intValue != _items[name].IntValue)
  422. {
  423. _items[name].IntValue = intValue;
  424. changed = true;
  425. }
  426. break;
  427. case "Double":
  428. double doubleValue = (double)value;
  429. if (Math.Abs(doubleValue - _items[name].DoubleValue) > 0.0001)
  430. {
  431. _items[name].DoubleValue = doubleValue;
  432. changed = true;
  433. }
  434. break;
  435. case "String":
  436. string stringValue = (string)value;
  437. if (stringValue != _items[name].StringValue)
  438. {
  439. _items[name].StringValue = stringValue;
  440. changed = true;
  441. }
  442. break;
  443. }
  444. if (changed)
  445. {
  446. GenerateDataFile();
  447. }
  448. }
  449. public void SetItemValueStringFormat(string name, string value)
  450. {
  451. Debug.Assert(_items.ContainsKey(name), "can not find sc name, " + name);
  452. if (!_items.ContainsKey(name))
  453. {
  454. return;
  455. }
  456. bool changed = false;
  457. switch (_items[name].Type)
  458. {
  459. case "Bool":
  460. bool boolValue = Convert.ToBoolean(value);
  461. if (boolValue != _items[name].BoolValue)
  462. {
  463. _items[name].BoolValue = boolValue;
  464. changed = true;
  465. }
  466. break;
  467. case "Integer":
  468. int intValue = Convert.ToInt32(value);
  469. if (intValue != _items[name].IntValue)
  470. {
  471. _items[name].IntValue = intValue;
  472. changed = true;
  473. }
  474. break;
  475. case "Double":
  476. double doubleValue = Convert.ToDouble(value);
  477. if (Math.Abs(doubleValue - _items[name].DoubleValue) > 0.0001)
  478. {
  479. _items[name].DoubleValue = doubleValue;
  480. changed = true;
  481. }
  482. break;
  483. case "String":
  484. string stringValue = (string)value;
  485. if (stringValue != _items[name].StringValue)
  486. {
  487. _items[name].StringValue = stringValue;
  488. changed = true;
  489. }
  490. break;
  491. }
  492. if (changed)
  493. {
  494. GenerateDataFile();
  495. }
  496. }
  497. public void SetItemValue(string name, bool value)
  498. {
  499. Debug.Assert(_items.ContainsKey(name), "can not find sc name, " + name);
  500. Debug.Assert(_items[name].Type=="Bool", "sc type not bool, defined as" + _items[name].Type);
  501. if (value != _items[name].BoolValue)
  502. {
  503. _items[name].BoolValue = value;
  504. GenerateDataFile();
  505. }
  506. }
  507. public void SetItemValue(string name, int value)
  508. {
  509. Debug.Assert(_items.ContainsKey(name), "can not find sc name, " + name);
  510. Debug.Assert(_items[name].Type == "Integer", "sc type not bool, defined as" + _items[name].Type);
  511. if (value != _items[name].IntValue)
  512. {
  513. _items[name].IntValue = value;
  514. GenerateDataFile();
  515. }
  516. }
  517. public void SetItemValue(string name, double value)
  518. {
  519. Debug.Assert(_items.ContainsKey(name), "can not find sc name, " + name);
  520. Debug.Assert(_items[name].Type == "Double", "sc type not bool, defined as" + _items[name].Type);
  521. if (Math.Abs(value - _items[name].DoubleValue) > 0.0001)
  522. {
  523. _items[name].DoubleValue = value;
  524. GenerateDataFile();
  525. }
  526. }
  527. public void SetItemValue(string name, string value)
  528. {
  529. Debug.Assert(_items.ContainsKey(name), "can not find sc name, " + name);
  530. if (value != _items[name].StringValue)
  531. {
  532. _items[name].StringValue = value;
  533. GenerateDataFile();
  534. }
  535. }
  536. }
  537. }