123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182 |
- using System;
- using System.Collections.Generic;
- using System.Drawing.Drawing2D;
- using System.Linq;
- using System.Xml;
- using Aitex.Common.Util;
- using Aitex.Core.RT.DataCenter;
- using Aitex.Core.RT.Event;
- using Aitex.Core.RT.IOCore;
- using Aitex.Core.RT.Log;
- using Aitex.Core.RT.OperationCenter;
- using Aitex.Core.RT.SCCore;
- using Aitex.Core.Util;
- using MECF.Framework.RT.Core.IoProviders;
- using CyberX8_Core;
- namespace MECF.Framework.Common.IOCore
- {
- public class IoManager : Singleton<IoManager>, IIoBuffer
- {
- private Dictionary<string, DIAccessor> _diMap = new Dictionary<string, DIAccessor>();
- private Dictionary<string, DOAccessor> _doMap = new Dictionary<string, DOAccessor>();
- private Dictionary<string, AIAccessor> _aiMap = new Dictionary<string, AIAccessor>();
- private Dictionary<string, AOAccessor> _aoMap = new Dictionary<string, AOAccessor>();
- private Dictionary<string, Dictionary<int, bool[]>> _diBuffer = new Dictionary<string, Dictionary<int, bool[]>>();
- private Dictionary<string, Dictionary<int, bool[]>> _doBuffer = new Dictionary<string, Dictionary<int, bool[]>>();
- private Dictionary<string, Dictionary<int, short[]>> _aiBuffer = new Dictionary<string, Dictionary<int, short[]>>();
- private Dictionary<string, Dictionary<int, short[]>> _aoBuffer = new Dictionary<string, Dictionary<int, short[]>>();
- private Dictionary<string, List<DIAccessor>> _diList = new Dictionary<string, List<DIAccessor>>();
- private Dictionary<string, List<DOAccessor>> _doList = new Dictionary<string, List<DOAccessor>>();
- private Dictionary<string, List<AIAccessor>> _aiList = new Dictionary<string, List<AIAccessor>>();
- private Dictionary<string, List<AOAccessor>> _aoList = new Dictionary<string, List<AOAccessor>>();
- private Dictionary<string, List<NotifiableIoItem>> _ioItemList = new Dictionary<string, List<NotifiableIoItem>>();
- private PeriodicJob _monitorThread;
- public void Initialize(string interlockConfigFile)
- {
- string reason = string.Empty;
- if (!InterlockManager.Instance.Initialize(interlockConfigFile, _doMap, _diMap, out reason))
- {
- throw new Exception(string.Format("interlock define file found error: \r\n {0}", reason));
- }
- _monitorThread = new PeriodicJob(200, OnTimer, "IO Monitor Thread", true);
- }
- public void Initialize()
- {
- string reason = string.Empty;
- string installedModules = SC.GetStringValue("System.InstalledModules");
- string[] ary= installedModules.Split(',');
- List<string> strList = new List<string>(ary);
- string[] pms = { "PMA", "PMB", "PMC", "PMD" };
- for (int i = 0; i < pms.Length; i++)
- {
- string pmName = pms[i];
- if (installedModules.Contains(pmName))
- {
- JetChamber jetChamber = (JetChamber)SC.GetValue<int>($"{pmName}.ChamberType");
- var InterlockPMConfigFile = PathManager.GetCfgDir() + "PM" + "\\" + jetChamber.ToString() + "\\" + $"{jetChamber.ToString()}Interlock.xml";
- if (!InterlockManager.Instance.Initialize(pmName, InterlockPMConfigFile, _doMap, _diMap, out reason))
- {
- throw new Exception(string.Format($"{pmName} interlock define file found error: \r\n {reason}"));
- }
- }
- }
- if (installedModules.Contains("SETM"))
- {
- var InterlockTMConfigFile = PathManager.GetCfgDir() + "TM" + "\\" + "SETMInterlock.xml";
- if (!InterlockManager.Instance.Initialize("TM", InterlockTMConfigFile, _doMap, _diMap, out reason))
- {
- throw new Exception(string.Format("TM interlock define file found error: \r\n {0}", reason));
- }
- }
- if (strList.Contains("TM"))
- {
- var InterlockTMConfigFile = PathManager.GetCfgDir() + "TM" + "\\" + "TMInterlock.xml";
- if (!InterlockManager.Instance.Initialize("TM", InterlockTMConfigFile, _doMap, _diMap, out reason))
- {
- throw new Exception(string.Format("TM interlock define file found error: \r\n {0}", reason));
- }
- }
- _monitorThread = new PeriodicJob(200, OnTimer, "IO Monitor Thread", true);
- }
- private bool OnTimer()
- {
- try
- {
- InterlockManager.Instance.Monitor();
- }
- catch (Exception ex)
- {
- LOG.WriteExeption(ex);
- }
- return true;
- }
- internal List<Tuple<int, int, string>> GetIONameList(string group, IOType ioType)
- {
- return null;
- }
-
- public bool CanSetDo(string doName, bool onOff, out string reason)
- {
- return InterlockManager.Instance.CanSetDo(doName, onOff, out reason);
- }
- public List<DIAccessor> GetDIList(string source)
- {
- return _diList.ContainsKey(source) ? _diList[source] : null;
- }
- public List<DOAccessor> GetDOList(string source)
- {
- return _doList.ContainsKey(source) ? _doList[source] : null;
- }
- public List<AIAccessor> GetAIList(string source)
- {
- return _aiList.ContainsKey(source) ? _aiList[source] : null;
- }
- public List<AOAccessor> GetAOList(string source)
- {
- return _aoList.ContainsKey(source) ? _aoList[source] : null;
- }
- public IoManager()
- {
- //OP.Subscribe("System.SetDoValue", InvokeSetDo);
- //OP.Subscribe("System.SetAoValue", InvokeSetAo);
- //OP.Subscribe("System.SetAoValue32", InvokeSetAo32);
- //OP.Subscribe("System.SetDoValueWithPrivoder", InvokeSetDoWithPrivoder);
- //OP.Subscribe("System.SetAoValueWithPrivoder", InvokeSetAoWithPrivoder);
- //OP.Subscribe("System.SetAiBuffer", InvokeSetAiBuffer);
- //OP.Subscribe("System.SetDiBuffer", InvokeSetDiBuffer);
- }
- private bool InvokeSetDo(string arg1, object[] args)
- {
- string name = (string) args[0];
- bool setpoint = (bool) args[1];
- string reason;
- if (!CanSetDo(name, setpoint, out reason))
- {
- EV.PostWarningLog("System", $"Can not set DO {name} to {setpoint}, {reason}");
- return false;
- }
- DOAccessor do1 = GetIO<DOAccessor>(name);
- if (do1 == null)
- {
- EV.PostWarningLog("System", $"Can not set DO {name} to {setpoint}, not defined do");
- return false;
- }
- if (!do1.SetValue(setpoint, out reason))
- {
- EV.PostWarningLog("System", $"Can not set DO {name} to {setpoint}, {reason}");
- return false;
- }
- EV.PostInfoLog("System", $"Change DO {name} to {setpoint}");
- return true;
- }
- private bool InvokeSetAo(string arg1, object[] args)
- {
- string name = (string)args[0];
- short setpoint = (short)args[1];
-
- AOAccessor io = GetIO<AOAccessor>(name);
- if (io == null)
- {
- EV.PostWarningLog("System", $"Can not set AO {name} to {setpoint}, not defined do");
- return false;
- }
- io.Value = setpoint;
- EV.PostInfoLog("System", $"Change AO {name} to {setpoint}");
- return true;
- }
- private bool InvokeSetAo32(string arg1, object[] args)
- {
- string name = (string)args[0];
- float setpoint = (float)args[1];
- AOAccessor io = GetIO<AOAccessor>(name);
- if (io == null)
- {
- EV.PostWarningLog("System", $"Can not set AO {name} to {setpoint}, not defined do");
- return false;
- }
- byte[] flow = BitConverter.GetBytes(setpoint);
- int index = io.Index;
- Int16 value1= BitConverter.ToInt16(flow, 0);
- io.Buffer[index] = value1;
- if (io.Index < io.Buffer.Length - 1)
- {
- Int16 value2 = BitConverter.ToInt16(flow, 2);
- io.Buffer[index + 1] = value2;
- }
-
- EV.PostInfoLog("System", $"Change AO {name} to {setpoint}");
- return true;
- }
- private bool InvokeSetDoWithPrivoder(string arg1, object[] args)
- {
- string provider = (string)args[0];
- int offset = (int)args[1];
- string name = (string)args[2];
- bool setpoint = (bool)args[3];
- string reason;
- if (!CanSetDo(name, setpoint, out reason))
- {
- EV.PostWarningLog("System", $"Can not set DO {provider}.{name} to {setpoint}, {reason}");
- return false;
- }
- var doList = GetDOList(provider);
- if(doList == null)
- {
- EV.PostWarningLog("System", $"Can not set DO {provider}.{name} to {setpoint}, {reason}");
- return false;
- }
- var doAccessor = doList.FirstOrDefault(x => x.Name == name);
- if(doAccessor == default(DOAccessor))
- {
- EV.PostWarningLog("System", $"Can not set DO {provider}.{name} to {setpoint}, {reason}");
- return false;
- }
- if (!doAccessor.SetValue(setpoint, out reason))
- {
- EV.PostWarningLog("System", $"Can not set DO {provider}.{name} to {setpoint}, {reason}");
- return false;
- }
- EV.PostInfoLog("System", $"Change DO {provider}.{name} to {setpoint}");
- return true;
- }
- private bool InvokeSetAiBuffer(string arg1, object[] args)
- {
- string provider = (string)args[0];
- int offset = (int)args[1];
- short[] buffer = (short [])args[2];
- SetAiBuffer(provider, offset, buffer);
- return true;
- }
- private bool InvokeSetDiBuffer(string arg1, object[] args)
- {
- string provider = (string)args[0];
- int offset = (int)args[1];
- bool[] buffer = (bool[])args[2];
- SetDiBuffer(provider, offset, buffer);
- return true;
- }
- private bool InvokeSetAoWithPrivoder(string arg1, object[] args)
- {
- string provider = (string)args[0];
- int offset = (int)args[1];
- string name = (string)args[2];
- float setpoint = (float)args[3];
- string reason = "";
- var aoList = GetAOList(provider);
- if (aoList == null)
- {
- EV.PostWarningLog("System", $"Can not set AO {provider}.{name} to {setpoint}, {reason}");
- return false;
- }
- var aoAccessor = aoList.FirstOrDefault(x => x.Name == name);
- if (aoAccessor == default(AOAccessor))
- {
- EV.PostWarningLog("System", $"Can not set AO {provider}.{name} to {setpoint}, {reason}");
- return false;
- }
- aoAccessor.Value = (short)setpoint;
- EV.PostInfoLog("System", $"Change DO {provider}.{name} to {setpoint}");
- return true;
- }
-
- public T GetIO<T>(string name) where T : class
- {
- if (typeof(T) == typeof(DIAccessor) && _diMap.ContainsKey(name))
- {
- return _diMap[name] as T;
- }
- if (typeof(T) == typeof(DOAccessor) && _doMap.ContainsKey(name))
- {
- return _doMap[name] as T;
- }
- if (typeof(T) == typeof(AIAccessor) && _aiMap.ContainsKey(name))
- {
- return _aiMap[name] as T;
- }
- if (typeof(T) == typeof(AOAccessor) && _aoMap.ContainsKey(name))
- {
- return _aoMap[name] as T;
- }
- return null;
- }
- public Dictionary<int, bool[]> GetDiBuffer(string source)
- {
- if (_diBuffer.ContainsKey(source))
- {
- return _diBuffer[source];
- }
- return null;
- }
- public Dictionary<int, bool[]> GetDoBuffer(string source)
- {
- if (_doBuffer.ContainsKey(source))
- {
- return _doBuffer[source];
- }
- return null;
- }
- public Dictionary<int, short[]> GetAiBuffer(string source)
- {
- if (_aiBuffer.ContainsKey(source))
- {
- return _aiBuffer[source];
- }
- return null;
- }
- public Dictionary<int, short[]> GetAoBuffer(string source)
- {
- if (_aoBuffer.ContainsKey(source))
- {
- return _aoBuffer[source];
- }
- return null;
- }
- public void SetDiBuffer(string source, int offset, bool[] buffer)
- {
- if (_diBuffer.ContainsKey(source) && _diBuffer[source].ContainsKey(offset))
- {
- for (int i = 0; i < buffer.Length && i < _diBuffer[source][offset].Length; i++)
- {
- _diBuffer[source][offset][i] = buffer[i];
- }
- }
- }
- public void SetAiBuffer(string source, int offset, short[] buffer, int skipSize = 0)
- {
- if (_aiBuffer.ContainsKey(source) && _aiBuffer[source].ContainsKey(offset))
- {
- for (int i = 0; i < buffer.Length && i < _aiBuffer[source][offset].Length; i++)
- {
- _aiBuffer[source][offset][i + skipSize] = buffer[i];
- }
- }
- }
- public void SetDoBuffer(string source, int offset, bool[] buffer)
- {
- if (_doBuffer.ContainsKey(source) && _doBuffer[source].ContainsKey(offset))
- {
- for (int i = 0; i < buffer.Length && i < _doBuffer[source][offset].Length; i++)
- {
- _doBuffer[source][offset][i] = buffer[i];
- }
- }
- }
- public void SetAoBuffer(string source, int offset, short[] buffer)
- {
- if (_aoBuffer.ContainsKey(source) && _aoBuffer[source].ContainsKey(offset))
- {
- for (int i = 0; i < buffer.Length && i < _aoBuffer[source][offset].Length; i++)
- {
- _aoBuffer[source][offset][i] = buffer[i];
- }
- }
- }
- //spin recipe set
- public void SetAoBuffer(string source, int offset, short[] buffer, int bufferStartIndex)
- {
- if (_aoBuffer.ContainsKey(source) && _aoBuffer[source].ContainsKey(offset) && _aoBuffer[source][offset].Length > bufferStartIndex)
- {
- for (int i = 0; i < buffer.Length && bufferStartIndex + i < _aoBuffer[source][offset].Length; i++)
- {
- _aoBuffer[source][offset][bufferStartIndex + i] = buffer[i];
- }
- }
- }
- public void SetBufferBlock(string provider, List<IoBlockItem> lstBlocks)
- {
- foreach (var ioBlockItem in lstBlocks)
- {
- switch (ioBlockItem.Type)
- {
- case IoType.AI:
- if (!_aiBuffer.ContainsKey(provider))
- {
- _aiBuffer[provider] = new Dictionary<int, short[]>();
- }
- if (!_aiBuffer[provider].ContainsKey(ioBlockItem.Offset))
- {
- _aiBuffer[provider][ioBlockItem.Offset] = new short[ioBlockItem.Size];
- }
- break;
- case IoType.AO:
- if (!_aoBuffer.ContainsKey(provider))
- {
- _aoBuffer[provider] = new Dictionary<int, short[]>();
- }
- if (!_aoBuffer[provider].ContainsKey(ioBlockItem.Offset))
- {
- _aoBuffer[provider][ioBlockItem.Offset] = new short[ioBlockItem.Size];
- }
- break;
- case IoType.DI:
- if (!_diBuffer.ContainsKey(provider))
- {
- _diBuffer[provider] = new Dictionary<int, bool[]>();
- }
- if (!_diBuffer[provider].ContainsKey(ioBlockItem.Offset))
- {
- _diBuffer[provider][ioBlockItem.Offset] = new bool[ioBlockItem.Size];
- }
- break;
- case IoType.DO:
- if (!_doBuffer.ContainsKey(provider))
- {
- _doBuffer[provider] = new Dictionary<int, bool[]>();
- }
- if (!_doBuffer[provider].ContainsKey(ioBlockItem.Offset))
- {
- _doBuffer[provider][ioBlockItem.Offset] = new bool[ioBlockItem.Size];
- }
- break;
- }
- }
- }
- List<NotifiableIoItem> SubscribeDiData()
- {
- List<NotifiableIoItem> result = new List<NotifiableIoItem>();
- foreach (var ioDefine in _diMap)
- {
- NotifiableIoItem di = new NotifiableIoItem()
- {
- Address = ioDefine.Value.Addr,
- Name = ioDefine.Value.Name,
- Description = ioDefine.Value.Description,
- Index = ioDefine.Value.Index,
- BoolValue = ioDefine.Value.Value,
- Provider = ioDefine.Value.Provider,
- BlockOffset = ioDefine.Value.BlockOffset,
- BlockIndex = ioDefine.Value.Index,
- };
- result.Add(di);
- }
- return result;
- }
- List<NotifiableIoItem> SubscribeDoData()
- {
- List<NotifiableIoItem> result = new List<NotifiableIoItem>();
- foreach (var ioDefine in _doMap)
- {
- NotifiableIoItem io = new NotifiableIoItem()
- {
- Address = ioDefine.Value.Addr,
- Name = ioDefine.Value.Name,
- Description = ioDefine.Value.Description,
- Index = ioDefine.Value.Index,
- BoolValue = ioDefine.Value.Value,
- Provider = ioDefine.Value.Provider,
- BlockOffset = ioDefine.Value.BlockOffset,
- BlockIndex = ioDefine.Value.Index,
- };
- result.Add(io);
- }
- return result;
- }
- List<NotifiableIoItem> SubscribeAiData()
- {
- List<NotifiableIoItem> result = new List<NotifiableIoItem>();
- foreach (var ioDefine in _aiMap)
- {
- NotifiableIoItem di = new NotifiableIoItem()
- {
- Address = ioDefine.Value.Addr,
- Name = ioDefine.Value.Name,
- Description = ioDefine.Value.Description,
- Index = ioDefine.Value.Index,
- ShortValue = ioDefine.Value.Value,
- Provider = ioDefine.Value.Provider,
- BlockOffset = ioDefine.Value.BlockOffset,
- BlockIndex = ioDefine.Value.Index,
- };
- result.Add(di);
- }
- return result;
- }
- List<NotifiableIoItem> SubscribeAoData()
- {
- List<NotifiableIoItem> result = new List<NotifiableIoItem>();
- foreach (var ioDefine in _aoMap)
- {
- NotifiableIoItem ao = new NotifiableIoItem()
- {
- Address = ioDefine.Value.Addr,
- Name = ioDefine.Value.Name,
- Description = ioDefine.Value.Description,
- Index = ioDefine.Value.Index,
- ShortValue = ioDefine.Value.Value,
- Provider = ioDefine.Value.Provider,
- BlockOffset = ioDefine.Value.BlockOffset,
- BlockIndex = ioDefine.Value.Index,
- };
- result.Add(ao);
- }
- return result;
- }
-
- public void SetIoMap(string provider, int blockOffset, List<DIAccessor> ioList)
- {
- SubscribeIoItemList(provider);
- var scConfig = SC.GetConfigItem("System.IsIgnoreSaveDB");
- var isIgnoreSaveDB = scConfig != null && scConfig.BoolValue;
- foreach (var accessor in ioList)
- {
- accessor.Provider = provider;
- accessor.BlockOffset = blockOffset;
- _diMap[accessor.Name] = accessor;
- if (!_diList.ContainsKey(provider))
- _diList[provider] = new List<DIAccessor>();
- _diList[provider].Add(accessor);
- _ioItemList[$"{provider}.DIItemList"].Add(new NotifiableIoItem()
- {
- Address = accessor.Addr,
- Name = accessor.Name,
- Description = accessor.Description,
- Index = accessor.Index,
- Provider = provider,
- BlockOffset = blockOffset,
- BlockIndex = accessor.BlockOffset,
- });
- if (isIgnoreSaveDB)
- {
- DATA.Subscribe($"IO.{accessor.Name}", () => accessor.Value, SubscriptionAttribute.FLAG.IgnoreSaveDB);
- }
- else
- {
- DATA.Subscribe($"IO.{accessor.Name}", () => accessor.Value);
- }
- }
- }
- public void SetIoMap(string provider, int blockOffset, List<DOAccessor> ioList)
- {
- SubscribeIoItemList(provider);
- var scConfig = SC.GetConfigItem("System.IsIgnoreSaveDB");
- var isIgnoreSaveDB = scConfig != null && scConfig.BoolValue;
- foreach (var accessor in ioList)
- {
- accessor.Provider = provider;
- accessor.BlockOffset = blockOffset;
- _doMap[accessor.Name] = accessor;
- if (!_doList.ContainsKey(provider))
- _doList[provider] = new List<DOAccessor>();
- _doList[provider].Add(accessor);
- _ioItemList[$"{provider}.DOItemList"].Add(new NotifiableIoItem()
- {
- Address = accessor.Addr,
- Name = accessor.Name,
- Description = accessor.Description,
- Index = accessor.Index,
- Provider = provider,
- BlockOffset = blockOffset,
- BlockIndex = accessor.BlockOffset,
- });
- if (isIgnoreSaveDB)
- {
- DATA.Subscribe($"IO.{accessor.Name}", () => accessor.Value, SubscriptionAttribute.FLAG.IgnoreSaveDB);
- }
- else
- {
- DATA.Subscribe($"IO.{accessor.Name}", () => accessor.Value);
- }
- }
- }
- public void SetIoMap(string provider, int blockOffset, List<AIAccessor> ioList)
- {
- SubscribeIoItemList(provider);
- var scConfig = SC.GetConfigItem("System.IsIgnoreSaveDB");
- var isIgnoreSaveDB = scConfig != null && scConfig.BoolValue;
- foreach (var accessor in ioList)
- {
- accessor.Provider = provider;
- accessor.BlockOffset = blockOffset;
- _aiMap[accessor.Name] = accessor;
- if (!_aiList.ContainsKey(provider))
- _aiList[provider] = new List<AIAccessor>();
- _aiList[provider].Add(accessor);
- _ioItemList[$"{provider}.AIItemList"].Add(new NotifiableIoItem()
- {
- Address = accessor.Addr,
- Name = accessor.Name,
- Description = accessor.Description,
- Index = accessor.Index,
- Provider = provider,
- BlockOffset = blockOffset,
- BlockIndex = accessor.BlockOffset,
- });
- if (isIgnoreSaveDB)
- {
- DATA.Subscribe($"IO.{accessor.Name}", () => accessor.Value, SubscriptionAttribute.FLAG.IgnoreSaveDB);
- DATA.Subscribe($"IO32.{accessor.Name}", () =>
- {
- if (accessor.Index < accessor.Buffer.Length - 1)
- {
- byte[] high = BitConverter.GetBytes(accessor.Buffer[accessor.Index]);
- byte[] low = BitConverter.GetBytes(accessor.Buffer[accessor.Index + 1]);
- return BitConverter.ToSingle(new[] { high[0], high[1], low[0], low[1] }, 0);
- }
- else
- {
- return accessor.Value;
- }
- }, SubscriptionAttribute.FLAG.IgnoreSaveDB);
- }
- else
- {
- DATA.Subscribe($"IO.{accessor.Name}", () => accessor.Value);
- DATA.Subscribe($"IO32.{accessor.Name}", () =>
- {
- if (accessor.Index < accessor.Buffer.Length - 1)
- {
- byte[] high = BitConverter.GetBytes(accessor.Buffer[accessor.Index]);
- byte[] low = BitConverter.GetBytes(accessor.Buffer[accessor.Index + 1]);
- return BitConverter.ToSingle(new[] { high[0], high[1], low[0], low[1] }, 0);
- }
- else
- {
- return accessor.Value;
- }
- });
- }
- }
- }
- public void SetIoMap(string provider, int blockOffset, List<AOAccessor> ioList)
- {
- SubscribeIoItemList(provider);
- var scConfig = SC.GetConfigItem("System.IsIgnoreSaveDB");
- var isIgnoreSaveDB = scConfig != null && scConfig.BoolValue;
- foreach (var accessor in ioList)
- {
- accessor.Provider = provider;
- accessor.BlockOffset = blockOffset;
- _aoMap[accessor.Name] = accessor;
- if (!_aoList.ContainsKey(provider))
- _aoList[provider] = new List<AOAccessor>();
- _aoList[provider].Add(accessor);
- _ioItemList[$"{provider}.AOItemList"].Add(new NotifiableIoItem()
- {
- Address = accessor.Addr,
- Name = accessor.Name,
- Description = accessor.Description,
- Index = accessor.Index,
- Provider = provider,
- BlockOffset = blockOffset,
- BlockIndex = accessor.BlockOffset,
- });
- if (isIgnoreSaveDB)
- {
- DATA.Subscribe($"IO.{accessor.Name}", () => accessor.Value,SubscriptionAttribute.FLAG.IgnoreSaveDB);
- DATA.Subscribe($"IO32.{accessor.Name}", () =>
- {
- if (accessor.Index < accessor.Buffer.Length - 1)
- {
- byte[] high = BitConverter.GetBytes(accessor.Buffer[accessor.Index]);
- byte[] low = BitConverter.GetBytes(accessor.Buffer[accessor.Index + 1]);
- return BitConverter.ToSingle(new[] { high[0], high[1], low[0], low[1] }, 0);
- }
- else
- {
- return accessor.Value;
- }
- }, SubscriptionAttribute.FLAG.IgnoreSaveDB);
- }
- else
- {
- DATA.Subscribe($"IO.{accessor.Name}", () => accessor.Value);
- DATA.Subscribe($"IO32.{accessor.Name}", () =>
- {
- if (accessor.Index < accessor.Buffer.Length - 1)
- {
- byte[] high = BitConverter.GetBytes(accessor.Buffer[accessor.Index]);
- byte[] low = BitConverter.GetBytes(accessor.Buffer[accessor.Index + 1]);
- return BitConverter.ToSingle(new[] { high[0], high[1], low[0], low[1] }, 0);
- }
- else
- {
- return accessor.Value;
- }
- });
- }
- }
- }
- public void SetIoMap(string provider, int blockOffset, string xmlPathFile, string module="")
- {
- SubscribeIoItemList(provider);
- XmlDocument xml = new XmlDocument();
- xml.Load(xmlPathFile);
-
- XmlNodeList lstDi = xml.SelectNodes("IO_DEFINE/Dig_In/DI_ITEM");
- var scConfig = SC.GetConfigItem("System.IsIgnoreSaveDB");
- var isIgnoreSaveDB = scConfig == null ? false : scConfig.BoolValue;
- //<DI_ITEM Index="0" Name="" BufferOffset="0" Addr="0" Description=""/>
- List<DIAccessor> diList = new List<DIAccessor>();
- foreach (var diItem in lstDi)
- {
- XmlElement element = diItem as XmlElement;
- if (element == null)
- continue;
- string index = element.GetAttribute("Index");
- string bufferOffset = element.GetAttribute("BufferOffset");
- if (string.IsNullOrEmpty(bufferOffset))
- bufferOffset = index;
- string name = element.GetAttribute("Name");
- string address = element.GetAttribute("Addr");
- string description = element.GetAttribute("Description");
- if (string.IsNullOrEmpty(name) || string.IsNullOrEmpty(index) || string.IsNullOrEmpty(bufferOffset))
- continue;
- name = name.Trim();
- index = index.Trim();
- bufferOffset = bufferOffset.Trim();
- string moduleName = string.IsNullOrEmpty(module) ? name : $"{module}.{name}";
- int intIndex;
- if (!int.TryParse(index, out intIndex))
- continue;
- int intBufferOffset;
- if (!int.TryParse(bufferOffset, out intBufferOffset))
- continue;
- if (!_diBuffer.ContainsKey(provider) || !_diBuffer[provider].ContainsKey(blockOffset))
- {
- throw new Exception("Not defined DI buffer from IO provider, " + provider);
- }
- DIAccessor diAccessor = new DIAccessor(moduleName, intBufferOffset, _diBuffer[provider][blockOffset], _diBuffer[provider][blockOffset]);
- diAccessor.IoTableIndex = intIndex;
- diAccessor.Addr = address;
- diAccessor.Provider = provider;
- diAccessor.BlockOffset = blockOffset;
- diAccessor.Description = description;
- diList.Add(diAccessor);
- _diMap[moduleName] = diAccessor;
- if (!_diList.ContainsKey(provider))
- _diList[provider] = new List<DIAccessor>();
- _diList[provider].Add(diAccessor);
- _ioItemList[$"{provider}.DIItemList"].Add(new NotifiableIoItem()
- {
- Address = address,
- Name = moduleName,
- Description = description,
- Index = intIndex,
- Provider = provider,
- BlockOffset = blockOffset,
- BlockIndex = intIndex,
- });
- if (isIgnoreSaveDB)
- {
- DATA.Subscribe($"IO.{moduleName}", () => diAccessor.Value, SubscriptionAttribute.FLAG.IgnoreSaveDB);
- }
- else
- {
- DATA.Subscribe($"IO.{moduleName}", () => diAccessor.Value);
- }
- }
- XmlNodeList lstDo = xml.SelectNodes("IO_DEFINE/Dig_Out/DO_ITEM");
- // < DO_ITEM Index = "0" BufferOffset="0" Name = "" Addr = "0" Description = "" />
- foreach (var doItem in lstDo)
- {
- XmlElement element = doItem as XmlElement;
- if (element == null)
- continue;
- string index = element.GetAttribute("Index");
- string bufferOffset = element.GetAttribute("BufferOffset");
- if (string.IsNullOrEmpty(bufferOffset))
- bufferOffset = index;
- string name = element.GetAttribute("Name");
- string address = element.GetAttribute("Addr");
- string description = element.GetAttribute("Description");
- if (string.IsNullOrEmpty(name) || string.IsNullOrEmpty(index) || string.IsNullOrEmpty(bufferOffset))
- continue;
- name = name.Trim();
- index = index.Trim();
- bufferOffset = bufferOffset.Trim();
- string moduleName = string.IsNullOrEmpty(module) ? name : $"{module}.{name}";
- int intIndex;
- if (!int.TryParse(index, out intIndex))
- continue;
- int intBufferOffset;
- if (!int.TryParse(bufferOffset, out intBufferOffset))
- continue;
- if (!_doBuffer.ContainsKey(provider) || !_doBuffer[provider].ContainsKey(blockOffset))
- {
- throw new Exception("Not defined DO buffer from IO provider, " + provider);
- }
- DOAccessor doAccessor = new DOAccessor(moduleName, intBufferOffset, _doBuffer[provider][blockOffset]);
- _doMap[moduleName] = doAccessor;
- doAccessor.IoTableIndex = intIndex;
- doAccessor.Addr = address;
- doAccessor.Provider = provider;
- doAccessor.BlockOffset = blockOffset;
- doAccessor.Description = description;
- if (!_doList.ContainsKey(provider))
- _doList[provider] = new List<DOAccessor>();
- _doList[provider].Add(doAccessor);
- _ioItemList[$"{provider}.DOItemList"].Add(new NotifiableIoItem()
- {
- Address = address,
- Name = moduleName,
- Description = description,
- Index = intIndex,
- Provider = provider,
- BlockOffset = blockOffset,
- BlockIndex = intIndex,
- });
- if (isIgnoreSaveDB)
- {
- DATA.Subscribe($"IO.{moduleName}", () => doAccessor.Value,SubscriptionAttribute.FLAG.IgnoreSaveDB);
- }
- else
- {
- DATA.Subscribe($"IO.{moduleName}", () => doAccessor.Value);
- }
-
- }
- XmlNodeList lstAo = xml.SelectNodes("IO_DEFINE/Ana_Out/AO_ITEM");
- // < AO_ITEM Index = "0" BufferOffset="0" Name = "" Addr = "0" Description = "" />
- foreach (var aoItem in lstAo)
- {
- XmlElement element = aoItem as XmlElement;
- if (element == null)
- continue;
- string index = element.GetAttribute("Index");
- string bufferOffset = element.GetAttribute("BufferOffset");
- if (string.IsNullOrEmpty(bufferOffset))
- bufferOffset = index;
- string name = element.GetAttribute("Name");
- string address = element.GetAttribute("Addr");
- string description = element.GetAttribute("Description");
- if (string.IsNullOrEmpty(name) || string.IsNullOrEmpty(index) || string.IsNullOrEmpty(bufferOffset))
- continue;
- name = name.Trim();
- index = index.Trim();
- bufferOffset = bufferOffset.Trim();
- string moduleName = string.IsNullOrEmpty(module) ? name : $"{module}.{name}";
- int intIndex;
- if (!int.TryParse(index, out intIndex))
- continue;
- int intBufferOffset;
- if (!int.TryParse(bufferOffset, out intBufferOffset))
- continue;
- if (!_aoBuffer.ContainsKey(provider) || !_aoBuffer[provider].ContainsKey(blockOffset))
- {
- throw new Exception("Not defined AO buffer from IO provider, " + provider);
- }
- AOAccessor aoAccessor = new AOAccessor(moduleName, intBufferOffset, _aoBuffer[provider][blockOffset]);
- _aoMap[moduleName] = aoAccessor;
- aoAccessor.IoTableIndex = intIndex;
- aoAccessor.Addr = address;
- aoAccessor.Provider = provider;
- aoAccessor.BlockOffset = blockOffset;
- aoAccessor.Description = description;
- if (!_aoList.ContainsKey(provider))
- _aoList[provider] = new List<AOAccessor>();
- _aoList[provider].Add(aoAccessor);
- _ioItemList[$"{provider}.AOItemList"].Add(new NotifiableIoItem()
- {
- Address = address,
- Name = moduleName,
- Description = description,
- Index = intIndex,
- Provider = provider,
- BlockOffset = blockOffset,
- BlockIndex = intIndex,
- });
- if (isIgnoreSaveDB)
- {
- DATA.Subscribe($"IO.{moduleName}", () => aoAccessor.Value,SubscriptionAttribute.FLAG.IgnoreSaveDB);
- DATA.Subscribe($"IO32.{moduleName}", () =>
- {
- if (aoAccessor.Index < aoAccessor.Buffer.Length - 1)
- {
- byte[] high = BitConverter.GetBytes(aoAccessor.Buffer[aoAccessor.Index]);
- byte[] low = BitConverter.GetBytes(aoAccessor.Buffer[aoAccessor.Index + 1]);
- return BitConverter.ToSingle(new[] { high[0], high[1], low[0], low[1] }, 0);
- }
- else
- {
- return aoAccessor.Value;
- }
- },SubscriptionAttribute.FLAG.IgnoreSaveDB);
- }
- else
- {
- DATA.Subscribe($"IO.{moduleName}", () => aoAccessor.Value);
- DATA.Subscribe($"IO32.{moduleName}", () =>
- {
- if (aoAccessor.Index < aoAccessor.Buffer.Length - 1)
- {
- byte[] high = BitConverter.GetBytes(aoAccessor.Buffer[aoAccessor.Index]);
- byte[] low = BitConverter.GetBytes(aoAccessor.Buffer[aoAccessor.Index + 1]);
- return BitConverter.ToSingle(new[] { high[0], high[1], low[0], low[1] }, 0);
- }
- else
- {
- return aoAccessor.Value;
- }
- });
- }
- }
- XmlNodeList lstAi = xml.SelectNodes("IO_DEFINE/Ana_In/AI_ITEM");
- // < AO_ITEM Index = "0" BufferOffset="0" Name = "" Addr = "0" Description = "" />
- foreach (var aiItem in lstAi)
- {
- XmlElement element = aiItem as XmlElement;
- if (element == null)
- continue;
- string index = element.GetAttribute("Index");
- string bufferOffset = element.GetAttribute("BufferOffset");
- if (string.IsNullOrEmpty(bufferOffset))
- bufferOffset = index;
- string name = element.GetAttribute("Name");
- string address = element.GetAttribute("Addr");
- string description = element.GetAttribute("Description");
- if (string.IsNullOrEmpty(name) || string.IsNullOrEmpty(index) || string.IsNullOrEmpty(bufferOffset))
- continue;
- name = name.Trim();
- index = index.Trim();
- bufferOffset = bufferOffset.Trim();
- string moduleName = string.IsNullOrEmpty(module) ? name : $"{module}.{name}";
- int intIndex;
- if (!int.TryParse(index, out intIndex))
- continue;
- int intBufferOffset;
- if (!int.TryParse(bufferOffset, out intBufferOffset))
- continue;
- if (!_aiBuffer.ContainsKey(provider) || !_aiBuffer[provider].ContainsKey(blockOffset))
- {
- throw new Exception("Not defined AI buffer from IO provider, " + provider);
- }
- AIAccessor aiAccessor = new AIAccessor(moduleName, intBufferOffset, _aiBuffer[provider][blockOffset]);
- _aiMap[moduleName] = aiAccessor;
- aiAccessor.IoTableIndex = intIndex;
- aiAccessor.Addr = address;
- aiAccessor.Provider = provider;
- aiAccessor.BlockOffset = blockOffset;
- aiAccessor.Description = description;
- if (!_aiList.ContainsKey(provider))
- _aiList[provider] = new List<AIAccessor>();
- _aiList[provider].Add(aiAccessor);
- _ioItemList[$"{provider}.AIItemList"].Add(new NotifiableIoItem()
- {
- Address = address,
- Name = moduleName,
- Description = description,
- Index = intIndex,
- Provider = provider,
- BlockOffset = blockOffset,
- BlockIndex = intIndex,
- });
- if (isIgnoreSaveDB)
- {
- DATA.Subscribe($"IO.{moduleName}", () => aiAccessor.Value, SubscriptionAttribute.FLAG.IgnoreSaveDB);
- DATA.Subscribe($"IO32.{moduleName}", () =>
- {
- if (aiAccessor.Index < aiAccessor.Buffer.Length - 1)
- {
- byte[] high = BitConverter.GetBytes(aiAccessor.Buffer[aiAccessor.Index]);
- byte[] low = BitConverter.GetBytes(aiAccessor.Buffer[aiAccessor.Index + 1]);
- return BitConverter.ToSingle(new[] { high[0], high[1], low[0], low[1] }, 0);
- }
- else
- {
- return aiAccessor.Value;
- }
- }, SubscriptionAttribute.FLAG.IgnoreSaveDB);
- }
- else
- {
- DATA.Subscribe($"IO.{moduleName}", () => aiAccessor.Value);
- DATA.Subscribe($"IO32.{moduleName}", () =>
- {
- if (aiAccessor.Index < aiAccessor.Buffer.Length - 1)
- {
- byte[] high = BitConverter.GetBytes(aiAccessor.Buffer[aiAccessor.Index]);
- byte[] low = BitConverter.GetBytes(aiAccessor.Buffer[aiAccessor.Index + 1]);
- return BitConverter.ToSingle(new[] { high[0], high[1], low[0], low[1] }, 0);
- }
- else
- {
- return aiAccessor.Value;
- }
- });
- }
- }
- }
- public void SetIoMap(string provider, Dictionary<int, string> ioMappingPathFile)
- {
- foreach (var map in ioMappingPathFile)
- {
- SetIoMap(provider, map.Key, map.Value);
- }
- DATA.Subscribe(provider, "DIList", SubscribeDiData);
- DATA.Subscribe(provider, "DOList", SubscribeDoData);
- DATA.Subscribe(provider, "AIList", SubscribeAiData);
- DATA.Subscribe(provider, "AOList", SubscribeAoData);
- }
- public void SetIoMapByModule(string provider, int offset, string ioMappingPathFile, string module)
- {
- SetIoMap(provider, offset, ioMappingPathFile, module);
- DATA.Subscribe(provider, "DIList", SubscribeDiData);
- DATA.Subscribe(provider, "DOList", SubscribeDoData);
- DATA.Subscribe(provider, "AIList", SubscribeAiData);
- DATA.Subscribe(provider, "AOList", SubscribeAoData);
- }
- private void SubscribeIoItemList(string provider)
- {
- string diKey = $"{provider}.DIItemList";
- if (!_ioItemList.ContainsKey(diKey))
- {
- _ioItemList[diKey] = new List<NotifiableIoItem>();
- DATA.Subscribe(diKey, () => _ioItemList[diKey]);
- }
- string doKey = $"{provider}.DOItemList";
- if (!_ioItemList.ContainsKey(doKey))
- {
- _ioItemList[doKey] = new List<NotifiableIoItem>();
- DATA.Subscribe(doKey, () => _ioItemList[doKey]);
- }
- string aiKey = $"{provider}.AIItemList";
- if (!_ioItemList.ContainsKey(aiKey))
- {
- _ioItemList[aiKey] = new List<NotifiableIoItem>();
- DATA.Subscribe(aiKey, () => _ioItemList[aiKey]);
- }
- string aoKey = $"{provider}.AOItemList";
- if (!_ioItemList.ContainsKey(aoKey))
- {
- _ioItemList[aoKey] = new List<NotifiableIoItem>();
- DATA.Subscribe(aoKey, () => _ioItemList[aoKey]);
- }
- }
- }
- }
|