WaferStatusImp.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using MECF.Framework.Common.DataCenter;
  2. using MECF.Framework.Common.Equipment;
  3. using MECF.Framework.Common.SubstrateTrackings;
  4. using OpenSEMI.ClientBase;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using ACC = Aitex.Core.Common;
  11. namespace CyberX8_MainPages.Unity
  12. {
  13. public class WaferStatusImp
  14. {
  15. public WaferStatusImp(IQueryDataService dataService)
  16. {
  17. DataService = dataService;
  18. }
  19. public List<WaferInfo> GetWaferStatus(string moduleID)
  20. {
  21. List<WaferInfo> result = new List<WaferInfo>();
  22. string param = moduleID + ".ModuleWaferList";
  23. ACC.WaferInfo[] wafers = QueryDataClient.Instance.Service.GetData(param) as ACC.WaferInfo[];
  24. if (wafers != null)
  25. {
  26. for (int i = 0; i < wafers.Length; i++)
  27. {
  28. result.Add(WaferInfoConverter(wafers[i], moduleID, i));
  29. }
  30. }
  31. return result;
  32. }
  33. private WaferInfo WaferInfoConverter(ACC.WaferInfo awafer, string modid, int slotid)
  34. {
  35. WaferInfo wafer = new WaferInfo();
  36. wafer.ModuleID = modid;
  37. wafer.SlotID = slotid;
  38. wafer.SlotIndex = slotid + 1;
  39. wafer.WaferID = awafer.WaferID;
  40. wafer.SourceName = awafer.WaferOrigin;
  41. wafer.WaferStatus = WaferManager.Instance.WaferStatusConverter(awafer);
  42. if (!string.IsNullOrEmpty(awafer.SequenceName))
  43. {
  44. wafer.SequenceName = awafer.SequenceName;
  45. }
  46. return wafer;
  47. }
  48. //0: trans?
  49. //1:goden
  50. //2:blue
  51. //3:cyan
  52. //4:green
  53. //5:error
  54. private IQueryDataService DataService;
  55. }
  56. }