VenusSequenceFileContext.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml;
  7. using Aitex.Common.Util;
  8. using Aitex.Core.RT.Event;
  9. using Aitex.Core.RT.Log;
  10. using Aitex.Core.RT.SCCore;
  11. using Aitex.Core.Util;
  12. using MECF.Framework.Common.Equipment;
  13. using MECF.Framework.Common.RecipeCenter;
  14. namespace Venus_RT.Modules.PMs
  15. {
  16. public class VenusSequenceFileContext : ISequenceFileContext
  17. {
  18. public string GetConfigXml()
  19. {
  20. try
  21. {
  22. string configContent = PathManager.GetCfgDir() + @"\SequenceFormat.xml";
  23. if (RtInstance.ConfigType == Venus_Core.ConfigType.VenusSE)
  24. {
  25. configContent = PathManager.GetCfgDir() + @"\SESequenceFormat.xml";
  26. }
  27. if (RtInstance.ConfigType == Venus_Core.ConfigType.VenusDE)
  28. {
  29. configContent = PathManager.GetCfgDir() + @"\DESequenceFormat.xml";
  30. }
  31. XmlDocument xmlDom = new XmlDocument();
  32. xmlDom.Load(configContent);
  33. CustomSequenceItem(xmlDom);
  34. return xmlDom.OuterXml;
  35. }
  36. catch (Exception ex)
  37. {
  38. LOG.WriteExeption(ex);
  39. return "";
  40. }
  41. }
  42. public virtual bool Validation(string content)
  43. {
  44. try
  45. {
  46. XmlDocument xmlDom = new XmlDocument();
  47. xmlDom.LoadXml(content);
  48. CustomValidation(xmlDom);
  49. return CustomValidation(xmlDom);
  50. }
  51. catch (Exception ex)
  52. {
  53. LOG.WriteExeption(ex);
  54. EV.PostWarningLog("Recipe", "sequence file not valid, " + ex.Message);
  55. return false;
  56. }
  57. }
  58. public bool EnableEdit(string sequencePathName)
  59. {
  60. //if (Singleton<RouteManager>.Instance.CheckSequenceUsedInJob(sequencePathName))
  61. //{
  62. // EV.PostWarningLog("System", "Sequence is used in auto running jobs, can not be modified");
  63. // return false;
  64. //}
  65. return true;
  66. }
  67. public virtual void CustomSequenceItem(XmlDocument xmlContent)
  68. {
  69. }
  70. public virtual bool CustomValidation(XmlDocument xmlContent)
  71. {
  72. return true;
  73. }
  74. }
  75. }