using Aitex.Common.Util; using Aitex.Core.RT.Log; using Aitex.Core.Util; using MECF.Framework.Common.Device.ResistivityProbe; using MECF.Framework.Common.Device.TemperatureController; using MECF.Framework.Common.Persistent.Dryer; using MECF.Framework.Common.Persistent.SRD; using MECF.Framework.Common.ToolLayout; using MECF.Framework.Common.Utilities; using System; using System.Collections.Generic; using System.IO; using System.IO.Ports; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.Common.Persistent.Temperature { public class TCPersistentManager : Singleton { #region 内部变量 private Dictionary _persistentValueDic = new Dictionary(); private Dictionary _persistentValuePathDic = new Dictionary(); #endregion /// /// 初始化 /// public void Initialize() { List installedModules = TemperatureItemManager.Instance.InstalledModules; try { string xmlPath = PathManager.GetCfgDir() + "Devices\\SMCCfg.xml"; TemperatureConfig cfg = CustomXmlSerializer.Deserialize(new FileInfo(xmlPath)); if (cfg != null) { foreach (TemperatureDeviceConfig config in cfg.TemperatureDeviceConfigs) { if (installedModules!=null&&installedModules.Contains(config.Name)) { foreach (TemperatureDevice item in config.TemperatureDevices) { string module = item.Name; string foldStr = PathManager.GetCfgDir() + $"Persistent\\TC"; if (!Directory.Exists(foldStr)) { Directory.CreateDirectory(foldStr); } string str = $"{foldStr}\\{module}Persistent.xml"; _persistentValuePathDic[module] = str; if (File.Exists(str)) { TCPersistentValue tcPersistentValue = CustomXmlSerializer.Deserialize(new FileInfo(str)); if (tcPersistentValue != null) { _persistentValueDic[module] = tcPersistentValue; } } else { TCPersistentValue persistentValue = new TCPersistentValue(); persistentValue.Name = module; persistentValue.SetPoint = 10; persistentValue.SetPointLowLimit = 0; persistentValue.SetPointHighLimit = 50; _persistentValueDic[module] = persistentValue; UpdateModulePersistentValue(module); } } } } } } catch (Exception ex) { LOG.WriteLog(eEvent.ERR_TEMPERATURE, "System", "Load TCPersistent xml exception"); } } /// /// 更新数值 /// /// public void UpdateModulePersistentValue(string module) { if (_persistentValueDic.ContainsKey(module)) { try { CustomXmlSerializer.Serialize(_persistentValueDic[module], _persistentValuePathDic[module]); } catch (Exception ex) { LOG.WriteLog(eEvent.ERR_TEMPERATURE, module, "Save TC Persistent xml file excepetion"); } } else { LOG.WriteLog(eEvent.ERR_TEMPERATURE, module, "Update TC Persistent xml file excepetion"); } } /// /// 获取TCPersistent数值 /// /// public TCPersistentValue GetTCPersistentValue(string module) { TCPersistentValue value = new TCPersistentValue(); if (_persistentValueDic.ContainsKey(module) == false) { LOG.WriteLog(eEvent.ERR_TEMPERATURE, "System", $"{module} persistentValue is not exist"); } else { value = _persistentValueDic[module]; } return value; } /// /// 更新设置值和高\低limit值 /// /// public void UpdateTemperatureValue(string module, double setPoint, double setPointLowLimit,double setPointHighLimit) { _persistentValueDic[module].SetPoint = setPoint; _persistentValueDic[module].SetPointLowLimit = setPointLowLimit; _persistentValueDic[module].SetPointHighLimit = setPointHighLimit; try { CustomXmlSerializer.Serialize(_persistentValueDic[module], _persistentValuePathDic[module]); } catch (Exception ex) { LOG.WriteLog(eEvent.ERR_TEMPERATURE, "System", "Update TCPersistent xml file excepetion"); } } } }