RinsePersistentManager.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. using Aitex.Common.Util;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.Util;
  4. using MECF.Framework.Common.Persistent.Dryer;
  5. using MECF.Framework.Common.Persistent.Prewet;
  6. using MECF.Framework.Common.ToolLayout;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.IO;
  10. using System.Linq;
  11. using System.Text;
  12. using System.Threading.Tasks;
  13. namespace MECF.Framework.Common.Persistent.Rinse
  14. {
  15. public class RinsePersistentManager : Singleton<RinsePersistentManager>
  16. {
  17. #region 内部变量
  18. private Dictionary<string, RinsePersistentValue> _persistentValueDic = new Dictionary<string, RinsePersistentValue>();
  19. private Dictionary<string, string> _persistentValuePathDic = new Dictionary<string, string>();
  20. #endregion
  21. /// <summary>
  22. /// 初始化
  23. /// </summary>
  24. public void Initialize()
  25. {
  26. try
  27. {
  28. List<string> lst = RinseItemManager.Instance.InstalledModules;
  29. foreach (string item in lst)
  30. {
  31. string foldStr = PathManager.GetCfgDir() + $"Persistent\\Rinse";
  32. if (!Directory.Exists(foldStr))
  33. {
  34. Directory.CreateDirectory(foldStr);
  35. }
  36. string path = PathManager.GetCfgDir() + $"Persistent\\Rinse\\{item}Persistent.xml";
  37. _persistentValuePathDic[item] = path;
  38. if (File.Exists(path))
  39. {
  40. RinsePersistentValue reservoirs1PersistentValue = CustomXmlSerializer.Deserialize<RinsePersistentValue>(new FileInfo(path));
  41. if (reservoirs1PersistentValue != null)
  42. {
  43. _persistentValueDic[item] = reservoirs1PersistentValue;
  44. }
  45. }
  46. else
  47. {
  48. RinsePersistentValue persistentValue = new RinsePersistentValue();
  49. persistentValue.Name = item;
  50. persistentValue.OperatingMode = "Manual";
  51. persistentValue.RecipeOperatingMode = "Engineering";
  52. _persistentValueDic[item] = persistentValue;
  53. UpdatePersistentValue(item);
  54. }
  55. }
  56. }
  57. catch (Exception ex)
  58. {
  59. LOG.WriteLog(eEvent.ERR_RINSE, "System", "Load RinsePersistent xml exception");
  60. }
  61. }
  62. /// <summary>
  63. /// 获取Rinse Persistent数值
  64. /// </summary>
  65. /// <returns></returns>
  66. public RinsePersistentValue GetRinsePersistentValue(string module)
  67. {
  68. RinsePersistentValue value = new RinsePersistentValue();
  69. if (_persistentValueDic.ContainsKey(module) == false)
  70. {
  71. return null;
  72. }
  73. else
  74. {
  75. value = _persistentValueDic[module];
  76. }
  77. return value;
  78. }
  79. /// <summary>
  80. /// 更新PersistentValue
  81. /// </summary>
  82. /// <returns></returns>
  83. public void UpdatePersistentValue(string module)
  84. {
  85. if (_persistentValueDic.ContainsKey(module))
  86. {
  87. try
  88. {
  89. CustomXmlSerializer.Serialize(_persistentValueDic[module], _persistentValuePathDic[module]);
  90. }
  91. catch (Exception ex)
  92. {
  93. LOG.WriteLog(eEvent.ERR_RINSE, module, "Update RinsePersistent xml file excepetion");
  94. }
  95. }
  96. else
  97. {
  98. LOG.WriteLog(eEvent.ERR_RINSE, module, "Update RinsePersistent xml file excepetion");
  99. }
  100. }
  101. }
  102. }