Loadport.cs 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183
  1. using Aitex.Core.Common;
  2. using Aitex.Core.RT.DataCenter;
  3. using Aitex.Core.RT.Event;
  4. using Aitex.Core.RT.OperationCenter;
  5. using Aitex.Core.RT.SCCore;
  6. using Aitex.Core.Util;
  7. using Aitex.Sorter.Common;
  8. using MECF.Framework.Common.Equipment;
  9. using MECF.Framework.Common.SubstrateTrackings;
  10. using MECF.Framework.RT.EquipmentLibrary.HardwareUnits.LoadPorts;
  11. using System;
  12. using System.Collections;
  13. using System.Collections.Generic;
  14. using System.Diagnostics;
  15. using CyberX8_Core;
  16. using CyberX8_RT.Devices.YASKAWA;
  17. using CyberX8_RT.Modules;
  18. using Aitex.Core.RT.IOCore;
  19. using CyberX8_RT.Dispatch;
  20. using MECF.Framework.Common.IOCore;
  21. namespace CyberX8_RT.Devices.EFEM
  22. {
  23. sealed class Loadport : ILoadport
  24. {
  25. #region 常量
  26. private const string CASSETE_200_PRESENT = "Cassete200Present";
  27. private const string CASSETE_150_PRESENT = "Cassete150Present";
  28. private const string CASSETE_100_PRESENT = "Cassete100Present";
  29. #endregion
  30. private EfemEntity _controller => Singleton<RouteManager>.Instance.EFEM;
  31. /// <summary>
  32. /// 变量是否初始化字典
  33. /// </summary>
  34. private Dictionary<string, bool> _variableInitializeDic = new Dictionary<string, bool>();
  35. private EfemBase _efemBase;
  36. //---------------------------------Properties------------------------------------
  37. //
  38. public OnlineFlag OnlineFlag { get; set; }
  39. public ModuleName Module { get; set; }
  40. public DeviceState Status { get; set; }
  41. public WaferSize WaferSize { get; set; }
  42. public WaferStatus[] WaferInfo { get; set; }
  43. public bool HasCassette { get; set; }
  44. public bool Protrusion { get; set; }
  45. public bool IsMapped { get; set; }
  46. public bool JobDone { get; set; }
  47. public Stopwatch TimerNotifyJobDone { get; set; }
  48. public IE87CallBack LPCallBack
  49. {
  50. get { return _lpCallBack; }
  51. set { _lpCallBack = value; }
  52. }
  53. private IE87CallBack _lpCallBack;
  54. public bool IsThicknessValid
  55. {
  56. get
  57. {
  58. return !_enableThickness || !string.IsNullOrEmpty(_waferThicknessType);
  59. }
  60. }
  61. public string ThicknessType
  62. {
  63. get
  64. {
  65. return _waferThicknessType;
  66. }
  67. }
  68. public string PortId
  69. {
  70. get; private set;
  71. }
  72. public bool IsClamped { get; set; }
  73. public bool IsLoaded { get; set; }
  74. public bool IsDoorOpened { get; set; }
  75. public bool IsDocked { get; set; }
  76. public string CarrierId { get; set; }
  77. public string SmartTag { get; set; }
  78. public string LotId { get; set; }
  79. public bool IsBusy { get; set; }
  80. public bool IsError { get; set; }
  81. private string[] _slotMap = new string[25];
  82. public string SlotMap
  83. {
  84. get
  85. {
  86. if (_slotMap == null)
  87. {
  88. _slotMap = new string[SC.GetValue<int>("EFEM.LoadPort.SlotNumber")];
  89. }
  90. for (int i = 0; i < _slotMap.Length; i++)
  91. {
  92. _slotMap[i] = ((int)WaferManager.Instance.GetWafer(Module, i).Status).ToString();
  93. }
  94. return string.Join("", _slotMap);
  95. }
  96. }
  97. private string _waferThicknessType;
  98. private bool _enableThickness;
  99. private string AlarmWaferProtrude = "WaferProtrude";
  100. private LoadPortFACallback _faCallback = new LoadPortFACallback();
  101. private bool _cassete200Present = false;
  102. private bool _cassete150Present = false;
  103. private bool _cassete100Present = false;
  104. // Constructor
  105. //
  106. public Loadport(ModuleName mod, EfemBase efem)
  107. {
  108. Module = mod;
  109. PortId = ((int)mod - (int)ModuleName.LP1 + 1).ToString();
  110. TimerNotifyJobDone = new Stopwatch();
  111. _efemBase = efem;
  112. _enableThickness = false;// SC.GetValue<bool>("System.WaferThickness.EnableThickness");
  113. EV.Subscribe(new EventItem("Event", AlarmWaferProtrude, "Wafer protrude", EventLevel.Alarm, EventType.HostNotification));
  114. DATA.Subscribe($"{mod}.WaferSize", () => WaferSize.ToString(),SubscriptionAttribute.FLAG.IgnoreSaveDB);
  115. DATA.Subscribe($"{mod}.CassetteState", () => HasCassette ? LoadportCassetteState.Normal : LoadportCassetteState.Absent, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  116. DATA.Subscribe($"{mod}.CassettePresent", () => HasCassette ? 1 : 0, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  117. DATA.Subscribe($"{mod}.CassettePlaced", () => HasCassette,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  118. DATA.Subscribe($"{mod}.SlotMap", () => SlotMap, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  119. DATA.Subscribe($"{mod}.IsWaferProtrude", () => Protrusion ? 1 : 0,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  120. DATA.Subscribe($"{mod}.IsMapped", () => IsMapped, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  121. DATA.Subscribe($"{mod}.IsLoaded", () => IsLoaded, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  122. DATA.Subscribe($"{mod}.IsClamped", () => IsClamped,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  123. DATA.Subscribe($"{mod}.IsDocked", () => IsDocked, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  124. DATA.Subscribe($"{mod}.IsDoorOpened", () => IsDoorOpened,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  125. DATA.Subscribe($"{mod}.CarrierId", () => CarrierId, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  126. DATA.Subscribe($"{mod}.SmartTag", () => SmartTag,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  127. DATA.Subscribe($"{Module}.WaferThicknessType", () => _waferThicknessType,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  128. OP.Subscribe($"{Module}.SetThick", (cmd, args) => { SetThick(); return true; });
  129. OP.Subscribe($"{Module}.SetThin", (cmd, args) => { SetThin(); return true; });
  130. SubscribeValueAction();
  131. }
  132. /// <summary>
  133. /// 订阅变量数值发生变化
  134. /// </summary>
  135. private void SubscribeValueAction()
  136. {
  137. BeckhoffIoSubscribeUpdateVariable(CASSETE_100_PRESENT);
  138. BeckhoffIoSubscribeUpdateVariable(CASSETE_150_PRESENT);
  139. BeckhoffIoSubscribeUpdateVariable(CASSETE_200_PRESENT);
  140. }
  141. /// <summary>
  142. /// 订阅IO变量
  143. /// </summary>
  144. /// <param name="variable"></param>
  145. private void BeckhoffIoSubscribeUpdateVariable(string variable)
  146. {
  147. _variableInitializeDic[variable] = false;
  148. IOModuleManager.Instance.SubscribeModuleVariable($"{Module}", variable, UpdateVariableValue);
  149. }
  150. /// 更新变量数值
  151. /// </summary>
  152. /// <param name="variable"></param>
  153. /// <param name="value"></param>
  154. private void UpdateVariableValue(string variable, object value)
  155. {
  156. bool cassete=(bool)value;
  157. if (variable == CASSETE_200_PRESENT)
  158. {
  159. _cassete200Present = cassete;
  160. if (cassete)
  161. {
  162. if (_cassete200Present)
  163. {
  164. WaferSize = WaferSize.WS8;
  165. }
  166. }
  167. }
  168. else if (variable == CASSETE_150_PRESENT)
  169. {
  170. _cassete150Present = cassete;
  171. if (cassete)
  172. {
  173. if (_cassete150Present)
  174. {
  175. WaferSize = WaferSize.WS6;
  176. }
  177. }
  178. }
  179. else if (variable == CASSETE_100_PRESENT)
  180. {
  181. _cassete100Present = cassete;
  182. if (cassete && !_cassete200Present&&!_cassete150Present)
  183. {
  184. WaferSize = WaferSize.WS4;
  185. }
  186. }
  187. if (!_cassete100Present && !_cassete150Present && !_cassete200Present)
  188. {
  189. UpdateWaferArrive(false);
  190. }
  191. else
  192. {
  193. UpdateWaferArrive(true);
  194. }
  195. }
  196. // Methods
  197. //
  198. public void OnError()
  199. {
  200. IsError = true;
  201. IsBusy = false;
  202. }
  203. public void Abort()
  204. {
  205. IsError = false;
  206. IsBusy = false;
  207. }
  208. public void SetThick()
  209. {
  210. _waferThicknessType = "Thick";
  211. SC.SetItemValue($"System.WaferThickness.{Module}WaferThicknessType", _waferThicknessType);
  212. _efemBase.SetThickness(Module, _waferThicknessType);
  213. }
  214. public void SetThin()
  215. {
  216. _waferThicknessType = "Thin";
  217. SC.SetItemValue($"System.WaferThickness.{Module}WaferThicknessType", _waferThicknessType);
  218. _efemBase.SetThickness(Module, _waferThicknessType);
  219. }
  220. #region Home
  221. public void Home()
  222. {
  223. if (IsBusy)
  224. {
  225. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not home");
  226. return;
  227. }
  228. IsBusy = true;
  229. _efemBase.Home(Module);
  230. }
  231. public void NoteJobStart()
  232. {
  233. JobDone = false;
  234. }
  235. public void NoteJobComplete()
  236. {
  237. TimerNotifyJobDone.Restart();
  238. JobDone = true;
  239. }
  240. public void OnHomeFailed(string data)
  241. {
  242. IsError = true;
  243. IsBusy = false;
  244. }
  245. public void OnHomed()
  246. {
  247. IsError = false;
  248. IsBusy = false;
  249. IsClamped = false;
  250. IsLoaded = false;
  251. IsMapped = false;
  252. IsDocked = false;
  253. WaferManager.Instance.DeleteWafer(Module, 0, 25);
  254. }
  255. #endregion
  256. #region Load
  257. public bool Load()
  258. {
  259. if (IsLoaded)
  260. {
  261. EV.PostWarningLog(Module.ToString(), $"{Module} is loaded, can not load");
  262. return false;
  263. }
  264. if (IsBusy)
  265. {
  266. EV.PostInfoLog(Module.ToString(), $"{Module} is busy, can not load");
  267. return false;
  268. }
  269. if (IsError)
  270. {
  271. EV.PostInfoLog(Module.ToString(), $"{Module} is error, can not load");
  272. return false;
  273. }
  274. IsBusy = true;
  275. _controller.SendEfemAutoCommand(EfemEntity.MSG.Load, Module);
  276. return true;
  277. }
  278. public void LoadStart()
  279. {
  280. if(_lpCallBack!=null)
  281. {
  282. _lpCallBack.LoadStart();
  283. }
  284. }
  285. public void OnLoadFailed(string data)
  286. {
  287. IsError = true;
  288. IsBusy = false;
  289. _faCallback.LoadFailed(this);
  290. }
  291. public void OnLoaded()
  292. {
  293. IsError = false;
  294. IsBusy = false;
  295. IsDocked = true;
  296. IsLoaded = true;
  297. IsMapped = true;
  298. _faCallback.LoadComplete(this);
  299. if(_lpCallBack!=null)
  300. {
  301. _lpCallBack.LoadComplete();
  302. }
  303. }
  304. #endregion
  305. #region unload
  306. public void Unload()
  307. {
  308. if (!IsLoaded)
  309. {
  310. EV.PostWarningLog(Module.ToString(), $"{Module} is not loaded, can not unload");
  311. return;
  312. }
  313. if (IsBusy)
  314. {
  315. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not unload");
  316. return;
  317. }
  318. if (IsError)
  319. {
  320. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not unload");
  321. return;
  322. }
  323. IsBusy = true;
  324. CycleManager.Instance.InitLpData(Module.ToString());
  325. _controller.SendEfemAutoCommand(EfemEntity.MSG.Unload, Module);
  326. }
  327. public void UnloadStart()
  328. {
  329. if(_lpCallBack!=null)
  330. {
  331. _lpCallBack.UnLoadStart();
  332. }
  333. }
  334. public void OnUnloadFailed(string data)
  335. {
  336. IsError = true;
  337. IsBusy = false;
  338. _faCallback.UnloadFailed(this);
  339. }
  340. public void OnUnloaded()
  341. {
  342. IsBusy = false;
  343. IsError = false;
  344. IsLoaded = false;
  345. IsDocked = false;
  346. IsMapped = false;
  347. WaferManager.Instance.DeleteWafer(Module, 0, 25);
  348. if (SC.GetValue<bool>("EFEM.AutoUnlockAfterUnload"))
  349. {
  350. _faCallback.UnloadComplete(this);
  351. }
  352. else
  353. {
  354. }
  355. }
  356. #endregion
  357. #region Get Wafer Size
  358. /// <summary>
  359. /// 获取Wafer尺寸
  360. /// </summary>
  361. public bool GetWaferSize()
  362. {
  363. if (IsBusy)
  364. {
  365. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not get wafer size");
  366. return false;
  367. }
  368. if (IsError)
  369. {
  370. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not get wafer size");
  371. return false;
  372. }
  373. IsBusy = true;
  374. return _efemBase.GetWaferSize(Module);
  375. }
  376. public void UpdateWaferSize(WaferSize waferSize)
  377. {
  378. WaferSize = waferSize;
  379. int count = WaferManager.Instance.GetSlotNumber(Module);
  380. for (int i = 0; i < count; i++)
  381. {
  382. WaferManager.Instance.UpdateWaferSize(Module, i, WaferSize);
  383. }
  384. IsBusy = false;
  385. IsError = false;
  386. }
  387. #endregion
  388. #region Dock
  389. public bool Dock()
  390. {
  391. if (IsBusy)
  392. {
  393. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not dock");
  394. return false;
  395. }
  396. if (IsError)
  397. {
  398. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not dock");
  399. return false;
  400. }
  401. IsBusy = true;
  402. _controller.SendEfemAutoCommand(EfemEntity.MSG.Dock, Module);
  403. return true;
  404. }
  405. public void OnDocked()
  406. {
  407. IsBusy = false;
  408. IsError = false;
  409. }
  410. public void OnDockFailed(string data)
  411. {
  412. IsError = true;
  413. IsBusy = false;
  414. }
  415. #endregion
  416. #region Undock
  417. public void Undock()
  418. {
  419. if (IsBusy)
  420. {
  421. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not undock");
  422. return;
  423. }
  424. if (IsError)
  425. {
  426. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not undock");
  427. return;
  428. }
  429. IsBusy = true;
  430. _controller.SendEfemAutoCommand(EfemEntity.MSG.Undock, Module);
  431. }
  432. public void OnUndocked()
  433. {
  434. IsBusy = false;
  435. IsError = false;
  436. }
  437. public void OnUndockFailed(string data)
  438. {
  439. IsError = true;
  440. IsBusy = false;
  441. }
  442. #endregion
  443. #region Clamp
  444. public void Clamp(bool isUnloadClamp)
  445. {
  446. if (IsBusy)
  447. {
  448. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not clamp");
  449. return;
  450. }
  451. if (IsError)
  452. {
  453. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not clamp");
  454. return;
  455. }
  456. IsBusy = true;
  457. _controller.SendEfemAutoCommand(EfemEntity.MSG.Clamp, Module, isUnloadClamp);
  458. }
  459. public void OnClamped(bool isUnloadClamp)
  460. {
  461. IsBusy = false;
  462. IsError = false;
  463. if (isUnloadClamp)
  464. {
  465. _faCallback.UnloadComplete(this);
  466. }
  467. else
  468. {
  469. _faCallback.Clamped(this);
  470. }
  471. }
  472. public void OnClampFailed(string data)
  473. {
  474. IsError = true;
  475. IsBusy = false;
  476. }
  477. #endregion
  478. #region Unclamp
  479. public void Unclamp()
  480. {
  481. if (IsBusy)
  482. {
  483. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not unclamp");
  484. return;
  485. }
  486. if (IsError)
  487. {
  488. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not unclamp");
  489. return;
  490. }
  491. IsBusy = true;
  492. _controller.SendEfemAutoCommand(EfemEntity.MSG.Unclamp, Module);
  493. }
  494. public void OnUnclamped()
  495. {
  496. IsBusy = false;
  497. IsError = false;
  498. _faCallback.Unclamped(this);
  499. }
  500. public void OnUnclampFailed(string data)
  501. {
  502. }
  503. #endregion
  504. #region map
  505. public void GotoMap(string extend)
  506. {
  507. if (IsBusy)
  508. {
  509. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not map");
  510. return;
  511. }
  512. if (IsError)
  513. {
  514. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not map");
  515. return;
  516. }
  517. IsBusy = true;
  518. _controller.SendEfemAutoCommand(EfemEntity.MSG.GotoMap, Module,extend);
  519. }
  520. public void Map()
  521. {
  522. if (IsBusy)
  523. {
  524. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not map");
  525. return;
  526. }
  527. if (IsError)
  528. {
  529. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not map");
  530. return;
  531. }
  532. IsBusy = true;
  533. _controller.SendEfemAutoCommand(EfemEntity.MSG.Map, Module);
  534. }
  535. public void OnMaped()
  536. {
  537. IsBusy = false;
  538. IsError = false;
  539. }
  540. #endregion
  541. #region carrierID
  542. public void ReadCarrierID()
  543. {
  544. if (IsBusy)
  545. {
  546. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not read carrier ID");
  547. return;
  548. }
  549. if (IsError)
  550. {
  551. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not read carrier ID");
  552. return;
  553. }
  554. IsBusy = true;
  555. _controller.SendEfemAutoCommand(EfemEntity.MSG.ReadCarrierId, Module);
  556. }
  557. public void OnCarrierIDRead(string data)
  558. {
  559. IsBusy = false;
  560. IsError = false;
  561. //Regex rg = new Regex("(?<=(" + "LOT :" + "))[.\\s\\S]*?(?=(" + "QTY :" + "))", RegexOptions.Multiline | RegexOptions.Singleline);
  562. //string carrierID = rg.Match(data).Value.Replace(":", "").Trim();
  563. //data =
  564. // "CST:C082259 TYPE:CST25_AU LOT:AF2403 QTY:24 FLOW:033000 STATUS:HOLD PRI:3-1 PD:0418A CSRLOT: CLEAN:2021/11/14 19:57:50 EQPGRP:DUMMY STAGE:CP-TEST1 RECIPE:DUMMY EMP:N ";
  565. var items = data.Split(new string[] { " ", "\t", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);
  566. CarrierId = "";
  567. foreach (var item in items)
  568. {
  569. if (item.StartsWith("CST:") && item.Length > 4)
  570. CarrierId = item.Substring(4).Trim();
  571. if (item.StartsWith("LOT:") && item.Length > 4)
  572. LotId = item.Substring(4).Trim();
  573. }
  574. if (string.IsNullOrEmpty(CarrierId))
  575. {
  576. CarrierId = data;
  577. }
  578. SmartTag = data;
  579. _faCallback.IDRead(this);
  580. }
  581. public void OnCarrierIDReadFailed(string data)
  582. {
  583. IsError = true;
  584. IsBusy = false;
  585. _faCallback.ReadIDFailed(this);
  586. }
  587. public void WriteCarrierID(string id)
  588. {
  589. if (IsBusy)
  590. {
  591. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not write carrier ID");
  592. return;
  593. }
  594. if (IsError)
  595. {
  596. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not write carrier ID");
  597. return;
  598. }
  599. IsBusy = true;
  600. _controller.SendEfemAutoCommand(EfemEntity.MSG.WriteCarrierID, Module, id);
  601. }
  602. public void OnCarrierIDWrite(string data)
  603. {
  604. IsBusy = false;
  605. IsError = false;
  606. var items = data.Split(new string[] { " ", "\t", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);
  607. CarrierId = "";
  608. foreach (var item in items)
  609. {
  610. if (item.StartsWith("CST:") && item.Length > 4)
  611. CarrierId = item.Substring(4);
  612. }
  613. if (string.IsNullOrEmpty(CarrierId))
  614. {
  615. CarrierId = data;
  616. }
  617. SmartTag = data;
  618. _faCallback.IDWrite(this);
  619. }
  620. public void OnCarrierIDWriteFailed(string data)
  621. {
  622. IsError = true;
  623. IsBusy = false;
  624. _faCallback.WriteIDFailed(this);
  625. }
  626. #endregion
  627. #region event
  628. public void HandleEvent(EfemEventArgs eArg)
  629. {
  630. switch (eArg.CommandType)
  631. {
  632. case EfemOperation.GetWaferInfo:
  633. string sWaferInfo = eArg.DataList[0];
  634. bool resultNormal = true;
  635. for (byte index = 0; index < sWaferInfo.Length; index++)
  636. {
  637. int waferState = int.Parse(sWaferInfo.Substring(index, 1));
  638. //合理的映射到内部支持的叠片/交叉片
  639. if (waferState >= 7) waferState = 7;
  640. else if (waferState >= 2) waferState = 3;
  641. WaferStatus st = (WaferStatus)waferState;
  642. if (st != WaferStatus.Empty)
  643. {
  644. WaferManager.Instance.CreateWafer(this.Module, index, st);
  645. if (st == WaferStatus.Normal)
  646. {
  647. //EV.PostInfoLog(this.Module.ToString(), $"Found Wafer on Slot {index + 1} {WaferSize}");
  648. }
  649. else
  650. {
  651. resultNormal = false;
  652. }
  653. }
  654. }
  655. UpdateMapResult(resultNormal);
  656. break;
  657. case EfemOperation.SigStatus:
  658. // EVT: SIGSTAT/P2/00000381/00000000;
  659. string sParam = eArg.DataList[0];
  660. ModuleName mod = sParam.ToModule();
  661. if (!ModuleHelper.IsLoadPort(mod))
  662. return;
  663. // DATA1 & DATA2
  664. int nData1 = Convert.ToInt32(eArg.DataList[1], 16);
  665. int nData2 = Convert.ToInt32(eArg.DataList[2], 16);
  666. BitArray baData1 = new BitArray(new int[] { nData1 });
  667. BitArray baData2 = new BitArray(new int[] { nData2 });
  668. // wafer size
  669. this.WaferSize = !baData1[6] ? WaferSize.WS3 :
  670. !baData1[7] ? WaferSize.WS4 :
  671. !baData1[8] ? WaferSize.WS6 : WaferSize.WS0;
  672. // placement & present
  673. bool bPlacement = baData1[0]; // bit 0
  674. bool bPresence = !baData1[1]; // bit 1
  675. bool bArrived = bPlacement && bPresence;
  676. UpdateWaferArrive(bArrived);
  677. this.Protrusion = !baData1[9];
  678. if (Protrusion)
  679. {
  680. //EV.PostAlarmLog(Module.ToString(), "发现 wafer 突出");
  681. //EV.Notify(AlarmWaferProtrude);
  682. //Singleton<RouteManager>.Instance.EFEM.PostMsg(EfemEntity.MSG.Error);
  683. }
  684. // DATA2, loadport上面的LED 灯, 暂时不需要用到
  685. break;
  686. default:
  687. break;
  688. }
  689. }
  690. public void UpdateMapResult(bool result)
  691. {
  692. if (result)
  693. {
  694. _faCallback.CarrierSlotMapComplete(this);
  695. }
  696. else
  697. {
  698. _faCallback.CarrierSlotMapFailed(this);
  699. }
  700. this.IsMapped = true;
  701. }
  702. /// <summary>
  703. /// 更新Wafer到达情况
  704. /// </summary>
  705. /// <param name="bArrived"></param>
  706. public void UpdateWaferArrive(bool bArrived)
  707. {
  708. if (HasCassette)
  709. {
  710. if (!bArrived)
  711. {
  712. this.HasCassette = false;
  713. this.IsLoaded = false;
  714. this.IsMapped = false;
  715. this.IsDocked = false;
  716. //EV.PostInfoLog(mod.ToString(), "Cassette removed");
  717. //OP.DoOperation("System.CassetteLeave"); //For unload light control off afer job done
  718. CarrierManager.Instance.DeleteCarrier(Module.ToString());
  719. WaferManager.Instance.DeleteWafer(this.Module, 0, 25);
  720. _faCallback.CarrierRemoved(this);
  721. JobDone = false;
  722. _waferThicknessType = "";
  723. }
  724. }
  725. else
  726. {
  727. if (bArrived)
  728. {
  729. HasCassette = true;
  730. IsLoaded = true;
  731. IsDocked = true;
  732. CarrierManager.Instance.CreateCarrier(Module.ToString());
  733. _faCallback.CarrierArrived(this);
  734. JobDone = false;
  735. _waferThicknessType = "";
  736. }
  737. }
  738. }
  739. #endregion
  740. #region TagData
  741. public void ReadTagData()
  742. {
  743. if (IsBusy)
  744. {
  745. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not read tag data");
  746. return;
  747. }
  748. if (IsError)
  749. {
  750. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not read tag data");
  751. return;
  752. }
  753. IsBusy = true;
  754. _controller.SendEfemAutoCommand(EfemEntity.MSG.ReadTagData, Module);
  755. }
  756. public void OnTagDataRead(string data)
  757. {
  758. IsBusy = false;
  759. IsError = false;
  760. //Regex rg = new Regex("(?<=(" + "LOT :" + "))[.\\s\\S]*?(?=(" + "QTY :" + "))", RegexOptions.Multiline | RegexOptions.Singleline);
  761. //string carrierID = rg.Match(data).Value.Replace(":", "").Trim();
  762. //data =
  763. // "CST:C082259 TYPE:CST25_AU LOT:AF2403 QTY:24 FLOW:033000 STATUS:HOLD PRI:3-1 PD:0418A CSRLOT: CLEAN:2021/11/14 19:57:50 EQPGRP:DUMMY STAGE:CP-TEST1 RECIPE:DUMMY EMP:N ";
  764. var items = data.Split(new string[] { " ", "\t", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);
  765. CarrierId = "";
  766. foreach (var item in items)
  767. {
  768. if (item.StartsWith("CST:") && item.Length > 4)
  769. CarrierId = item.Substring(4);
  770. if (item.StartsWith("LOT:") && item.Length > 4)
  771. LotId = item.Substring(4).Trim();
  772. }
  773. if (string.IsNullOrEmpty(CarrierId))
  774. {
  775. CarrierId = data;
  776. }
  777. SmartTag = data;
  778. _faCallback.TagDataRead(this);
  779. }
  780. public void OnTagDataReadFailed(string data)
  781. {
  782. IsError = true;
  783. IsBusy = false;
  784. _faCallback.ReadTagDataFailed(this);
  785. }
  786. public void WriteTagData(string tagData)
  787. {
  788. if (IsBusy)
  789. {
  790. EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not write tag data");
  791. return;
  792. }
  793. if (IsError)
  794. {
  795. EV.PostInfoLog(Module.ToString(), $"{Module} is error can not write tag data");
  796. return;
  797. }
  798. IsBusy = true;
  799. _controller.SendEfemAutoCommand(EfemEntity.MSG.WriteTagData, Module, tagData);
  800. }
  801. public void OnTagDataWrite(string data)
  802. {
  803. IsBusy = false;
  804. IsError = false;
  805. var items = data.Split(new string[] { " ", "\t", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);
  806. CarrierId = "";
  807. foreach (var item in items)
  808. {
  809. if (item.StartsWith("CST:") && item.Length > 4)
  810. CarrierId = item.Substring(4);
  811. }
  812. if (string.IsNullOrEmpty(CarrierId))
  813. {
  814. CarrierId = data;
  815. }
  816. SmartTag = data;
  817. _faCallback.TagDataWrite(this);
  818. }
  819. public void OnTagDataWriteFailed(string data)
  820. {
  821. IsError = true;
  822. IsBusy = false;
  823. _faCallback.WriteTagDataFailed( this);
  824. }
  825. #endregion
  826. public void SetOnline(bool online)
  827. {
  828. OnlineFlag = online ? OnlineFlag.Online : OnlineFlag.Offline;
  829. }
  830. sealed class LoadPortFACallback
  831. {
  832. private string CARRIER_ARRIVED = "CARRIER_ARRIVED";
  833. private string CARRIER_REMOVED = "CARRIER_REMOVED";
  834. private string SLOT_MAP_AVAILABLE = "SLOT_MAP_AVAILABLE";
  835. private string SLOT_MAP_FAILED = "SLOT_MAP_FAILED";
  836. private const string CARRIER_LOADED = "CARRIER_LOADED";
  837. private const string PortLoadFailed = "PortLoadFailed";
  838. private const string CARRIER_UNLOADED = "CARRIER_UNLOADED";
  839. private const string PortUnloadFailed = "PortUnloadFailed";
  840. private const string PortClamped = "PortClamped";
  841. private const string PortUnclamped = "PortUnclamped";
  842. private const string CARRIER_ID_READ = "CARRIER_ID_READ";
  843. private const string PortReadIDFailed = "PortReadIDFailed";
  844. private const string PortIDWrite = "PortIDWrite";
  845. private const string PortWriteIDFailed = "PortWriteIDFailed";
  846. private const string PortTagDataRead = "PortTagDataRead";
  847. private const string PortReadTagDataFailed = "PortReadTagDataFailed";
  848. private const string PortTagDataWrite = "PortTagDataWrite";
  849. private const string PortWriteTagDataFailed = "PortWriteTagDataFailed";
  850. public LoadPortFACallback()
  851. {
  852. EV.Subscribe(new EventItem("Event", CARRIER_ARRIVED, "Carrier Arrived"));
  853. EV.Subscribe(new EventItem("Event", CARRIER_REMOVED, "Carrier Removed"));
  854. EV.Subscribe(new EventItem("Event", SLOT_MAP_AVAILABLE, "Slot map available"));
  855. EV.Subscribe(new EventItem("Event", SLOT_MAP_FAILED, "Slot map failed"));
  856. EV.Subscribe(new EventItem("Event", CARRIER_LOADED, "Carrier Loaded"));
  857. EV.Subscribe(new EventItem("Event", PortLoadFailed, PortLoadFailed));
  858. EV.Subscribe(new EventItem("Event", CARRIER_UNLOADED, "Carrier Unloaded"));
  859. EV.Subscribe(new EventItem("Event", PortUnloadFailed, PortUnloadFailed));
  860. EV.Subscribe(new EventItem("Event", PortClamped, "Port Clamped"));
  861. EV.Subscribe(new EventItem("Event", PortUnclamped, PortUnclamped));
  862. EV.Subscribe(new EventItem("Event", CARRIER_ID_READ, "Carrier Id Read"));
  863. EV.Subscribe(new EventItem("Event", PortReadIDFailed, PortReadIDFailed));
  864. EV.Subscribe(new EventItem("Event", PortIDWrite, PortIDWrite));
  865. EV.Subscribe(new EventItem("Event", PortWriteIDFailed, PortWriteIDFailed));
  866. EV.Subscribe(new EventItem("Event", PortTagDataRead, PortTagDataRead));
  867. EV.Subscribe(new EventItem("Event", PortReadTagDataFailed, PortReadTagDataFailed));
  868. EV.Subscribe(new EventItem("Event", PortTagDataWrite, PortTagDataWrite));
  869. EV.Subscribe(new EventItem("Event", PortWriteTagDataFailed, PortWriteTagDataFailed));
  870. }
  871. public void CarrierArrived(Loadport lp)
  872. {
  873. SerializableDictionary<string, string> dvid = new SerializableDictionary<string, string>();
  874. dvid["PortID"] = lp.PortId;
  875. EV.Notify(CARRIER_ARRIVED, dvid);
  876. }
  877. public void CarrierRemoved(Loadport lp)
  878. {
  879. SerializableDictionary<string, string> dvid = new SerializableDictionary<string, string>();
  880. dvid["PortID"] = lp.PortId;
  881. dvid["CarrierID"] = lp.CarrierId ?? "";
  882. EV.Notify(CARRIER_REMOVED, dvid);
  883. }
  884. public void CarrierSlotMapComplete(Loadport lp)
  885. {
  886. SerializableDictionary<string, string> dvid = new SerializableDictionary<string, string>();
  887. dvid["SlotMap"] = lp.SlotMap;
  888. dvid["PortID"] = lp.PortId;
  889. dvid["CarrierID"] = lp.CarrierId ?? "";
  890. EV.Notify(SLOT_MAP_AVAILABLE, dvid);
  891. }
  892. public void CarrierSlotMapFailed(Loadport lp)
  893. {
  894. SerializableDictionary<string, string> dvid = new SerializableDictionary<string, string>();
  895. dvid["SlotMap"] = lp.SlotMap;
  896. dvid["PortID"] = lp.PortId;
  897. dvid["CarrierID"] = lp.CarrierId ?? "";
  898. EV.Notify(SLOT_MAP_FAILED, dvid);
  899. }
  900. public void LoadComplete(Loadport lp)
  901. {
  902. ModuleName moduleName = lp.Module;
  903. var dvid = new SerializableDictionary<string, string>
  904. {
  905. ["CarrierID"] = lp.CarrierId ?? "",
  906. ["PortID"] = lp.PortId.ToString()
  907. };
  908. EV.Notify(CARRIER_LOADED, dvid);
  909. }
  910. public void LoadFailed(Loadport lp)
  911. {
  912. }
  913. public void UnloadComplete(Loadport lp)
  914. {
  915. ModuleName moduleName = lp.Module;
  916. var dvid = new SerializableDictionary<string, string>
  917. {
  918. ["CarrierID"] = lp.CarrierId ?? "",
  919. ["PortID"] = lp.PortId.ToString()
  920. };
  921. EV.Notify(CARRIER_UNLOADED, dvid);
  922. }
  923. public void UnloadFailed(Loadport lp)
  924. {
  925. }
  926. public void Clamped(Loadport lp)
  927. {
  928. }
  929. public void Unclamped(Loadport lp)
  930. {
  931. }
  932. public void IDRead(Loadport lp)
  933. {
  934. }
  935. public void ReadIDFailed(Loadport lp)
  936. {
  937. }
  938. public void IDWrite(Loadport lp)
  939. {
  940. }
  941. public void WriteIDFailed(Loadport lp)
  942. {
  943. }
  944. public void TagDataRead(Loadport lp)
  945. {
  946. }
  947. public void ReadTagDataFailed(Loadport lp)
  948. {
  949. }
  950. public void TagDataWrite(Loadport lp)
  951. {
  952. }
  953. public void WriteTagDataFailed(Loadport lp)
  954. {
  955. }
  956. }
  957. }
  958. }