| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206 | using Aitex.Core.Common;using Aitex.Core.RT.DataCenter;using Aitex.Core.RT.Event;using Aitex.Core.RT.OperationCenter;using Aitex.Core.RT.SCCore;using Aitex.Core.Util;using Aitex.Sorter.Common;using MECF.Framework.Common.Equipment;using MECF.Framework.Common.SubstrateTrackings;using System;using System.Collections;using System.Collections.Generic;using System.Diagnostics;using Venus_Core;using Venus_RT.Devices.YASKAWA;using Venus_RT.Modules;namespace Venus_RT.Devices.EFEM{    sealed class Loadport : ILoadport    {        private readonly EfemBase _controller;        //---------------------------------Properties------------------------------------        //         public OnlineFlag OnlineFlag { get; set; }        public ModuleName Module { get; set; }        public DeviceState Status { get; set; }        public WaferSize WaferSize { get; set; }        public WaferStatus[] WaferInfo { get; set; }        public bool HasCassette { get; set; }        public bool Protrusion { get; set; }        public bool IsMapped { get; set; }        public bool JobDone { get; set; }        public Stopwatch TimerNotifyJobDone { get; set; }        public bool IsThicknessValid        {            get            {                return !_enableThickness || !string.IsNullOrEmpty(_waferThicknessType);            }        }        public string ThicknessType        {            get            {                return _waferThicknessType;            }        }        public bool IsClamped { get; set; }        public bool IsLoaded { get; set; }        public bool IsDocked { get; set; }        public string CarrierId { get; set; }        public string SmartTag { get; set; }        public string LotId { get; set; }        public bool IsBusy { get; set; }        public bool IsError { get; set; }        private string[] _slotMap = new string[25];        public string SlotMap        {            get            {                if (_slotMap == null)                {                    _slotMap = new string[SC.GetValue<int>("EFEM.LoadPort.SlotNumber")];                }                for (int i = 0; i < _slotMap.Length; i++)                {                    _slotMap[i] = ((int)WaferManager.Instance.GetWafer(Module, i).Status).ToString();                }                return string.Join("", _slotMap);            }        }        private string Port1CassetteArrive = "Port1CassetteArrive";        private string Port1CassetteRemoved = "Port1CassetteRemoved";        private string Port1MappingComplete = "Port1MappingComplete";        private string Port1MappingFailed = "Port1MappingFailed";        private string Port2CassetteArrive = "Port2CassetteArrive";        private string Port2CassetteRemoved = "Port2CassetteRemoved";        private string Port2MappingComplete = "Port2MappingComplete";        private string Port2MappingFailed = "Port2MappingFailed";        private string _waferThicknessType;        private bool _enableThickness;        private string AlarmWaferProtrude = "WaferProtrude";        private LoadPortFACallback _faCallback = new LoadPortFACallback();        // Constructor        //        public Loadport(ModuleName mod, EfemBase efem)        {            Module = mod;            _controller = efem;						TimerNotifyJobDone = new Stopwatch();            _enableThickness = false;// SC.GetValue<bool>("System.WaferThickness.EnableThickness");            EV.Subscribe(new EventItem("Event", Port1CassetteArrive, "Port1CassetteArrive"));            EV.Subscribe(new EventItem("Event", Port1CassetteRemoved, "Port1CassetteRemoved"));            EV.Subscribe(new EventItem("Event", Port1MappingComplete, "Port1MappingComplete"));            EV.Subscribe(new EventItem("Event", Port1MappingFailed, "Port1MappingFailed"));            EV.Subscribe(new EventItem("Event", Port2CassetteArrive, "Port2CassetteArrive"));            EV.Subscribe(new EventItem("Event", Port2CassetteRemoved, "Port2CassetteRemoved"));            EV.Subscribe(new EventItem("Event", Port2MappingComplete, "Port2MappingComplete"));            EV.Subscribe(new EventItem("Event", Port2MappingFailed, "Port2MappingFailed"));            EV.Subscribe(new EventItem("Event", AlarmWaferProtrude, "Wafer protrude", EventLevel.Alarm, EventType.HostNotification));            DATA.Subscribe($"{mod}.WaferSize", () => WaferSize.ToString());            DATA.Subscribe($"{mod}.CassetteState", () => HasCassette ? LoadportCassetteState.Normal : LoadportCassetteState.Absent);            DATA.Subscribe($"{mod}.CassettePresent", () => HasCassette ? 1 : 0);            DATA.Subscribe($"{mod}.CassettePlaced", () => HasCassette);            DATA.Subscribe($"{mod}.SlotMap", () => SlotMap);            DATA.Subscribe($"{mod}.IsWaferProtrude", () => Protrusion ? 1 : 0);            DATA.Subscribe($"{mod}.IsMapped", () => IsMapped);            DATA.Subscribe($"{mod}.IsLoaded", () => IsLoaded);            DATA.Subscribe($"{mod}.IsClamped", () => IsClamped);            DATA.Subscribe($"{mod}.IsDocked", () => IsDocked);            DATA.Subscribe($"{mod}.CarrierId", () => CarrierId);            DATA.Subscribe($"{mod}.SmartTag", () => SmartTag);            DATA.Subscribe($"{Module}.WaferThicknessType", () => _waferThicknessType);            OP.Subscribe($"{Module}.SetThick", (cmd, args) => { SetThick(); return true; });            OP.Subscribe($"{Module}.SetThin", (cmd, args) => { SetThin(); return true; });        }        // Methods        //        public void OnError()        {            IsError = true;            IsBusy = false;        }        public void SetThick()        {            _waferThicknessType = "Thick";            SC.SetItemValue($"System.WaferThickness.{Module}WaferThicknessType", _waferThicknessType);            _controller.SetThickness(Module, _waferThicknessType);        }        public void SetThin()        {            _waferThicknessType = "Thin";            SC.SetItemValue($"System.WaferThickness.{Module}WaferThicknessType", _waferThicknessType);            _controller.SetThickness(Module, _waferThicknessType);        }        #region Home        public void Home()        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not home");                return;            }            IsBusy = true;            _controller.Home(Module);        }				public void NoteJobStart()        {            JobDone = false;        }		        public void NoteJobComplete()        {            TimerNotifyJobDone.Restart();            JobDone = true;        }        public void OnHomeFailed(string data)        {            IsError = true;            IsBusy = false;        }        public void OnHomed()        {            IsError = false;            IsBusy = false;            IsClamped = false;            IsLoaded = false;            IsMapped = false;            IsDocked = false;        }        #endregion        #region Load        public void Load()        {            if (IsLoaded)            {                EV.PostWarningLog(Module.ToString(), $"{Module} is loaded, can not load");                return;            }            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy, can not load");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error, can not load");                return;            }            IsBusy = true;            _controller.Load(Module);        }        public void OnLoadFailed(string data)        {            IsError = true;            IsBusy = false;            _faCallback.LoadFailed(this);        }        public void OnLoaded()        {            IsError = false;            IsBusy = false;            IsLoaded = true;            IsMapped = true;            _faCallback.LoadComplete(this);        }        #endregion        #region unload        public void Unload()        {            if (!IsLoaded)            {                EV.PostWarningLog(Module.ToString(), $"{Module} is not loaded, can not unload");                return;            }            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not unload");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not unload");                return;            }            IsBusy = true;            _controller.Unload(Module);        }        public void OnUnloadFailed(string data)        {            IsError = true;            IsBusy = false;            _faCallback.UnloadFailed(this);        }        public void OnUnloaded()        {            IsBusy = false;            IsError = false;            IsLoaded = false;            IsMapped = false;            if (SC.GetValue<bool>("EFEM.AutoUnlockAfterUnload"))            {                _faCallback.UnloadComplete(this);            }            else            {                             }         }        #endregion        #region Dock        public void Dock()        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not dock");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not dock");                return;            }            IsBusy = true;            _controller.Dock(Module);        }        public void OnDocked()        {            IsBusy = false;            IsError = false;            IsDocked = true;        }        public void OnDockFailed(string data)        {            IsError = true;            IsBusy = false;        }        #endregion        #region Undock        public void Undock()        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not undock");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not undock");                return;            }            IsBusy = true;            _controller.Undock(Module);        }        public void OnUndocked()        {            IsBusy = false;            IsError = false;            IsDocked = false;        }        public void OnUndockFailed(string data)        {            IsError = true;            IsBusy = false;        }        #endregion        #region Clamp        public void Clamp(bool isUnloadClamp)        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not clamp");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not clamp");                return;            }            IsBusy = true;            _controller.Clamp(Module, isUnloadClamp);        }        public void OnClamped(bool isUnloadClamp)        {            IsBusy = false;            IsError = false;            IsClamped = true;            if (isUnloadClamp)            {                _faCallback.UnloadComplete(this);                            }            else            {                _faCallback.Clamped(this);            }                    }        public void OnClampFailed(string data)        {            IsError = true;            IsBusy = false;        }        #endregion        #region Unclamp        public void Unclamp()        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not unclamp");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not unclamp");                return;            }            IsBusy = true;            _controller.Unclamp(Module);        }        public void OnUnclamped()        {            IsBusy = false;            IsError = false;            IsClamped = false;            _faCallback.Unclamped(this);        }        public void OnUnclampFailed(string data)        {        }        #endregion        #region map        public void Map()        {            _controller.Map(Module);        }        #endregion        #region carrierID        public void ReadCarrierID()        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not read carrier ID");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not read carrier ID");                return;            }            IsBusy = true;            _controller.ReadCarrierId(Module);        }        public void OnCarrierIDRead(string data)        {            IsBusy = false;            IsError = false;            //Regex rg = new Regex("(?<=(" + "LOT :" + "))[.\\s\\S]*?(?=(" + "QTY :" + "))", RegexOptions.Multiline | RegexOptions.Singleline);            //string carrierID = rg.Match(data).Value.Replace(":", "").Trim();            //data =            //    "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           ";            var items = data.Split(new string[] { " ", "\t", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);            CarrierId = "";            foreach (var item in items)            {                if (item.StartsWith("CST:") && item.Length > 4)                    CarrierId = item.Substring(4).Trim();                if (item.StartsWith("LOT:") && item.Length > 4)                    LotId = item.Substring(4).Trim();            }            if (string.IsNullOrEmpty(CarrierId))            {                CarrierId = data;            }            SmartTag = data;            _faCallback.IDRead(this);        }        public void OnCarrierIDReadFailed(string data)        {            IsError = true;            IsBusy = false;            _faCallback.ReadIDFailed(this);        }        public void WriteCarrierID(string id)        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not write carrier ID");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not write carrier ID");                return;            }            IsBusy = true;            _controller.WriteCarrierId(Module, id);        }        public void OnCarrierIDWrite(string data)        {            IsBusy = false;            IsError = false;            var items = data.Split(new string[] { " ", "\t", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);            CarrierId = "";            foreach (var item in items)            {                if (item.StartsWith("CST:") && item.Length > 4)                    CarrierId = item.Substring(4);            }            if (string.IsNullOrEmpty(CarrierId))            {                CarrierId = data;            }            SmartTag = data;            _faCallback.IDWrite(this);        }        public void OnCarrierIDWriteFailed(string data)        {            IsError = true;            IsBusy = false;            _faCallback.WriteIDFailed(this);        }        #endregion        #region event        public void HandleEvent(EfemEventArgs eArg)        {            switch (eArg.CommandType)            {                case EfemOperation.GetWaferInfo:                    string sWaferInfo = eArg.DataList[0];                    bool resultNormal = true;                    for (byte index = 0; index < sWaferInfo.Length; index++)                    {                        int waferState = int.Parse(sWaferInfo.Substring(index, 1));                        //合理的映射到内部支持的叠片/交叉片                        if (waferState >= 7) waferState = 7;                        else if (waferState >= 2) waferState = 3;                        WaferStatus st = (WaferStatus)waferState;                        WaferManager.Instance.UpdateWaferSize(this.Module, index, WaferSize);                        if (st != WaferStatus.Empty)                        {                            WaferManager.Instance.CreateWafer(this.Module, index, st);                            if (st == WaferStatus.Normal)                            {                                //EV.PostInfoLog(this.Module.ToString(), $"Found Wafer on Slot {index + 1} {WaferSize}");                            }                            else                            {                                resultNormal = false;                                //EV.PostAlarmLog(this.Module.ToString(), $"Found {st} Wafer on Slot {index + 1} {WaferSize}");                            }                        }                    }                    var dvidMap = new SerializableDictionary<string, string>();                    dvidMap[DVIDName.SlotMap] = sWaferInfo;                    dvidMap[DVIDName.PortID] = Module == ModuleName.LP1 ? "1" : "2";                    if (resultNormal)                    {                        //EV.Notify(Module == ModuleName.LP1 ? Port1MappingComplete : Port2MappingComplete, dvidMap);                    }                    else                    {                        //EV.Notify(Module == ModuleName.LP1 ? Port1MappingFailed : Port2MappingFailed, dvidMap);                        //EV.PostAlarmLog(Module == ModuleName.LP1 ? "Port1" : "Port2", " MappingFailed");                    }                    this.IsMapped = true;                    break;                case EfemOperation.SigStatus:                    // EVT: SIGSTAT/P2/00000381/00000000;                    string sParam = eArg.DataList[0];                    ModuleName mod = sParam.ToModule();                    if (!ModuleHelper.IsLoadPort(mod))                        return;                    // DATA1 & DATA2                    int nData1 = Convert.ToInt32(eArg.DataList[1], 16);                    int nData2 = Convert.ToInt32(eArg.DataList[2], 16);                    BitArray baData1 = new BitArray(new int[] { nData1 });                    BitArray baData2 = new BitArray(new int[] { nData2 });                    // wafer size                    this.WaferSize = !baData1[6] ? WaferSize.WS3 :                                     !baData1[7] ? WaferSize.WS4 :                                     !baData1[8] ? WaferSize.WS6 : WaferSize.WS0;                    // placement & present                    bool bPlacement = baData1[0]; // bit 0                    bool bPresence = !baData1[1]; // bit 1                    bool bArrived = bPlacement && bPresence;                    if (HasCassette)                    {                        if (!bArrived)                        {                            this.HasCassette = false;                            this.IsMapped = false;                            //EV.PostInfoLog(mod.ToString(), "Cassette removed");                            OP.DoOperation("System.CassetteLeave");     //For unload light control off afer job done                            CarrierManager.Instance.DeleteCarrier(Module.ToString());                            WaferManager.Instance.DeleteWafer(this.Module, 0, 25);                            SerializableDictionary<string, string> dvid = new SerializableDictionary<string, string>();                            dvid["PortID"] = mod == ModuleName.LP1 ? "1" : "2";                            EV.Notify(mod == ModuleName.LP1 ? Port1CassetteRemoved : Port2CassetteRemoved, dvid);                            JobDone = false;                            _waferThicknessType = "";                        }                    }                    else                    {                        if (bArrived)                        {                            this.HasCassette = true;                            CarrierManager.Instance.CreateCarrier(Module.ToString());                            EV.PostInfoLog(mod.ToString(), $"Cassette {WaferSize} arrived");                            //var dvid1 = new SerializableDictionary<string, string>();                            //dvid1["PortID"] = mod == ModuleName.LP1 ? "1" : "2";                            //EV.Notify(mod == ModuleName.LP1 ? Port1CassetteArrive : Port2CassetteArrive, dvid1);                            JobDone = false;                            _waferThicknessType = "";                        }                    }                    this.Protrusion = !baData1[9];                    if (Protrusion)                    {                        //EV.PostAlarmLog(Module.ToString(), "发现 wafer 突出");                        //EV.Notify(AlarmWaferProtrude);                        //Singleton<RouteManager>.Instance.EFEM.PostMsg(EfemEntity.MSG.Error);                    }                    // DATA2, loadport上面的LED 灯, 暂时不需要用到                    break;                default:                    break;            }        }        #endregion        #region TagData        public void ReadTagData()        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not read tag data");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not read tag data");                return;            }            IsBusy = true;            _controller.ReadTagData(Module);        }        public void OnTagDataRead(string data)        {            IsBusy = false;            IsError = false;            //Regex rg = new Regex("(?<=(" + "LOT :" + "))[.\\s\\S]*?(?=(" + "QTY :" + "))", RegexOptions.Multiline | RegexOptions.Singleline);            //string carrierID = rg.Match(data).Value.Replace(":", "").Trim();            //data =            //    "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           ";            var items = data.Split(new string[] { " ", "\t", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);            CarrierId = "";            foreach (var item in items)            {                if (item.StartsWith("CST:") && item.Length > 4)                    CarrierId = item.Substring(4);                if (item.StartsWith("LOT:") && item.Length > 4)                    LotId = item.Substring(4).Trim();            }            if (string.IsNullOrEmpty(CarrierId))            {                CarrierId = data;            }            SmartTag = data;            _faCallback.TagDataRead(this);        }        public void OnTagDataReadFailed(string data)        {            IsError = true;            IsBusy = false;            _faCallback.ReadTagDataFailed(this);        }        public void WriteTagData(string tagData)        {            if (IsBusy)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is busy can not write tag data");                return;            }            if (IsError)            {                EV.PostInfoLog(Module.ToString(), $"{Module} is error can not write tag data");                return;            }            IsBusy = true;            _controller.WriteTagData(Module, tagData);        }        public void OnTagDataWrite(string data)        {            IsBusy = false;            IsError = false;            var items = data.Split(new string[] { " ", "\t", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);            CarrierId = "";            foreach (var item in items)            {                if (item.StartsWith("CST:") && item.Length > 4)                    CarrierId = item.Substring(4);            }            if (string.IsNullOrEmpty(CarrierId))            {                CarrierId = data;            }            SmartTag = data;            _faCallback.TagDataWrite(this);        }        public void OnTagDataWriteFailed(string data)        {            IsError = true;            IsBusy = false;            _faCallback.WriteTagDataFailed( this);        }        #endregion        public void SetOnline(bool online)        {            OnlineFlag = online ? OnlineFlag.Online : OnlineFlag.Offline;        }        sealed class LoadPortFACallback        {            private const string Port1LoadComplete = "Port1LoadComplete";            private const string Port1LoadFailed = "Port1LoadFailed";            private const string Port1UnloadComplete = "Port1UnloadComplete";            private const string Port1UnloadFailed = "Port1UnloadFailed";            private const string Port1Clamped = "Port1Clamped";            private const string Port1Unclamped = "Port1Unclamped";            private const string Port1IDRead = "Port1IDRead";            private const string Port1ReadIDFailed = "Port1ReadIDFailed";            private const string Port1IDWrite = "Port1IDWrite";            private const string Port1WriteIDFailed = "Port1WriteIDFailed";            private const string Port1TagDataRead = "Port1TagDataRead";            private const string Port1ReadTagDataFailed = "Port1ReadTagDataFailed";            private const string Port1TagDataWrite = "Port1TagDataWrite";            private const string Port1WriteTagDataFailed = "Port1WriteTagDataFailed";            private const string Port2LoadComplete = "Port2LoadComplete";            private const string Port2LoadFailed = "Port2LoadFailed";            private const string Port2UnloadComplete = "Port2UnloadComplete";            private const string Port2UnloadFailed = "Port2UnloadFailed";            private const string Port2Clamped = "Port2Clamped";            private const string Port2Unclamped = "Port2Unclamped";            private const string Port2IDRead = "Port2IDRead";            private const string Port2ReadIDFailed = "Port2ReadIDFailed";            private const string Port2IDWrite = "Port2IDWrite";            private const string Port2WriteIDFailed = "Port2WriteIDFailed";            private const string Port2TagDataRead = "Port2TagDataRead";            private const string Port2ReadTagDataFailed = "Port2ReadTagDataFailed";            private const string Port2TagDataWrite = "Port2TagDataWrite";            private const string Port2WriteTagDataFailed = "Port2WriteTagDataFailed";            private const string Port3LoadComplete = "Port3LoadComplete";            private const string Port3LoadFailed = "Port3LoadFailed";            private const string Port3UnloadComplete = "Port3UnloadComplete";            private const string Port3UnloadFailed = "Port3UnloadFailed";            private const string Port3Clamped = "Port3Clamped";            private const string Port3Unclamped = "Port3Unclamped";            private const string Port3IDRead = "Port3IDRead";            private const string Port3ReadIDFailed = "Port3ReadIDFailed";            private const string Port3IDWrite = "Port3IDWrite";            private const string Port3WriteIDFailed = "Port3WriteIDFailed";            private const string Port3TagDataRead = "Port3TagDataRead";            private const string Port3ReadTagDataFailed = "Port3ReadTagDataFailed";            private const string Port3TagDataWrite = "Port3TagDataWrite";            private const string Port3WriteTagDataFailed = "Port3WriteTagDataFailed";            private Dictionary<ModuleName, string> PortLoadComplete = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, Port1LoadComplete},            {ModuleName.LP2, Port2LoadComplete},            {ModuleName.LP3, Port3LoadComplete},        };            private Dictionary<ModuleName, string> PortLoadFailed = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, Port1LoadFailed},            {ModuleName.LP2, Port2LoadFailed},            {ModuleName.LP3, Port3LoadFailed},        };            private Dictionary<ModuleName, string> PortUnloadComplete = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, Port1UnloadComplete},            {ModuleName.LP2, Port2UnloadComplete},            {ModuleName.LP3, Port3UnloadComplete},        };            private Dictionary<ModuleName, string> PortUnloadFailed = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, Port1UnloadFailed},            {ModuleName.LP2, Port2UnloadFailed},            {ModuleName.LP3, Port3UnloadFailed},        };            private Dictionary<ModuleName, string> PortClamped = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, Port1Clamped},            {ModuleName.LP2, Port2Clamped},            {ModuleName.LP3, Port3Clamped},        };            private Dictionary<ModuleName, string> PortUnclamped = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, Port1Unclamped},            {ModuleName.LP2, Port2Unclamped},            {ModuleName.LP3, Port3Unclamped},        };            private Dictionary<ModuleName, string> PortIDRead = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, Port1IDRead},            {ModuleName.LP2, Port2IDRead},            {ModuleName.LP3, Port3IDRead},        };            private Dictionary<ModuleName, string> PortReadIDFailed = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, Port1ReadIDFailed},            {ModuleName.LP2, Port2ReadIDFailed},            {ModuleName.LP3, Port3ReadIDFailed},        };            private Dictionary<ModuleName, string> PortIDWrite = new Dictionary<ModuleName, string>()            {                {ModuleName.LP1, Port1IDWrite},                {ModuleName.LP2, Port2IDWrite},                {ModuleName.LP3, Port3IDWrite},            };            private Dictionary<ModuleName, string> PortWriteIDFailed = new Dictionary<ModuleName, string>()            {                {ModuleName.LP1, Port1WriteIDFailed},                {ModuleName.LP2, Port2WriteIDFailed},                {ModuleName.LP3, Port3WriteIDFailed},            };            private Dictionary<ModuleName, string> PortTagDataRead = new Dictionary<ModuleName, string>()            {                {ModuleName.LP1, Port1TagDataRead},                {ModuleName.LP2, Port2TagDataRead},                 {ModuleName.LP3, Port3TagDataRead},            };            private Dictionary<ModuleName, string> PortReadTagDataFailed = new Dictionary<ModuleName, string>()            {                {ModuleName.LP1, Port1ReadTagDataFailed},                {ModuleName.LP2, Port2ReadTagDataFailed},                {ModuleName.LP3, Port3ReadTagDataFailed},            };            private Dictionary<ModuleName, string> PortTagDataWrite = new Dictionary<ModuleName, string>()            {                {ModuleName.LP1, Port1TagDataWrite},                {ModuleName.LP2, Port2TagDataWrite},                {ModuleName.LP3, Port3TagDataWrite},            };            private Dictionary<ModuleName, string> PortWriteTagDataFailed = new Dictionary<ModuleName, string>()            {                {ModuleName.LP1, Port1WriteTagDataFailed},                {ModuleName.LP2, Port2WriteTagDataFailed},                {ModuleName.LP3, Port3WriteTagDataFailed},            };            private Dictionary<ModuleName, string> PortId = new Dictionary<ModuleName, string>()        {            {ModuleName.LP1, "1"},            {ModuleName.LP2, "2"},            {ModuleName.LP3, "3"},        };            public LoadPortFACallback()            {                EV.Subscribe(new EventItem("Event", Port1LoadComplete, Port1LoadComplete));                EV.Subscribe(new EventItem("Event", Port1LoadFailed, Port1LoadFailed));                EV.Subscribe(new EventItem("Event", Port1UnloadComplete, Port1UnloadComplete));                EV.Subscribe(new EventItem("Event", Port1UnloadFailed, Port1UnloadFailed));                EV.Subscribe(new EventItem("Event", Port1Clamped, Port1Clamped));                EV.Subscribe(new EventItem("Event", Port1Unclamped, Port1Unclamped));                EV.Subscribe(new EventItem("Event", Port1IDRead, Port1IDRead));                EV.Subscribe(new EventItem("Event", Port1ReadIDFailed, Port1ReadIDFailed));                EV.Subscribe(new EventItem("Event", Port1IDWrite, Port1IDWrite));                EV.Subscribe(new EventItem("Event", Port1WriteIDFailed, Port1WriteIDFailed));                EV.Subscribe(new EventItem("Event", Port1TagDataRead, Port1TagDataRead));                EV.Subscribe(new EventItem("Event", Port1ReadTagDataFailed, Port1ReadTagDataFailed));                EV.Subscribe(new EventItem("Event", Port1TagDataWrite, Port1TagDataWrite));                EV.Subscribe(new EventItem("Event", Port1WriteTagDataFailed, Port1WriteTagDataFailed));                EV.Subscribe(new EventItem("Event", Port2LoadComplete, Port2LoadComplete));                EV.Subscribe(new EventItem("Event", Port2LoadFailed, Port2LoadFailed));                EV.Subscribe(new EventItem("Event", Port2UnloadComplete, Port2UnloadComplete));                EV.Subscribe(new EventItem("Event", Port2UnloadFailed, Port2UnloadFailed));                EV.Subscribe(new EventItem("Event", Port2Clamped, Port2Clamped));                EV.Subscribe(new EventItem("Event", Port2Unclamped, Port2Unclamped));                EV.Subscribe(new EventItem("Event", Port2IDRead, Port2IDRead));                EV.Subscribe(new EventItem("Event", Port2ReadIDFailed, Port2ReadIDFailed));                EV.Subscribe(new EventItem("Event", Port2IDWrite, Port2IDWrite));                EV.Subscribe(new EventItem("Event", Port2WriteIDFailed, Port2WriteIDFailed));                EV.Subscribe(new EventItem("Event", Port2TagDataRead, Port2TagDataRead));                EV.Subscribe(new EventItem("Event", Port2ReadTagDataFailed, Port2ReadTagDataFailed));                EV.Subscribe(new EventItem("Event", Port2TagDataWrite, Port2TagDataWrite));                EV.Subscribe(new EventItem("Event", Port2WriteTagDataFailed, Port2WriteTagDataFailed));                EV.Subscribe(new EventItem("Event", Port3LoadComplete, Port3LoadComplete));                EV.Subscribe(new EventItem("Event", Port3LoadFailed, Port3LoadFailed));                EV.Subscribe(new EventItem("Event", Port3UnloadComplete, Port3UnloadComplete));                EV.Subscribe(new EventItem("Event", Port3UnloadFailed, Port3UnloadFailed));                EV.Subscribe(new EventItem("Event", Port3Clamped, Port3Clamped));                EV.Subscribe(new EventItem("Event", Port3Unclamped, Port3Unclamped));                EV.Subscribe(new EventItem("Event", Port3IDRead, Port3IDRead));                EV.Subscribe(new EventItem("Event", Port3ReadIDFailed, Port3ReadIDFailed));                EV.Subscribe(new EventItem("Event", Port3IDWrite, Port3IDWrite));                EV.Subscribe(new EventItem("Event", Port3WriteIDFailed, Port3WriteIDFailed));                EV.Subscribe(new EventItem("Event", Port3TagDataRead, Port3TagDataRead));                EV.Subscribe(new EventItem("Event", Port3ReadTagDataFailed, Port3ReadTagDataFailed));                EV.Subscribe(new EventItem("Event", Port3TagDataWrite, Port3TagDataWrite));                EV.Subscribe(new EventItem("Event", Port3WriteTagDataFailed, Port3WriteTagDataFailed));            }            public void LoadComplete(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortLoadComplete[moduleName], new SerializableDictionary<string, string>()            {                {DVIDName.PortID, PortId[lp.Module] },            });            }            public void LoadFailed(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortLoadFailed[moduleName], new SerializableDictionary<string, string>()            {                {DVIDName.PortID, PortId[lp.Module] },            });            }            public void UnloadComplete(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortUnloadComplete[moduleName], new SerializableDictionary<string, string>()            {                {DVIDName.PortID, PortId[lp.Module] },            });            }            public void UnloadFailed(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortUnloadFailed[moduleName], new SerializableDictionary<string, string>()            {                {DVIDName.PortID, PortId[lp.Module] },            });            }            public void Clamped(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortClamped[moduleName], new SerializableDictionary<string, string>()            {                {DVIDName.PortID, PortId[lp.Module] },            });            }            public void Unclamped(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortUnclamped[moduleName], new SerializableDictionary<string, string>()            {                {DVIDName.PortID, PortId[lp.Module] },            });            }            public void IDRead(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortIDRead[moduleName], new SerializableDictionary<string, string>()            {                {DVIDName.PortID, PortId[lp.Module] },                {DVIDName.CarrierID, lp.CarrierId },                {DVIDName.LotID, lp.LotId },            });            }            public void ReadIDFailed(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortReadIDFailed[moduleName], new SerializableDictionary<string, string>()            {                {DVIDName.PortID, PortId[lp.Module] },            });            }            public void IDWrite(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortIDWrite[moduleName], new SerializableDictionary<string, string>()                {                    {DVIDName.PortID, PortId[lp.Module] },                    {DVIDName.CarrierID, lp.CarrierId },                });            }            public void WriteIDFailed(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortWriteIDFailed[moduleName], new SerializableDictionary<string, string>()                {                    {DVIDName.PortID, PortId[lp.Module] },                });            }            public void TagDataRead(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortTagDataRead[moduleName], new SerializableDictionary<string, string>()                {                    {DVIDName.PortID, PortId[lp.Module] },                    {DVIDName.TagData, lp.SmartTag },                    {DVIDName.CarrierID, lp.CarrierId },                    {DVIDName.LotID, lp.LotId },                });            }            public void ReadTagDataFailed(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortReadTagDataFailed[moduleName], new SerializableDictionary<string, string>()                {                    {DVIDName.PortID, PortId[lp.Module] },                });            }            public void TagDataWrite(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortTagDataWrite[moduleName], new SerializableDictionary<string, string>()                {                    {DVIDName.PortID, PortId[lp.Module] },                    {DVIDName.CarrierID, lp.CarrierId },                    {DVIDName.TagData, lp.SmartTag },                });            }            public void WriteTagDataFailed(Loadport lp)            {                ModuleName moduleName = lp.Module;                EV.Notify(PortWriteTagDataFailed[moduleName], new SerializableDictionary<string, string>()                {                    {DVIDName.PortID, PortId[lp.Module] },                });            }        }    }}
 |