ReservoirsPersistentManager.cs 4.0 KB

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