Loadport.cs 37 KB

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