123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- using Aitex.Common.Util;
- using Aitex.Core.RT.Event;
- using Aitex.Core.RT.Log;
- using Aitex.Core.RT.RecipeCenter;
- using Aitex.Core.RT.SCCore;
- using MECF.Framework.Common.Equipment;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Xml;
- namespace MECF.Framework.Common.RecipeCenter
- {
- public class DefaultRecipeFileContext : IRecipeFileContext
- {
- public string GetRecipeDefiniton(string chamberId)
- {
- try
- {
- string recipeSchema = PathManager.GetCfgDir() + @"\RecipeFormat.xml";
- XmlDocument xmlDom = new XmlDocument();
- xmlDom.Load(recipeSchema);
- bool epdInstalled = SC.ContainsItem("System.SetUp.EPDInstalled") && SC.GetValue<bool>($"System.SetUp.EPDInstalled");
- if (!epdInstalled)
- {
- var nodeEndPoint =
- xmlDom.SelectSingleNode(
- string.Format(
- "/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='System.SetUp.EPDInstalled']"))
- as XmlElement;
- if (nodeEndPoint != null)
- {
- nodeEndPoint.ParentNode.RemoveChild(nodeEndPoint);
- }
- }
- double rfPowerRange = SC.GetValue<double>($"{chamberId}.Rf.PowerRange");
- double rfPowerRangeBias = SC.GetValue<double>($"{chamberId}.BiasRf.PowerRange");
- bool rfEnablePulsing = SC.GetValue<bool>($"{chamberId}.Rf.EnablePulsingFunction");
- bool rfEnableBias = SC.GetValue<bool>($"{chamberId}.BiasRf.EnableBiasRF");
- var nodeRfPowerBias = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='BiasRf.SetPower']")) as XmlElement;
- var nodeMatchModeBias = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='BiasRf.SetMatchProcessMode']")) as XmlElement;
- var nodeMatchC1Bias = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='BiasRf.SetMatchPositionC1']")) as XmlElement;
- var nodeMatchC2Bias = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='BiasRf.SetMatchPositionC2']")) as XmlElement;
- var nodeRfPower = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='Rf.SetPower']")) as XmlElement;
- if (nodeRfPower != null)
- {
- nodeRfPower.SetAttribute("Max", (int)rfPowerRange + "");
- }
- if (nodeRfPowerBias != null)
- {
- nodeRfPowerBias.SetAttribute("Max", (int)rfPowerRangeBias + "");
- if (!rfEnableBias)
- {
- nodeRfPowerBias.ParentNode.RemoveChild(nodeRfPowerBias);
- nodeMatchModeBias.ParentNode.RemoveChild(nodeMatchModeBias);
- nodeMatchC1Bias.ParentNode.RemoveChild(nodeMatchC1Bias);
- nodeMatchC2Bias.ParentNode.RemoveChild(nodeMatchC2Bias);
- }
- }
- if (!rfEnablePulsing)
- {
- var node1 = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='Rf.SetPulsingFrequency']")) as XmlElement;
- if (node1 != null)
- node1.ParentNode.RemoveChild(node1);
- var node2 = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='Rf.SetPulsingDuty']")) as XmlElement;
- if (node2 != null)
- node2.ParentNode.RemoveChild(node2);
- var node3 = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step/Item[@ControlName='PulsingMode']")) as XmlElement;
- if (node3 != null)
- node3.ParentNode.RemoveChild(node3);
- }
- string gas1Name = SC.GetStringValue($"{chamberId}.MfcGas1.GasName");
- bool gas1Enable = SC.GetValue<bool>($"{chamberId}.MfcGas1.Enable");
- int gas1N2Scale = SC.GetValue<int>($"{chamberId}.MfcGas1.MfcN2Scale");
- double gas1ScaleFactor = SC.GetValue<double>($"{chamberId}.MfcGas1.MfcScaleFactor");
- var nodeGas1 = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='MfcGas1']")) as XmlElement;
- if (nodeGas1 != null)
- {
- nodeGas1.SetAttribute("DisplayName", gas1Name);
- nodeGas1.SetAttribute("Max", (int)(gas1N2Scale * gas1ScaleFactor) + "");
- if (!gas1Enable)
- nodeGas1.ParentNode.RemoveChild(nodeGas1);
- }
- string gas2Name = SC.GetStringValue($"{chamberId}.MfcGas2.GasName");
- bool gas2Enable = SC.GetValue<bool>($"{chamberId}.MfcGas2.Enable");
- int gas2N2Scale = SC.GetValue<int>($"{chamberId}.MfcGas2.MfcN2Scale");
- double gas2ScaleFactor = SC.GetValue<double>($"{chamberId}.MfcGas2.MfcScaleFactor");
- var nodeGas2 = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='MfcGas2']")) as XmlElement;
- if (nodeGas2 != null)
- {
- nodeGas2.SetAttribute("DisplayName", gas2Name);
- nodeGas2.SetAttribute("Max", (int)(gas2N2Scale * gas2ScaleFactor) + "");
- if (!gas2Enable)
- nodeGas2.ParentNode.RemoveChild(nodeGas2);
- }
- string gas3Name = SC.GetStringValue($"{chamberId}.MfcGas3.GasName");
- bool gas3Enable = SC.GetValue<bool>($"{chamberId}.MfcGas3.Enable");
- int gas3N2Scale = SC.GetValue<int>($"{chamberId}.MfcGas3.MfcN2Scale");
- double gas3ScaleFactor = SC.GetValue<double>($"{chamberId}.MfcGas3.MfcScaleFactor");
- var nodeGas3 = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='MfcGas3']")) as XmlElement;
- if (nodeGas3 != null)
- {
- nodeGas3.SetAttribute("DisplayName", gas3Name);
- nodeGas3.SetAttribute("Max", (int)(gas3N2Scale * gas3ScaleFactor) + "");
- if (!gas3Enable)
- nodeGas3.ParentNode.RemoveChild(nodeGas3);
- }
- string gas4Name = SC.GetStringValue($"{chamberId}.MfcGas4.GasName");
- bool gas4Enable = SC.GetValue<bool>($"{chamberId}.MfcGas4.Enable");
- int gas4N2Scale = SC.GetValue<int>($"{chamberId}.MfcGas4.MfcN2Scale");
- double gas4ScaleFactor = SC.GetValue<double>($"{chamberId}.MfcGas4.MfcScaleFactor");
- var nodeGas4 = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='MfcGas4']")) as XmlElement;
- if (nodeGas4 != null)
- {
- nodeGas4.SetAttribute("DisplayName", gas4Name);
- nodeGas4.SetAttribute("Max", (int)(gas4N2Scale * gas4ScaleFactor) + "");
- if (!gas4Enable)
- nodeGas4.ParentNode.RemoveChild(nodeGas4);
- }
- string gas5Name = SC.GetStringValue($"{chamberId}.MfcGas5.GasName");
- bool gas5Enable = SC.GetValue<bool>($"{chamberId}.MfcGas5.Enable");
- int gas5N2Scale = SC.GetValue<int>($"{chamberId}.MfcGas5.MfcN2Scale");
- double gas5ScaleFactor = SC.GetValue<double>($"{chamberId}.MfcGas5.MfcScaleFactor");
- var nodeGas5 = xmlDom.SelectSingleNode(string.Format("/Aitex/TableRecipeFormat/Catalog/Group/Step[@ControlName='MfcGas5']")) as XmlElement;
- if (nodeGas5 != null)
- {
- nodeGas5.SetAttribute("DisplayName", gas5Name);
- nodeGas5.SetAttribute("Max", (int)(gas5N2Scale * gas5ScaleFactor) + "");
- if (!gas5Enable)
- nodeGas5.ParentNode.RemoveChild(nodeGas5);
- }
- //xmlDom.Save(recipeSchema);
- return xmlDom.OuterXml;
- }
- catch (Exception ex)
- {
- LOG.WriteExeption(ex);
- return "";
- }
- }
- public IEnumerable<string> GetRecipes(string chamberId, bool includingUsedRecipe)
- {
- try
- {
- string recipePath = PathManager.GetRecipeDir() + chamberId + "\\";
- var di = new DirectoryInfo(recipePath);
- var fis = di.GetFiles("*.rcp", SearchOption.AllDirectories);
- var recipes = new List<string>();
- foreach (var fi in fis)
- {
- string str = fi.FullName.Substring(recipePath.Length);
- str = str.Substring(0, str.LastIndexOf('.'));
- if (includingUsedRecipe || (!includingUsedRecipe && !str.Contains("HistoryRecipe\\")))
- {
- recipes.Add(str);
- }
- }
- return recipes;
- }
- catch (Exception ex)
- {
- LOG.WriteExeption(ex);
- return new List<string>();
- }
- }
- public void PostInfoEvent(string message)
- {
- LOG.Write(eEvent.EV_SEQUENCE, ModuleName.System, message);
- }
- public void PostWarningEvent(string message)
- {
- LOG.Write(eEvent.WARN_SEQUENCE, ModuleName.System, message);
- }
- public void PostAlarmEvent(string message)
- {
- LOG.Write(eEvent.ERR_SEQUENCE, ModuleName.System, message);
- }
- public void PostDialogEvent(string message)
- {
- EV.PostNotificationMessage(message);
- }
- public void PostInfoDialogMessage(string message)
- {
- LOG.Write(eEvent.EV_SEQUENCE, ModuleName.System, message);
- EV.PostPopDialogMessage(EventLevel.Information, "System Information", message);
- }
- public void PostWarningDialogMessage(string message)
- {
- LOG.Write(eEvent.WARN_SEQUENCE, ModuleName.System, message);
- EV.PostPopDialogMessage(EventLevel.Warning, "System Warning", message);
- }
- public void PostAlarmDialogMessage(string message)
- {
- LOG.Write(eEvent.ERR_SEQUENCE, ModuleName.System, message);
- EV.PostPopDialogMessage(EventLevel.Alarm, "System Alarm", message);
- }
- public string GetRecipeTemplate(string chamberId)
- {
- string schema = GetRecipeDefiniton(chamberId);
- XmlDocument dom = new XmlDocument();
- dom.LoadXml(schema);
- XmlNode nodeTemplate = dom.SelectSingleNode("/Aitex/TableRecipeData");
- return nodeTemplate.OuterXml;
- }
- public bool EnableEdit(string recipeName)
- {
- return true;
- }
- }
- }
|