- Added plugin source code
- removed plugin dll - Changed file structure - Added readme
This commit is contained in:
251
SOURCE/Plugin/MWDevice.cs
Normal file
251
SOURCE/Plugin/MWDevice.cs
Normal file
@@ -0,0 +1,251 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Aml.Editor.Plugin
|
||||
{
|
||||
// this class initialize the parameters exclusively for the "Device Identofication", "DataGridViews in "Generic Data Tab" AND "Field Attachables Tab""
|
||||
public class MWDevice: MWData.MWObject
|
||||
{
|
||||
public string environment { get; set; }
|
||||
public string fileName { get; set; }
|
||||
public string filepath { get; set; }
|
||||
|
||||
|
||||
public string vendorName { get; set; }
|
||||
|
||||
public string deviceName { get; set; }
|
||||
|
||||
// Can contain letters:
|
||||
public List<DataGridParameters> dataGridParametersLists { get; set; }
|
||||
|
||||
|
||||
//Properties for Electrical Interface
|
||||
public List<ElectricalParameters> ElectricalInterfaces { get; set; }
|
||||
public List<List<ElectricalParameters>> ElectricalInterfaceInstances { get; set; }
|
||||
|
||||
//List of property for parameters in Attachables Data Grid View
|
||||
public List<AttachablesDataGridViewParameters> dataGridAttachablesParametrsList { get; set; }
|
||||
public List<AttachablesDataGridViewParameters> listWithURIConvertedToString { get; set; }
|
||||
|
||||
//List of parameters from Electrical Interface Datagrid View in "Inter" tab
|
||||
public List<ElectricalInterfaceParameters> listofElectricalInterfaceParameters { get; set; }
|
||||
|
||||
// In this Dictionary Every list generated from the Electrical Interface is Added and can be retrived by the key KEY = "InterfaceClass+Externalinterface" strings
|
||||
public Dictionary<string, List<ElectricalInterfaceParameters>> DictofElectricalInterfaceParameters { get; set; }
|
||||
|
||||
|
||||
// These are the Dictionary properties that store Electrical Interfaces Instances
|
||||
// This Dictionary Property Stores the "Parent Interface Class Attributes" as Values and "Interface Number + InterfaceName" as Key
|
||||
public Dictionary<string, List<List<ClassOfListsFromReferencefile>>> DictionaryForInterfaceClassesInElectricalInterfaces { get; set; }
|
||||
// This Dictioanry Property Stores "Child ExternalInterfaces attributes under ParentClass" as Values
|
||||
// and "InterfaceNumbwer + ParentClassName + ExternalInterface Name" as Key
|
||||
public Dictionary<string, List<List<ClassOfListsFromReferencefile>>> DictionaryForExternalInterfacesUnderInterfaceClassInElectricalInterfaces { get; set; }
|
||||
|
||||
|
||||
// These are the Dictionary properties that store Electrical Interfaces Instances
|
||||
// This Dictionary Property Stores the "Parent Interface Class Attributes" as Values and "Interface Number + InterfaceName" as Key
|
||||
public Dictionary<string, List<List<ClassOfListsFromReferencefile>>> DictionaryForRoleClassofComponent { get; set; }
|
||||
// This Dictioanry Property Stores "Child ExternalInterfaces attributes under ParentClass" as Values
|
||||
// and "InterfaceNumbwer + ParentClassName + ExternalInterface Name" as Key
|
||||
public Dictionary<string, List<List<ClassOfListsFromReferencefile>>> DictionaryForExternalInterfacesUnderRoleClassofComponent { get; set; }
|
||||
|
||||
}
|
||||
// This class helps to carry parameters in "identification data table to AutomationML"
|
||||
|
||||
|
||||
public class DataGridParameters
|
||||
{
|
||||
public string RefSemantics { get; set; }
|
||||
public string Attributes { get; set; }
|
||||
public string Values { get; set; }
|
||||
|
||||
|
||||
public DataGridParameters() { }
|
||||
|
||||
public DataGridParameters(string refSemantic, string attributes, string value)
|
||||
{
|
||||
this.RefSemantics = refSemantic;
|
||||
this.Attributes = attributes;
|
||||
this.Values = value;
|
||||
}
|
||||
public override string ToString()
|
||||
{
|
||||
return "DataGridParameters(" + RefSemantics + "=" + Attributes + "=" + Values + ")";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// /The following classes are parameter holders for Electrical Interfaces
|
||||
/// </summary>
|
||||
public class ElectricalParameters
|
||||
{
|
||||
public string Connector { get; set; }
|
||||
public string ConnectorCode { get; set; }
|
||||
public string ConnectorType { get; set; }
|
||||
public string Pins { get; set; }
|
||||
|
||||
public List<ElectricalParametersInElectricalDataDataGridView> listofElectricalDataDataGridViewParameters { get; set; }
|
||||
public List<PinParametersInPinInfoDataGridView> listOfPinInfoDataGridViewParameters { get; set; }
|
||||
//public string ReferenceID { get; set; }
|
||||
//public string Attributes { get; set; }
|
||||
//public string Values { get; set; }
|
||||
//public string Units { get; set; }
|
||||
|
||||
|
||||
public ElectricalParameters()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public ElectricalParameters(string connector, string connectorCode, string connectorType,string pins,string lis)
|
||||
|
||||
{
|
||||
this.Connector = connector;
|
||||
this.ConnectorCode = connectorCode;
|
||||
this.ConnectorType = connectorType;
|
||||
this.Pins = pins;
|
||||
|
||||
}
|
||||
//public ElectricalParameters(string referenceID, string attribute, string values, string units, string pins)
|
||||
//{
|
||||
// this.ReferenceID = referenceID;
|
||||
// this.Attributes = attribute;
|
||||
// this.Values = values;
|
||||
// this.Units = units;
|
||||
// this.Pins = pins;
|
||||
//}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
|
||||
return "ElectricalParameters(" + Connector + "=" + ConnectorCode + "=" + ConnectorType + "="+Pins+")";
|
||||
}
|
||||
|
||||
}
|
||||
//This Class is responsible to hold the parameters in "ElectricalDataDataGrid View"
|
||||
|
||||
public class ElectricalParametersInElectricalDataDataGridView
|
||||
{
|
||||
|
||||
public string ReferenceID { get; set; }
|
||||
public string Attributes { get; set; }
|
||||
public string Values { get; set; }
|
||||
public string Units { get; set; }
|
||||
|
||||
public ElectricalParametersInElectricalDataDataGridView()
|
||||
{
|
||||
|
||||
}
|
||||
public ElectricalParametersInElectricalDataDataGridView(string referenceID, string attribute, string values, string units)
|
||||
{
|
||||
this.ReferenceID = referenceID;
|
||||
this.Attributes = attribute;
|
||||
this.Values = values;
|
||||
this.Units = units;
|
||||
|
||||
}
|
||||
public override string ToString()
|
||||
{
|
||||
return "ElectricalParametersInElectricalDataDataGridView("+ ReferenceID + "=" + Attributes + "=" + Values + "=" + Units + ")";
|
||||
}
|
||||
}
|
||||
|
||||
public class PinParametersInPinInfoDataGridView
|
||||
{
|
||||
public string PinNumber { get; set; }
|
||||
public string ReferenceID { get; set; }
|
||||
public string Attributes { get; set; }
|
||||
public string Values { get; set; }
|
||||
public string Units { get; set; }
|
||||
|
||||
public PinParametersInPinInfoDataGridView()
|
||||
{
|
||||
|
||||
}
|
||||
public PinParametersInPinInfoDataGridView(string pinNumber,string referenceID, string attribute, string values, string units)
|
||||
{
|
||||
this.PinNumber = pinNumber;
|
||||
this.ReferenceID = referenceID;
|
||||
this.Attributes = attribute;
|
||||
this.Values = values;
|
||||
this.Units = units;
|
||||
|
||||
}
|
||||
public override string ToString()
|
||||
{
|
||||
return "PinParametersInPinInfoDataGridView(" +PinNumber+"="+ ReferenceID + "=" + Attributes + "=" + Values + "=" + Units + ")";
|
||||
}
|
||||
}
|
||||
|
||||
// this class is responsible to load every parameter in "attachablesInfoDataGridView" into a list.
|
||||
public class AttachablesDataGridViewParameters
|
||||
{
|
||||
public string ElementName { get; set; }
|
||||
public string FilePath { get; set; }
|
||||
public string AddToFile { get; set; }
|
||||
|
||||
public AttachablesDataGridViewParameters()
|
||||
{
|
||||
|
||||
}
|
||||
public AttachablesDataGridViewParameters(string elementName, string filePath, bool addToFile)
|
||||
{
|
||||
this.ElementName = elementName;
|
||||
this.FilePath = filePath;
|
||||
this.AddToFile = Convert.ToString(addToFile);
|
||||
}
|
||||
public override string ToString()
|
||||
{
|
||||
return "AttachablesDataGridViewParameters(" + ElementName + "=" + FilePath +"="+ AddToFile + ")";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public class ElectricalInterfaceParameters
|
||||
{
|
||||
public string AttributeName { get; set; }
|
||||
public string Values { get; set; }
|
||||
public string Default { get; set; }
|
||||
public string Units { get; set; }
|
||||
public string DataType { get; set; }
|
||||
public string Semantic { get; set; }
|
||||
public string Reference { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string CopyRight { get; set; }
|
||||
public string AttributePath { get; set; }
|
||||
//public List<ClassOfListsFromReferencefile> listofparameters { get; set; }
|
||||
|
||||
public ElectricalInterfaceParameters()
|
||||
{
|
||||
//listofparameters = new List<ClassOfListsFromReferencefile>();
|
||||
}
|
||||
|
||||
public ElectricalInterfaceParameters(string name, string value,
|
||||
string _default, string unit,
|
||||
string reference, string description, string copyRight, string semantic, string attributePath)
|
||||
: this()
|
||||
{
|
||||
this.AttributeName = name;
|
||||
this.Values = value;
|
||||
this.Default = _default;
|
||||
this.Units = unit;
|
||||
this.Reference = reference;
|
||||
this.Description = description;
|
||||
this.CopyRight = copyRight;
|
||||
this.Semantic = semantic;
|
||||
this.AttributePath = attributePath;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return "ClassOfListsFromReferencefile(" + AttributeName + "=" + Values + "=" + Default + "=" + Units + "=" + Reference + "="
|
||||
+ Description + "=" + CopyRight + "=" + Semantic + "=" + AttributePath + ")";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user