SequenceInfo.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.Serialization;
  4. using System.Xml;
  5. using Aitex.Core.RT.Log;
  6. using Aitex.Core.RT.RecipeCenter;
  7. using MECF.Framework.Common.Equipment;
  8. using SciChart.Core.Extensions;
  9. namespace MECF.Framework.Common.Jobs
  10. {
  11. public enum SequenceLLInOutPath
  12. {
  13. AInBOut,
  14. BInAOut,
  15. DInDOut,
  16. AInAOut,
  17. BInBOut,
  18. }
  19. [Serializable]
  20. [DataContract]
  21. public class SequenceInfo
  22. {
  23. [DataMember]
  24. public List<SequenceStepInfo> Steps { get; set; }
  25. [DataMember]
  26. public string Name { get; set; }
  27. [DataMember]
  28. public string PreWaferCleanRecipe { get; set; }
  29. [DataMember]
  30. public string PostWaferCleanRecipe { get; set; }
  31. [DataMember]
  32. public string WTWCleanRecipe { get; set; }
  33. [DataMember]
  34. public List<ModuleName> PMs { get; set; }
  35. [DataMember]
  36. public string ThicknessType { get; set; }
  37. [DataMember]
  38. public Guid InnerId { get; set; }
  39. [DataMember]
  40. public SequenceLLInOutPath LLInOutPath { get; set; }
  41. [DataMember]
  42. public int LLDelayTime { get; set; }
  43. public SequenceInfo(string name)
  44. {
  45. Name = name;
  46. InnerId = Guid.NewGuid();
  47. LLInOutPath = SequenceLLInOutPath.DInDOut;
  48. LLDelayTime = 0;
  49. Steps = new List<SequenceStepInfo>();
  50. }
  51. public string GetRecipe(ModuleName pm)
  52. {
  53. if (!ModuleHelper.IsPm(pm))
  54. return string.Empty;
  55. string attr = $"{pm}Recipe";
  56. foreach (var step in Steps)
  57. {
  58. if(step.StepModules.Contains(pm))
  59. {
  60. return (string)step.StepParameter[attr];
  61. }
  62. }
  63. return string.Empty;
  64. }
  65. }
  66. public class SequenceInfoHelper
  67. {
  68. public static SequenceInfo GetInfo(string seqFile)
  69. {
  70. SequenceInfo info = new SequenceInfo(seqFile);
  71. info.PMs = new List<ModuleName>();
  72. string content = RecipeFileManager.Instance.GetSequenceAndTryAppendLL(seqFile, false);
  73. if (!string.IsNullOrEmpty(content))
  74. {
  75. try
  76. {
  77. XmlDocument dom = new XmlDocument();
  78. dom.LoadXml(content);
  79. XmlNodeList lstStepNode = dom.SelectNodes("Aitex/TableSequenceData/Step");
  80. if (lstStepNode == null)
  81. {
  82. //LOG.Error($"{seqFile} has no step");
  83. return null;
  84. }
  85. var nodeData = dom.SelectSingleNode("Aitex/TableSequenceData");
  86. if (nodeData != null)
  87. {
  88. var node = nodeData as XmlElement;
  89. info.ThicknessType = node.GetAttribute("ThicknessType");
  90. }
  91. foreach (var nodeModelChild in lstStepNode)
  92. {
  93. XmlElement nodeStep = nodeModelChild as XmlElement;
  94. SequenceStepInfo stepInfo = new SequenceStepInfo();
  95. foreach (XmlAttribute attr in nodeStep.Attributes)
  96. {
  97. stepInfo.StepParameter[attr.Name] = attr.Value;
  98. if (attr.Name == "Position" || attr.Name=="LLSelection" || attr.Name == "PMSelection")
  99. {
  100. if (attr.Value == "LL" || attr.Value=="PM")
  101. continue;
  102. string[] pos = attr.Value.Split(',');
  103. if (pos.Length < 1)
  104. {
  105. LOG.Write(eEvent.WARN_SEQUENCE, ModuleName.System, $"{seqFile} Position {attr.Value} can not be empty");
  106. return null;
  107. }
  108. foreach (var po in pos)
  109. {
  110. if (po.IsEmpty())
  111. continue;
  112. if(attr.Name == "PMSelection")
  113. {
  114. info.PMs.Add(ModuleHelper.Converter(po));
  115. }
  116. if (po == "Cooling" )
  117. {
  118. stepInfo.StepModules.AddIfNotContains(ModuleName.Cooling1);
  119. stepInfo.StepModules.AddIfNotContains(ModuleName.Cooling2);
  120. continue;
  121. }
  122. if (po == "Aligner")
  123. {
  124. stepInfo.StepModules.AddIfNotContains(ModuleName.Aligner1);
  125. stepInfo.StepModules.AddIfNotContains(ModuleName.Aligner2);
  126. continue;
  127. }
  128. ModuleName module = ModuleHelper.Converter(po);
  129. if (module == ModuleName.System)
  130. {
  131. //LOG.Error($"{seqFile} Position {po} not valid");
  132. return null;
  133. }
  134. stepInfo.StepModules.Add(module);
  135. }
  136. continue;
  137. }
  138. if(attr.Name == "WTWClean")
  139. {
  140. info.WTWCleanRecipe = attr.Value;
  141. }
  142. if (attr.Name == "PreClean")
  143. {
  144. info.PreWaferCleanRecipe = attr.Value;
  145. }
  146. if (attr.Name == "PostClean")
  147. {
  148. info.PostWaferCleanRecipe = attr.Value;
  149. }
  150. }
  151. info.Steps.Add(stepInfo);
  152. }
  153. // Loadlock Single In Single Out property check
  154. var llSteps = info.Steps.FindAll(item => item.StepModules.Contains(ModuleName.LLA) || item.StepModules.Contains(ModuleName.LLB));
  155. if (llSteps.Count == 2)
  156. {
  157. if (llSteps[0].StepModules.Count == 1 && llSteps[1].StepModules.Count == 1)
  158. {
  159. if (llSteps[0].StepModules[0] != llSteps[1].StepModules[0])
  160. {
  161. info.LLInOutPath = llSteps[0].StepModules[0] == ModuleName.LLA ? SequenceLLInOutPath.AInBOut : SequenceLLInOutPath.BInAOut;
  162. }
  163. else
  164. {
  165. info.LLInOutPath = llSteps[0].StepModules[0] == ModuleName.LLA ? SequenceLLInOutPath.AInAOut : SequenceLLInOutPath.BInBOut;
  166. }
  167. }
  168. if(llSteps[1].StepParameter.ContainsKey("LLDelayTime"))
  169. {
  170. if(int.TryParse((string)llSteps[1].StepParameter["LLDelayTime"], out int delay))
  171. {
  172. info.LLDelayTime = delay;
  173. }
  174. }
  175. }
  176. }
  177. catch (Exception ex)
  178. {
  179. LOG.WriteExeption(ex);
  180. return null;
  181. }
  182. return info;
  183. }
  184. else
  185. {
  186. return null;
  187. }
  188. }
  189. }
  190. }