BaseConfig.cs
12.2 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
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 BaseConfig
{
private bool codeAutoLog = false ;
public static Dictionary<int, Dictionary<string, ConfigIO>> SubDIList { get; set; }
public static Dictionary<int, Dictionary<string, ConfigIO>> SubDOList { get; set; }
public static Dictionary<string, string> ProIOIpMap = null;
public const string IOIP_Str = "PRO_AIO_IP";
public int Id { get; set; }
public string CID { get; set; }
/// <summary>
/// 设备类型
/// </summary>
public string DType { get; set; }
public string ConfigFilePath { get; set; }
public Dictionary<String, ConfigIO> DIList { get; set; }
public Dictionary<String, ConfigIO> DOList { get; set; }
public List<string> IOIPList { get; set; }
public BaseConfig()
{
}
public BaseConfig(int id, string CID, string type, string filepath)
{
this.CID = CID;
this.Id = id;
this.DType = type;
this.ConfigFilePath = filepath;
}
public virtual void LoadConfig(List<ConfigBase> configList)
{
if (SubDIList == null)
{
SubDIList = new Dictionary<int, Dictionary<string, ConfigIO>>();
}
if (SubDOList == null)
{
SubDOList = new Dictionary<int, Dictionary<string, ConfigIO>>();
}
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>();
IOIPList = new List<string>();
//取得属性集合
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;
}
else if (con.ProType == ConfigItemType.PRO)
{
prop.SetValue(this, Convert.ChangeType(con.ProValue, prop.PropertyType), null);//赋值
}
}
else
{
LogUtil.error("配置文件:" + this.ConfigFilePath + ",属性名=" + con.ProName + "的属性未找到匹配字段!");
}
}
if (!ProIOIpMap.ContainsKey(con.ProName) && con.ProName.ToUpper().Contains(IOIP_Str.ToUpper()))
{
ProIOIpMap.Add(con.ProName, con.ProValue);
}
else if (codeAutoLog || (!proMap.ContainsKey(con.ProName)))
{
AddProBuffer(con, proBuilder);
LogUtil.error("配置文件:" + this.ConfigFilePath + ",属性名=" + con.ProName + "的属性未找到匹配字段!");
}
}
else if (con.ProType == ConfigItemType.DI)
{
ConfigIO io = (ConfigIO)con;
if (!IOIPList.Contains(io.IO_IP) && io.GetIOAddr() >= 0)
{
IOIPList.Add(io.IO_IP);
}
if (DIList.ContainsKey(io.ProName))
{
LogUtil.debug("配置DI:[" + io.ToString() + "] ProName重复 ");
}
else
{
this.DIList.Add(con.ProName, io);
}
if (!SubDIList.ContainsKey(io.SubType))
{
SubDIList.Add(io.SubType, new Dictionary<string, ConfigIO>());
}
if (SubDIList[io.SubType].ContainsKey(io.ProName))
{
LogUtil.debug("配置DI:[" + io.ToString() + "] ProName重复 ");
}
else
{
SubDIList[io.SubType].Add(io.ProName, io);
}
if (!ioTypeList.Contains(con.ProName) || codeAutoLog)
{
AddBuffer(con, builder);
}
}
else if (con.ProType == ConfigItemType.DO)
{
ConfigIO io = (ConfigIO)con;
if (!IOIPList.Contains(io.IO_IP) && io.GetIOAddr() >= 0)
{
IOIPList.Add(io.IO_IP);
}
if (DOList.ContainsKey(io.ProName))
{
LogUtil.debug("配置DO:[" + io.ToString() + "] ProName重复 ");
}
else
{
this.DOList.Add(con.ProName, io);
}
if (!SubDOList.ContainsKey(io.SubType))
{
SubDOList.Add(io.SubType, new Dictionary<string, ConfigIO>());
}
if (SubDOList[io.SubType].ContainsKey(io.ProName))
{
LogUtil.debug("配置DO:[" + io.ToString() + "] ProName重复 ");
}
else
{
SubDOList[io.SubType].Add(io.ProName, io);
}
if (!ioTypeList.Contains(con.ProName) || codeAutoLog)
{
AddBuffer(con, builder);
}
}
}
catch (Exception ex)
{
LogUtil.error("解析配置【" + con.ConfigStr + "】出错:" + ex.ToString());
}
}
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);//赋值****在这里需要考虑类型问题
}
}
}
}
}
}
}
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 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 void SetIO(int subType)
{
Dictionary<string, ConfigIO> doList = new Dictionary<string, ConfigIO>();
Dictionary<string, ConfigIO> diList = new Dictionary<string, ConfigIO>();
if (BaseConfig.SubDIList.ContainsKey(subType))
{
diList = BaseConfig.SubDIList[subType];
}
if (BaseConfig.SubDOList.ContainsKey(subType))
{
doList = BaseConfig.SubDOList[subType];
}
ConfigIO nsc = null;
foreach (string key in diList.Keys)
{
//if (key.Equals(IO_Type.NextStopCheck))
//{
// nsc = diList[key];
// continue;
//}
DIList.Add(key, diList[key]);
if (!IOIPList.Contains(diList[key].IO_IP))
{
IOIPList.Add(diList[key].IO_IP);
}
}
foreach (string key in doList.Keys)
{
DOList.Add(key, doList[key]);
if (!IOIPList.Contains(doList[key].IO_IP))
{
IOIPList.Add(doList[key].IO_IP);
}
}
//if (nsc!=null)
//{
// DIList.Add(IO_Type.NextStopCheck, nsc);
//}
}
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";
}
}