DeviceConfig.cs
11.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
using log4net;
using OnlineStore.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace OnlineStore.LoadCSVLibrary
{
public class DeviceConfig
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 设备类型
/// </summary>
public string DType { get; set; }
/// <summary>
/// 配置文件路径
/// </summary>
public string ConfigFilePath { get; set; }
public Dictionary<String, ConfigIO> DIList { get; set; }
public Dictionary<String, ConfigIO> DOList { get; set; }
public List<ConfigMoveAxis> moveAxisList;
public List<ConfigBase> configList;
public static Dictionary<String, ConfigIO> AllDOlist { get; set; }
public static Dictionary<String, ConfigIO> AllDOEleclist { get; set; }
public DeviceConfig()
{
}
static DeviceConfig()
{
AllDOlist = new Dictionary<string, ConfigIO>();
AllDOEleclist = new Dictionary<string, ConfigIO>();
}
public DeviceConfig(int id , string type, string filepath)
{
this.Id = id;
this.DType = type;
this.ConfigFilePath = filepath;
}
public virtual void LoadConfig(List<ConfigBase> configList)
{
this.configList = configList;
List<string> ioTypeList = IO_Type.GetTypeList();
StringBuilder builder = new StringBuilder("\r\n");
StringBuilder proBuilder = new StringBuilder("\r\n");
DIList = new Dictionary<string, ConfigIO>();
DOList = new Dictionary<string, ConfigIO>();
moveAxisList = new List<ConfigMoveAxis>();
//取得属性集合
PropertyInfo[] props = GetType().GetProperties();
Dictionary<string, string> proMap = CSVReaderBase.getConfigProAttributeMap(GetType());
List<string> checkProList = new List<string>(proMap.Keys);//用来检测attribute属性都应该要配置值
foreach (ConfigBase con in configList)
{
try
{
if (con.ProType == ConfigItemType.AXIS || con.ProType == ConfigItemType.PRO)
{
if (proMap.ContainsKey(con.ProName))
{
string proName = proMap[con.ProName];
checkProList.Remove(con.ProName);
PropertyInfo prop = props.First(c => c.Name == proName);//获取同名属性
if (prop != null)
{
if (con.ProType == ConfigItemType.AXIS)
{
//如果属性存在
prop.SetValue(this, Convert.ChangeType(con, prop.PropertyType), null);//赋值****在这里需要考虑类型问题
ConfigMoveAxis axis = (ConfigMoveAxis)con;
moveAxisList.Add(axis);
}
else if (con.ProType == ConfigItemType.PRO)
{
prop.SetValue(this, Convert.ChangeType(con.ProValue, prop.PropertyType));//赋值
if (con.TargetSpeed > 0)
{
if (proMap.ContainsKey(proName + "_speed"))
{
checkProList.Remove(proName + "_speed");
PropertyInfo speedprop = props.First(c => c.Name == proName + "_speed");
if (speedprop != null)
{
speedprop.SetValue(this, Convert.ChangeType(con.TargetSpeed, prop.PropertyType));
}
}
else
{
AddProSpeedBuffer(con, proBuilder);
}
}
}
}
else
{
LogUtil.error("配置文件:" + this.ConfigFilePath + ",属性名=" + con.ProName + "的属性未找到匹配字段!");
}
}
else
{
AddProBuffer(con, proBuilder);
LogUtil.error("配置文件:" + this.ConfigFilePath + ",属性名=" + con.ProName + "的属性未找到匹配字段!");
}
}
else if (con.ProType == ConfigItemType.DI)
{
ConfigIO io = (ConfigIO)con;
if (DIList.ContainsKey(io.ProName))
{
LogUtil.debug("配置DI:[" + io.ToString() + "] ProName重复 ");
}
else
{
this.DIList.Add(con.ProName, io);
}
if (!ioTypeList.Contains(con.ProName))
{
AddBuffer(con, builder);
}
}
else if (con.ProType == ConfigItemType.DO)
{
ConfigIO io = (ConfigIO)con;
if (DOList.ContainsKey(io.ProName))
{
LogUtil.debug("配置DO:[" + io.ToString() + "] ProName重复 ");
}
else
{
this.DOList.Add(con.ProName, io);
if (!AllDOlist.ContainsKey(con.ProName))
AllDOlist.Add(con.ProName, io);
AllDOEleclist.Add(io.ElectricalDefinition, io);
}
if (!ioTypeList.Contains(con.ProName))
{
AddBuffer(con, builder);
}
}
}catch(Exception ex)
{
LogUtil.error("解析配置【"+con.ConfigStr+"】出错:" + ex.ToString());
throw new Exception("解析配置【" + con.ConfigStr + "】出错");
}
}
if (String.IsNullOrEmpty(proBuilder.ToString()).Equals(false) && proBuilder.ToString().Equals("\r\n").Equals(false))
{
LogUtil.error(proBuilder.ToString());
}
if (String.IsNullOrEmpty(builder.ToString()).Equals(false) && builder.ToString().Equals("\r\n").Equals(false))
{
LogUtil.error(builder.ToString());
}
if (checkProList.Count >= 0)
{
//常规属性检测
foreach (string str in checkProList)
{
PropertyInfo prop = props.First(c => c.Name == str);//获取同名属性
//判断是否必须要配置
object[] array = prop.GetCustomAttributes(false);
if (array.Length > 0)
{
ConfigProAttribute att = (ConfigProAttribute)array[0];
if (att != null)
{
if (att.IsMust)
{
throw new CVSFieldNotMatchingExection(this.ToString() + "的属性【" + str + "】必须配置值!");
}
else
{
if (prop.PropertyType.Equals(typeof(int)))
{
prop.SetValue(this, Convert.ChangeType(0, prop.PropertyType), null);//赋值****在这里需要考虑类型问题
}
else
{
prop.SetValue(this, Convert.ChangeType("", prop.PropertyType), null);//赋值****在这里需要考虑类型问题
}
}
}
}
}
////DI检测
//foreach (string di in MustHaveDIList)
//{
// if (!DIList.ContainsKey(di))
// {
// throw new CVSFieldNotMatchingExection(this.ToString() + "的DI属性" + di + "必须配置值!");
// }
//}
////DO检测
//foreach (string io in MustHaveDOList)
//{
// if (!this.DOList.ContainsKey(io))
// {
// throw new CVSFieldNotMatchingExection(this.ToString() + "的DO属性" + io + "必须配置值!");
// }
//}
}
}
private void AddProBuffer(ConfigBase con, StringBuilder builder)
{
builder.Append(" /// <summary>\r\n");
builder.Append(" /// " + con.ConfigStr + "\r\n");
builder.Append(" /// </summary>\r\n");
builder.Append(" [ConfigProAttribute(\"" + con.ProName + "\")]\r\n");
builder.Append(" public int " + con.ProName + " { get; set; }\r\n");
}
private void AddProSpeedBuffer(ConfigBase con, StringBuilder builder)
{
builder.Append(" /// <summary>\r\n");
builder.Append(" /// " + con.ConfigStr + "\r\n");
builder.Append(" /// </summary>\r\n");
builder.Append(" [ConfigProAttribute(\"" + con.ProName + "_speed\")]\r\n");
builder.Append(" public int " + con.ProName + "_speed { get; set; }\r\n");
}
private void AddBuffer(ConfigBase con, StringBuilder builder)
{
builder.Append(" /// <summary>\r\n");
builder.Append(" /// " + con.ConfigStr + "\r\n");
builder.Append(" /// </summary>\r\n");
builder.Append(" public static string " + con.ProName + "=\"" + con.ProName + "\";\r\n");
}
public ConfigIO getWaitIO(string ioType)
{
if (DIList.ContainsKey(ioType))
{
return DIList[ioType];
}
else if (DOList.ContainsKey(ioType))
{
return DOList[ioType];
}
return null;
}
}
public class DeviceType
{
/// <summary>
/// 流水线线体
/// </summary>
public static string Line = "Line";
public static string XRay = "MoveEquip";
public static string OutputDevice = "OutputDevice";
public static string InputDevice = "InputDevice";
}
}