123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931 |
- using Aitex.Common.Util;
- using Aitex.Core.RT.DataCenter;
- using Aitex.Core.RT.Event;
- using Aitex.Core.RT.Log;
- using Aitex.Core.Util;
- using Aitex.Core.Utilities;
- using MECF.Framework.Common.Equipment;
- using MECF.Framework.Common.SCCore;
- using MECF.Framework.Common.Utilities;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Xml;
- using System.Xml.Serialization;
- namespace MECF.Framework.Common.FAServices
- {
- /// <summary>
- /// 所有ID 的命名规则:
- ///
- /// Module(1-399) + (Type+Unit)(1-999) + Parameter (1-9999)
- ///
- /// 最小 1 001 0001 = 10010001
- ///
- /// 最大 399 999 9999 = 3 999 999 999
- ///
- /// "PPP" 一部分的就是按参数 module=1, type=1, unit=1, parameter="AAA"
- ///
- ///
- /// </summary>
- ///
- ///
- public class VIDGenerator2
- {
- public string Type { get; set; }
- public string SourceFileName { get; set; }
- public List<VIDItem> VIDList = new List<VIDItem>();
- public Dictionary<string, int> _moduleIndex = new Dictionary<string, int>();
- public Dictionary<string, Dictionary<string, Dictionary<string, long>>> moduleTypeParamIndex = new Dictionary<string, Dictionary<string, Dictionary<string, long>>>();
- public Dictionary<string, long> _index = new Dictionary<string, long>();
- private string _defaultPathFile;
- private string _type;
- public VIDGenerator2(string type, string defaultPathFile)
- {
- _type = type;
- _defaultPathFile = defaultPathFile;
- }
- public void Initialize()
- {
- XmlDocument xml = new XmlDocument();
- try
- {
- EnumLoop<ModuleName>.ForEach((item) =>
- {
- moduleTypeParamIndex[item.ToString()] = new Dictionary<string, Dictionary<string, long>>();
- });
- xml.Load(_defaultPathFile);
- VIDList = CustomXmlSerializer.Deserialize<List<VIDItem>>(xml.OuterXml);
- foreach (var VIDItem in VIDList)
- {
- //_moduleTypeIndex[VIDItem.Type] = VIDItem.TypeIndex;
- //_moduleTypeUnitIndex[VIDItem.Unit] = VIDItem.UnitIndex;
- //_parameterIndex[VIDItem.Parameter] = VIDItem.ParameterIndex;
- if (!moduleTypeParamIndex.ContainsKey(VIDItem.Module))
- {
- moduleTypeParamIndex[VIDItem.Module] = new Dictionary<string, Dictionary<string, long>>();
- }
- if (!moduleTypeParamIndex[VIDItem.Module].ContainsKey(VIDItem.Type + VIDItem.Unit))
- {
- moduleTypeParamIndex[VIDItem.Module][VIDItem.Type + VIDItem.Unit] = new Dictionary<string, long>();
- }
- moduleTypeParamIndex[VIDItem.Module][VIDItem.Type + VIDItem.Unit][VIDItem.Parameter] = VIDItem.Index;
- _index[VIDItem.Name] = VIDItem.Index;
- }
- //XmlNodeList itemNodes = xml.SelectNodes("DataItems/DataItem");
- //foreach (var itemNode in itemNodes)
- //{
- // XmlElement element = itemNode as XmlElement;
- // if (element == null)
- // continue;
- // string name = element.GetAttribute("name").Trim();
- // string index = element.GetAttribute("index").Trim();
- // if (string.IsNullOrEmpty(name) || string.IsNullOrEmpty(index) || (index.Length != 9 && index.Length != 8))
- // continue;
- // var item = ParseName(name);
- // _moduleTypeIndex[$"{item.Item1}.{item.Item2}"] = int.Parse(index.Substring(index.Length - 7, 2));
- // _moduleTypeUnitIndex[$"{item.Item1}.{item.Item2}.{item.Item3}"] = int.Parse(index.Substring(index.Length - 5, 2));
- // _parameterIndex[$"{item.Item1}.{item.Item2}.{item.Item3}.{item.Item4}"] =
- // int.Parse(index.Substring(index.Length - 3, 3));
- // if (!_max.ContainsKey($"{item.Item1}"))
- // _max[$"{item.Item1}"] = 0;
- // _max[$"{item.Item1}"] =
- // Math.Max(_moduleTypeIndex[$"{item.Item1}.{item.Item2}"], _max[$"{item.Item1}"]);
- // if (!_max.ContainsKey($"{item.Item1}.{item.Item2}"))
- // _max[$"{item.Item1}.{item.Item2}"] = 0;
- // _max[$"{item.Item1}.{item.Item2}"] =
- // Math.Max(_moduleTypeUnitIndex[$"{item.Item1}.{item.Item2}.{item.Item3}"], _max[$"{item.Item1}.{item.Item2}"]);
- // if (!_max.ContainsKey($"{item.Item1}.{item.Item2}.{item.Item3}"))
- // _max[$"{item.Item1}.{item.Item2}.{item.Item3}"] = 0;
- // _max[$"{item.Item1}.{item.Item2}.{item.Item3}"] =
- // Math.Max(_parameterIndex[$"{item.Item1}.{item.Item2}.{item.Item3}.{item.Item4}"], _max[$"{item.Item1}.{item.Item2}.{item.Item3}"]);
- // _index[name] = int.Parse(index);
- //}
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- }
- EnumLoop<ModuleName>.ForEach((item) =>
- {
- _moduleIndex[item.ToString()] = ((int)item) + 1;
- });
- }
- public Tuple<string, string, string, string> ParseName(string name)
- {
- if (string.IsNullOrEmpty(name))
- return null;
- string module = ModuleName.System.ToString();
- string type = "";
- string unit = "";
- string parameter = "";
- string[] names = name.Split('.');
- if (names.Length >= 1)
- {
- parameter = names[names.Length - 1];
- if (names.Length >= 2)
- {
- if (_moduleIndex.ContainsKey(names[0]))
- {
- module = names[0];
- if (names.Length >= 3)
- {
- unit = names[names.Length - 2];
- if (names.Length >= 4)
- {
- for (int j = 1; j < names.Length - 2; j++)
- {
- type += names[j];
- if (j != names.Length - 3)
- type += ".";
- }
- }
- }
- }
- else
- {
- //module = module;
- unit = names[names.Length - 2];
- if (names.Length >= 3)
- {
- for (int j = 0; j < names.Length - 2; j++)
- {
- type += names[j];
- if (j != names.Length - 3)
- type += ".";
- }
- }
- }
- }
- }
- return Tuple.Create(module, type, unit, parameter);
- }
- public void GenerateId(List<VIDItem> dataList)
- {
- List<VIDItem> newList = new List<VIDItem>();
- foreach (var data in dataList)
- {
- if (!_index.ContainsKey(data.Name))
- newList.Add(data);
- }
- if (newList.Count > 0)
- {
- AssignNewId(newList);
- VIDList = VIDList.Concat(newList).OrderBy(x => x.Index).ToList();
- CustomXmlSerializer.Serialize(VIDList, _defaultPathFile);
- }
- }
- private void AssignNewId(List<VIDItem> dataList)
- {
- if (dataList.Count == 0)
- return;
- dataList = dataList.OrderBy(x => x.Name).ToList();
- foreach (var data in dataList)
- {
- data.Name = data.Name;
- if (!moduleTypeParamIndex.ContainsKey(data.Module))
- {
- moduleTypeParamIndex[data.Module] = new Dictionary<string, Dictionary<string, long>>();
- moduleTypeParamIndex[data.Module][data.Type + data.Unit] = new Dictionary<string, long>();
- data.ModuleIndex = moduleTypeParamIndex.Keys.ToList().FindIndex(x => x == data.Module) + 1;
- data.TypeIndex = 1;
- data.UnitIndex = 1;
- data.ParameterIndex = 1;
- moduleTypeParamIndex[data.Module][data.Type + data.Unit][data.Parameter] = long.Parse($"{ data.ModuleIndex}{data.TypeIndex.ToString().PadLeft(3, '0')}{ data.ParameterIndex.ToString().PadLeft(4, '0')}");
- data.Index = moduleTypeParamIndex[data.Module][data.Type + data.Unit][data.Parameter];
- continue;
- }
- if (!moduleTypeParamIndex[data.Module].ContainsKey(data.Type + data.Unit))
- {
- moduleTypeParamIndex[data.Module][data.Type + data.Unit] = new Dictionary<string, long>();
- data.ModuleIndex = moduleTypeParamIndex.Keys.ToList().FindIndex(x => x == data.Module) + 1;
- data.TypeIndex = moduleTypeParamIndex[data.Module].Count;
- data.UnitIndex = 1;
- data.ParameterIndex = 1;
- moduleTypeParamIndex[data.Module][data.Type + data.Unit][data.Parameter] = long.Parse($"{ data.ModuleIndex}{data.TypeIndex.ToString().PadLeft(3, '0')}{ data.ParameterIndex.ToString().PadLeft(4, '0')}");
- data.Index = moduleTypeParamIndex[data.Module][data.Type + data.Unit][data.Parameter];
- continue;
- }
- moduleTypeParamIndex[data.Module][data.Type + data.Unit][data.Parameter] = moduleTypeParamIndex[data.Module][data.Type + data.Unit].Last().Value + 1;
- data.Index = moduleTypeParamIndex[data.Module][data.Type + data.Unit][data.Parameter];
- }
- //XmlDocument xml = new XmlDocument();
- //try
- //{
- // xml.Load(_defaultPathFile);
- // XmlNode itemNodes = xml.SelectSingleNode("DataItems");
- // itemNodes.RemoveAll();
- // Dictionary<int, string> orderedName = _index.OrderBy(o => o.Value).ToDictionary(p => p.Value, o => o.Key);
- // foreach (var name in orderedName)
- // {
- // XmlElement subNode = xml.CreateElement("DataItem");
- // subNode.SetAttribute("name", name.Value);
- // subNode.SetAttribute("index", name.Key.ToString());
- // itemNodes.AppendChild(subNode);
- // }
- // xml.Save(_defaultPathFile);
- //}
- //catch (Exception ex)
- //{
- // LOG.Write(ex);
- //}
- }
- }
- public class VIDManager2 : Singleton<VIDManager2>
- {
- public void Initialize(string equipName, bool enableGem300Events = false, bool needReGenerateGemModelXml = false)
- {
- if (!System.Diagnostics.Debugger.IsAttached)
- return;
- //SVID
- var svid = new VIDGenerator2("SVID", $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\_SVID.xml");
- svid.Initialize();
- svid.GenerateId(Singleton<DataManager>.Instance.VidDataList);
- ExportSvid(svid.VIDList, true, true);
- //ECID
- var ecid = new VIDGenerator2("ECID", $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\_ECID.xml");
- ecid.Initialize();
- ecid.GenerateId(SystemConfigManager.Instance.VidConfigList);
- ExportEcid(ecid.VIDList);
- //CEID
- List<VIDItem> ceids = new List<VIDItem>();
- foreach (var eventItem in Singleton<EventManager>.Instance.VidEventList)
- {
- if (UniversalEvents.UniversalEventsDictionary.ContainsKey(eventItem.Name))
- {
- ceids.Add(UniversalEvents.UniversalEventsDictionary[eventItem.Name]);
- }
- else if (enableGem300Events && Gem300Events.Gem300EventsDictionary.ContainsKey(eventItem.Name))
- {
- ceids.Add(Gem300Events.Gem300EventsDictionary[eventItem.Name]);
- }
- }
- ceids = ceids.OrderBy(x => x.Index).ToList();
- CustomXmlSerializer.Serialize(ceids, $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\_CEID.xml");
- ExportCeid(ceids);
- //ALID
- var alid = new VIDGenerator2("ALID", $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\_ALID.xml");
- alid.Initialize();
- alid.GenerateId(Singleton<EventManager>.Instance.VidAlarmList);
- ExportAlid(alid.VIDList);
- //DVID, to be designed
- Dictionary<string, VIDItem> dvids = new Dictionary<string, VIDItem>();
- foreach (var eventItem in ceids)
- {
- if (eventItem.LinkableVid == null)
- continue;
- foreach (var LinkableVid in eventItem.LinkableVid)
- {
- string dvidName = ((DataVariables.DataName)LinkableVid).ToString();
- if (DataVariables.DataVariablesDictionary.ContainsKey(dvidName))
- dvids[dvidName] = DataVariables.DataVariablesDictionary[dvidName];
- }
- }
- var dvidList = dvids.Values.ToList().OrderBy(x => x.Index).ToList();
- CustomXmlSerializer.Serialize(dvidList, $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\_DVID.xml");
- ExportDvid(dvidList);
- //ReGenerate GemModel.Xml
- if (needReGenerateGemModelXml)
- ReGenerateGemModelXml(svid.VIDList, ecid.VIDList, dvidList, ceids, alid.VIDList, equipName);
- }
- private List<VIDItem> OriginalSvids = new List<VIDItem>()
- {
- new VIDItem(){Name = "AlarmsEnabled",Index = 1,DataType = "List"},
- new VIDItem(){Name = "AlarmsSet",Index = 2,DataType = "List"},
- new VIDItem(){Name = "Clock",Index = 3,DataType = "Ascii"},
- new VIDItem(){Name = "ControlState",Index = 4,DataType = "U4"},
- new VIDItem(){Name = "EventsEnabled",Index = 5,DataType = "List"},
- new VIDItem(){Name = "PPExecName",Index = 6,DataType = "Ascii"},
- new VIDItem(){Name = "PreviousProcessState",Index = 7,DataType = "U1"},
- new VIDItem(){Name = "ProcessState",Index = 8,DataType = "U1"},
- new VIDItem(){Name = "SpoolCountActual",Index = 9,DataType = "U4"},
- new VIDItem(){Name = "SpoolCountTotal",Index = 10,DataType = "U4"},
- new VIDItem(){Name = "SpoolFullTime",Index = 11,DataType = "Ascii"},
- new VIDItem(){Name = "SpoolStartTime",Index = 12,DataType = "Ascii"},
- new VIDItem(){Name = "SpoolState",Index = 13,DataType = "Ascii"},
- new VIDItem(){Name = "SpoolSubstate",Index = 14,DataType = "Ascii"},
- };
- private List<VIDItem> OriginalEcids = new List<VIDItem>()
- {
- new VIDItem(){Name = "EstablishCommunicationsTimeout",Index = 2000,DataType = "U2",Description = "2"},
- new VIDItem(){Name = "MaxSpoolTransmit",Index = 2001,DataType = "U4",Description = "100"},
- new VIDItem(){Name = "OverWriteSpool",Index = 2003,DataType = "Boolean",Description = "FALSE"},
- new VIDItem(){Name = "MaxSpoolCapacity",Index = 2005,DataType = "U4",Description = "100"},
- new VIDItem(){Name = "SpoolEnabled",Index = 2006,DataType = "Boolean",Description = "False"},
- new VIDItem(){Name = "TimeFormat",Index = 2007,DataType = "U1",Description = "0"},
- };
- private void ExportAlid(List<VIDItem> dataList, bool defaultPath = true, bool createNewFile = false)
- {
- var lists = dataList.OrderBy(x => x.ModuleIndex).ThenBy(x => x.Name).ToList();
- bool? result = defaultPath;
- string savePath = $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\Equipment_VIDs_{DateTime.Now:yyyyMMdd}.xlsx";
- if (!defaultPath)
- {
- Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
- dlg.DefaultExt = ".xlsx"; // Default file extension
- dlg.FileName = $"Equipment_VIDs_{DateTime.Now:yyyyMMdd_HHmmss}";
- dlg.Filter = "Excel数据表格文件(*.xlsx)|*.xlsx"; // Filter files by extension
- result = dlg.ShowDialog();// Show open file dialog box
- savePath = dlg.FileName;
- }
- if (result == true)
- {
- System.Data.DataSet ds = new System.Data.DataSet();
- ds.Tables.Add(new System.Data.DataTable("ALID(Alarm ID)"));
- ds.Tables[0].Columns.Add("ALID");
- ds.Tables[0].Columns.Add("Name");
- ds.Tables[0].Columns.Add("Description");
- Dictionary<int, int> IdDictionary = new Dictionary<int, int>();
- foreach (var item in lists)
- {
- var row = ds.Tables[0].NewRow();
- if (!IdDictionary.ContainsKey(item.ModuleIndex))
- IdDictionary[item.ModuleIndex] = 0;
- row[0] = item.Index;
- row[1] = item.Name;
- if (string.IsNullOrEmpty(item.Description))
- {
- var arr = item.Name.Split('.');
- for (int i = 0; i < arr.Length; i++)
- row[2] += $"{arr[i]} ";
- }
- else
- {
- row[2] = item.Description;
- }
- ds.Tables[0].Rows.Add(row);
- }
- if (!ExcelHelper.ExportToExcel(savePath, ds, out string reason, createNewFile))
- {
- LOG.Write($"Export failed, {reason}");
- return;
- }
- LOG.Write($"Export succeed, file save as {savePath}");
- }
- }
- private void ExportCeid(List<VIDItem> dataList, bool defaultPath = true, bool createNewFile = false)
- {
- var lists = dataList.OrderBy(x => x.Index).ToList();
- bool? result = defaultPath;
- string savePath = $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\Equipment_VIDs_{DateTime.Now:yyyyMMdd}.xlsx";
- if (!defaultPath)
- {
- Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
- dlg.DefaultExt = ".xlsx"; // Default file extension
- dlg.FileName = $"Equipment_VIDs_{DateTime.Now:yyyyMMdd_HHmmss}";
- dlg.Filter = "Excel数据表格文件(*.xlsx)|*.xlsx"; // Filter files by extension
- result = dlg.ShowDialog();// Show open file dialog box
- savePath = dlg.FileName;
- }
- if (result == true)
- {
- System.Data.DataSet ds = new System.Data.DataSet();
- ds.Tables.Add(new System.Data.DataTable("CEID(Collection Events)"));
- ds.Tables[0].Columns.Add("CEID");
- ds.Tables[0].Columns.Add("Name");
- ds.Tables[0].Columns.Add("LinkableVID");
- ds.Tables[0].Columns.Add("Description");
- Dictionary<int, int> IdDictionary = new Dictionary<int, int>();
- foreach (var item in lists)
- {
- var row = ds.Tables[0].NewRow();
- if (!IdDictionary.ContainsKey(item.ModuleIndex))
- IdDictionary[item.ModuleIndex] = 0;
- row[0] = item.Index;
- row[1] = item.Name;
- if (item.LinkableVid != null)
- {
- string LinkableVidDescription = String.Empty;
- for (int i = 0; i < item.LinkableVid.Length; i++)
- {
- LinkableVidDescription += $"{(DataVariables.DataName)item.LinkableVid[i]} = {item.LinkableVid[i]} \r\n";
- }
- row[2] = LinkableVidDescription;
- }
- if (string.IsNullOrEmpty(item.Description))
- {
- var arr = item.Name.Split('.');
- for (int i = 0; i < arr.Length; i++)
- row[3] += $"{arr[i]} ";
- }
- else
- {
- row[3] = item.Description;
- }
- ds.Tables[0].Rows.Add(row);
- }
- if (!ExcelHelper.ExportToExcel(savePath, ds, out string reason, createNewFile))
- {
- LOG.Write($"Export failed, {reason}");
- return;
- }
- LOG.Write($"Export succeed, file save as {savePath}");
- }
- }
- private void ExportEcid(List<VIDItem> dataList, bool defaultPath = true, bool createNewFile = false)
- {
- var lists = dataList.OrderBy(x => x.Index).ToList();
- bool? result = defaultPath;
- string savePath = $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\Equipment_VIDs_{DateTime.Now:yyyyMMdd}.xlsx";
- if (!defaultPath)
- {
- Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
- dlg.DefaultExt = ".xlsx"; // Default file extension
- dlg.FileName = $"Equipment_VIDs_{DateTime.Now:yyyyMMdd_HHmmss}";
- dlg.Filter = "Excel数据表格文件(*.xlsx)|*.xlsx"; // Filter files by extension
- result = dlg.ShowDialog();// Show open file dialog box
- savePath = dlg.FileName;
- }
- if (result == true)
- {
- System.Data.DataSet ds = new System.Data.DataSet();
- ds.Tables.Add(new System.Data.DataTable("ECID(Equipment Constant)"));
- ds.Tables[0].Columns.Add("ECID");
- ds.Tables[0].Columns.Add("Name");
- ds.Tables[0].Columns.Add("Format");
- ds.Tables[0].Columns.Add("Description");
- Dictionary<int, int> IdDictionary = new Dictionary<int, int>();
- foreach (var item in lists)
- {
- var row = ds.Tables[0].NewRow();
- if (!IdDictionary.ContainsKey(item.ModuleIndex))
- IdDictionary[item.ModuleIndex] = 0;
- row[0] = item.Index;
- row[1] = item.Name;
- row[2] = VIDItemType2GemDataType(item.DataType);
- if (string.IsNullOrEmpty(item.Description))
- {
- var arr = item.Name.Split('.');
- for (int i = 0; i < arr.Length; i++)
- row[3] += $"{arr[i]} ";
- }
- else
- {
- row[3] = item.Description;
- }
- ds.Tables[0].Rows.Add(row);
- }
- if (!ExcelHelper.ExportToExcel(savePath, ds, out string reason, createNewFile))
- {
- LOG.Write($"Export failed, {reason}");
- return;
- }
- LOG.Write($"Export succeed, file save as {savePath}");
- }
- }
- private void ExportSvid(List<VIDItem> dataList, bool defaultPath = true, bool createNewFile = false)
- {
- var lists = dataList.OrderBy(x => x.Index).ToList();
- bool? result = defaultPath;
- string savePath = $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\Equipment_VIDs_{DateTime.Now:yyyyMMdd}.xlsx";
- if (!defaultPath)
- {
- Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
- dlg.DefaultExt = ".xlsx"; // Default file extension
- dlg.FileName = $"Chamber_Status_Variable_{DateTime.Now:yyyyMMdd_HHmmss}";
- dlg.Filter = "Excel数据表格文件(*.xlsx)|*.xlsx"; // Filter files by extension
- result = dlg.ShowDialog();// Show open file dialog box
- savePath = dlg.FileName;
- }
- if (result == true)
- {
- System.Data.DataSet ds = new System.Data.DataSet();
- ds.Tables.Add(new System.Data.DataTable("SVID(Status Variable)"));
- ds.Tables[0].Columns.Add("SVID");
- ds.Tables[0].Columns.Add("Name");
- ds.Tables[0].Columns.Add("Format");
- ds.Tables[0].Columns.Add("Description");
- Dictionary<int, int> IdDictionary = new Dictionary<int, int>();
- foreach (var item in lists)
- {
- var row = ds.Tables[0].NewRow();
- if (!IdDictionary.ContainsKey(item.ModuleIndex))
- IdDictionary[item.ModuleIndex] = 0;
- row[0] = item.Index;
- row[1] = item.Name;
- row[2] = VIDItemType2GemDataType(item.DataType);
- if (string.IsNullOrEmpty(item.Description))
- {
- var arr = item.Name.Split('.');
- for (int i = 0; i < arr.Length; i++)
- row[3] += $"{arr[i]} ";
- }
- else
- {
- row[3] = item.Description;
- }
- ds.Tables[0].Rows.Add(row);
- }
- if (!ExcelHelper.ExportToExcel(savePath, ds, out string reason, createNewFile))
- {
- LOG.Write($"Export failed, {reason}");
- return;
- }
- LOG.Write($"Export succeed, file save as {savePath}");
- }
- }
- private void ExportDvid(List<VIDItem> dataList, bool defaultPath = true, bool createNewFile = false)
- {
- var lists = dataList.OrderBy(x => x.Index).ToList();
- bool? result = defaultPath;
- string savePath = $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}VIDs\\Equipment_VIDs_{DateTime.Now:yyyyMMdd}.xlsx";
- if (!defaultPath)
- {
- Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
- dlg.DefaultExt = ".xlsx"; // Default file extension
- dlg.FileName = $"Data_Variable_{DateTime.Now:yyyyMMdd_HHmmss}";
- dlg.Filter = "Excel数据表格文件(*.xlsx)|*.xlsx"; // Filter files by extension
- result = dlg.ShowDialog();// Show open file dialog box
- savePath = dlg.FileName;
- }
- if (result == true)
- {
- System.Data.DataSet ds = new System.Data.DataSet();
- ds.Tables.Add(new System.Data.DataTable("DVID(Data Variable)"));
- ds.Tables[0].Columns.Add("DVID");
- ds.Tables[0].Columns.Add("Name");
- ds.Tables[0].Columns.Add("Format");
- ds.Tables[0].Columns.Add("Description");
- Dictionary<int, int> IdDictionary = new Dictionary<int, int>();
- foreach (var item in lists)
- {
- var row = ds.Tables[0].NewRow();
- if (!IdDictionary.ContainsKey(item.ModuleIndex))
- IdDictionary[item.ModuleIndex] = 0;
- row[0] = item.Index;
- row[1] = item.Name;
- row[2] = VIDItemType2GemDataType(item.DataType);
- if (string.IsNullOrEmpty(item.Description))
- {
- var arr = item.Name.Split('.');
- for (int i = 0; i < arr.Length; i++)
- row[3] += $"{arr[i]} ";
- }
- else
- {
- row[3] = item.Description;
- }
- ds.Tables[0].Rows.Add(row);
- }
- if (!ExcelHelper.ExportToExcel(savePath, ds, out string reason, createNewFile))
- {
- LOG.Write($"Export failed, {reason}");
- return;
- }
- LOG.Write($"Export succeed, file save as {savePath}");
- }
- }
- private void ReGenerateGemModelXml(List<VIDItem> Svids, List<VIDItem> Ecids, List<VIDItem> Dvids, List<VIDItem> Ceids, List<VIDItem> Alids, string equipName)
- {
- XmlDocument xml = new XmlDocument();
- string _defaultPathFile = $"{PathManager.GetCfgDir().Replace("\\bin\\Debug", "")}{equipName}GemModel.xml";
- try
- {
- xml.Load(_defaultPathFile);
- if (Svids != null)
- {
- XmlNode itemNodes = xml.SelectSingleNode("Equipment/StatusVariables");
- itemNodes.RemoveAll();
- foreach (var svid in OriginalSvids)
- {
- XmlElement subNode = xml.CreateElement("SVID");
- subNode.SetAttribute("id", svid.Index.ToString());
- subNode.SetAttribute("valueType", svid.DataType);
- subNode.SetAttribute("logicalName", svid.Name);
- subNode.SetAttribute("value", "");
- subNode.SetAttribute("eventTrigger", "");
- subNode.SetAttribute("units", "");
- subNode.SetAttribute("description", svid.Description);
- subNode.SetAttribute("isArray", "false");
- itemNodes.AppendChild(subNode);
- }
- foreach (var svid in Svids)
- {
- XmlElement subNode = xml.CreateElement("SVID");
- subNode.SetAttribute("id", svid.Index.ToString());
- subNode.SetAttribute("valueType", VIDItemType2GemDataType(svid.DataType));
- subNode.SetAttribute("logicalName", svid.Name);
- subNode.SetAttribute("value", "");
- subNode.SetAttribute("eventTrigger", "");
- subNode.SetAttribute("units", "");
- subNode.SetAttribute("description", svid.Description);
- subNode.SetAttribute("isArray", "false");
- itemNodes.AppendChild(subNode);
- }
- }
- if (Ecids != null)
- {
- XmlNode itemNodes = xml.SelectSingleNode("Equipment/EquipmentConstants");
- itemNodes.RemoveAll();
- foreach (var ecid in OriginalEcids)
- {
- XmlElement subNode = xml.CreateElement("ECID");
- subNode.SetAttribute("id", ecid.Index.ToString());
- subNode.SetAttribute("valueType", ecid.DataType);
- subNode.SetAttribute("logicalName", ecid.Name);
- subNode.SetAttribute("value", ecid.Description);
- subNode.SetAttribute("min", "0");
- subNode.SetAttribute("max", "100");
- subNode.SetAttribute("eventTrigger", "");
- subNode.SetAttribute("units", "");
- subNode.SetAttribute("description", "");
- subNode.SetAttribute("isArray", "false");
- itemNodes.AppendChild(subNode);
- }
- foreach (var ecid in Ecids)
- {
- XmlElement subNode = xml.CreateElement("ECID");
- subNode.SetAttribute("id", ecid.Index.ToString());
- subNode.SetAttribute("valueType", VIDItemType2GemDataType(ecid.DataType));
- subNode.SetAttribute("logicalName", ecid.Name);
- subNode.SetAttribute("value", "");
- subNode.SetAttribute("min", "");
- subNode.SetAttribute("max", "");
- subNode.SetAttribute("eventTrigger", "");
- subNode.SetAttribute("units", "");
- subNode.SetAttribute("description", ecid.Description);
- subNode.SetAttribute("isArray", "false");
- itemNodes.AppendChild(subNode);
- }
- }
- if (Dvids != null)
- {
- XmlNode itemNodes = xml.SelectSingleNode("Equipment/DataVariables");
- itemNodes.RemoveAll();
- foreach (var dvids in Dvids)
- {
- if (dvids.Index < 500)
- continue;
- XmlElement subNode = xml.CreateElement("DVID");
- subNode.SetAttribute("id", dvids.Index.ToString());
- subNode.SetAttribute("valueType", VIDItemType2GemDataType(dvids.DataType));
- subNode.SetAttribute("logicalName", dvids.Name);
- subNode.SetAttribute("value", "");
- subNode.SetAttribute("eventTrigger", "");
- subNode.SetAttribute("description", dvids.Description);
- subNode.SetAttribute("isArray", "false");
- itemNodes.AppendChild(subNode);
- }
- }
- if (Ceids != null)
- {
- int reportID = 0;
- Dictionary<string, int> reportDictionary = new Dictionary<string, int>();
- XmlNode RPTIDNodes = xml.SelectSingleNode("Equipment/DataCollections/RPTIDs");
- RPTIDNodes.RemoveAll();
- foreach (var ceid in Ceids)
- {
- XmlElement RPTID = xml.CreateElement("RPTID");
- if (ceid.LinkableVid != null)
- {
- string reportKey = string.Join(",", ceid.LinkableVid);
- if (!reportDictionary.ContainsKey(reportKey))
- {
- reportID += 1;
- reportDictionary[reportKey] = reportID;
- RPTID.SetAttribute("id", reportID.ToString());
- RPTID.SetAttribute("logicalName", $"DefaultDefinedReport_{reportID}");
- foreach (var vid in ceid.LinkableVid)
- {
- XmlElement ReportVariable = xml.CreateElement("ReportVariable");
- ReportVariable.SetAttribute("id", vid.ToString());
- ReportVariable.SetAttribute("varType", vid < 500 ? "StatusVariable" : "DataVariable");
- ReportVariable.SetAttribute("logicalName", ((DataVariables.DataName)vid).ToString());
- RPTID.AppendChild(ReportVariable);
- }
- RPTIDNodes.AppendChild(RPTID);
- }
- }
- }
- XmlNode CEIDNodes = xml.SelectSingleNode("Equipment/DataCollections/CEIDs");
- CEIDNodes.RemoveAll();
- foreach (var ceid in Ceids)
- {
- XmlElement CEID = xml.CreateElement("CEID");
- CEID.SetAttribute("id", ceid.Index.ToString());
- CEID.SetAttribute("logicalName", ceid.Name);
- CEID.SetAttribute("description", ceid.Description);
- CEID.SetAttribute("enabled", "true");
- if (ceid.LinkableVid != null)
- {
- string reportKey = string.Join(",", ceid.LinkableVid);
- XmlElement RPTID = xml.CreateElement("RPTID");
- RPTID.SetAttribute("id", reportDictionary[reportKey].ToString());
- RPTID.SetAttribute("logicalName", $"DefaultDefinedReport_{reportDictionary[reportKey]}");
- foreach (var vid in ceid.LinkableVid)
- {
- XmlElement ReportVariable = xml.CreateElement("ReportVariable");
- ReportVariable.SetAttribute("id", vid.ToString());
- ReportVariable.SetAttribute("varType", vid < 500 ? "StatusVariable" : "DataVariable");
- ReportVariable.SetAttribute("logicalName", ((DataVariables.DataName)vid).ToString());
- RPTID.AppendChild(ReportVariable);
- }
- CEID.AppendChild(RPTID);
- }
- CEIDNodes.AppendChild(CEID);
- }
- }
- if (Alids != null)
- {
- XmlNode itemNodes = xml.SelectSingleNode("Equipment/Alarms");
- itemNodes.RemoveAll();
- foreach (var alid in Alids)
- {
- XmlElement subNode = xml.CreateElement("ALID");
- subNode.SetAttribute("id", alid.Index.ToString());
- subNode.SetAttribute("logicalName", alid.Name);
- subNode.SetAttribute("description", alid.Description);
- subNode.SetAttribute("category", "EquipmentStatusWarning");
- subNode.SetAttribute("enabled", "false");
- subNode.SetAttribute("eventSet", "1" + alid.Index);
- subNode.SetAttribute("eventClear", "2" + alid.Index);
- itemNodes.AppendChild(subNode);
- }
- }
- xml.Save(_defaultPathFile);
- }
- catch (Exception ex)
- {
- LOG.Write(ex);
- }
- }
- string VIDItemType2GemDataType(string VIDItemType)
- {
- switch (VIDItemType.Replace("System.", ""))
- {
- case "List":
- return "List";
- case "I1":
- return "I1";
- case "I4":
- return "I4";
- case "U1":
- return "U1";
- case "U2":
- return "U2";
- case "U4":
- return "U4";
- case "Int":
- case "Integer":
- return "I4";
- case "Bool":
- case "Boolean":
- return "Boolean";
- case "Float":
- case "Single":
- case "Double":
- case "F8":
- return "F8";
- case "Binary":
- return "Binary";
- default:
- return "Ascii";
- }
- }
- }
- }
|