| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 | 
							- using Aitex.Common.Util;
 
- using Aitex.Core.RT.Log;
 
- using Aitex.Core.Util;
 
- using MECF.Framework.Common.Persistent.Rinse;
 
- using MECF.Framework.Common.ToolLayout;
 
- using System;
 
- using System.Collections.Generic;
 
- using System.IO;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- namespace MECF.Framework.Common.Persistent.VpwCell
 
- {
 
-     public class VpwCellPersistentManager : Singleton<VpwCellPersistentManager>
 
-     {
 
-         #region 内部变量
 
-         private Dictionary<string, VpwCellPersistentValue> _persistentValueDic = new Dictionary<string, VpwCellPersistentValue>();
 
-         private Dictionary<string, string> _persistentValuePathDic = new Dictionary<string, string>();
 
-         #endregion
 
-         /// <summary>
 
-         /// 初始化
 
-         /// </summary>
 
-         public void Initialize()
 
-         {
 
-             try
 
-             {
 
-                 List<string> lst = VpwCellItemManager.Instance.InstalledModules;
 
-                 foreach (string item in lst)
 
-                 {
 
-                     string foldStr = PathManager.GetCfgDir() + $"Persistent\\VpwCell";
 
-                     if (!Directory.Exists(foldStr))
 
-                     {
 
-                         Directory.CreateDirectory(foldStr);
 
-                     }
 
-                     string path = PathManager.GetCfgDir() + $"Persistent\\VpwCell\\{item}Persistent.xml";
 
-                     _persistentValuePathDic[item] = path;
 
-                     if (File.Exists(path))
 
-                     {
 
-                         VpwCellPersistentValue reservoirs1PersistentValue = CustomXmlSerializer.Deserialize<VpwCellPersistentValue>(new FileInfo(path));
 
-                         if (reservoirs1PersistentValue != null)
 
-                         {
 
-                             _persistentValueDic[item] = reservoirs1PersistentValue;
 
-                         }
 
-                     }
 
-                     else
 
-                     {
 
-                         VpwCellPersistentValue persistentValue = new VpwCellPersistentValue();
 
-                         persistentValue.Name = item;
 
-                         persistentValue.OperatingMode = "Manual";
 
-                         persistentValue.RecipeOperatingMode = "Engineering";
 
-                         _persistentValueDic[item] = persistentValue;
 
-                         UpdatePersistentValue(item);
 
-                     }
 
-                 }
 
-             }
 
-             catch (Exception ex)
 
-             {
 
-                 LOG.WriteLog(eEvent.ERR_VPW, "System", "Load RinsePersistent xml exception");
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 获取Persistent数值
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         public VpwCellPersistentValue GetPersistentValue(string module)
 
-         {
 
-             VpwCellPersistentValue value = new VpwCellPersistentValue();
 
-             if (_persistentValueDic.ContainsKey(module) == false)
 
-             {
 
-                 return null;
 
-             }
 
-             else
 
-             {
 
-                 value = _persistentValueDic[module];
 
-             }
 
-             return value;
 
-         }
 
-         /// <summary>
 
-         /// 更新PersistentValue
 
-         /// </summary>
 
-         /// <returns></returns>
 
-         public void UpdatePersistentValue(string module)
 
-         {
 
-             if (_persistentValueDic.ContainsKey(module))
 
-             {
 
-                 try
 
-                 {
 
-                     CustomXmlSerializer.Serialize(_persistentValueDic[module], _persistentValuePathDic[module]);
 
-                 }
 
-                 catch (Exception ex)
 
-                 {
 
-                     LOG.WriteLog(eEvent.ERR_VPW, module, "Update VpwCellPersistent xml file excepetion");
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 LOG.WriteLog(eEvent.ERR_VPW, module, "Update VpwCellPersistent xml file excepetion");
 
-             }
 
-         }
 
-     }
 
- }
 
 
  |