XMLCache.cs
7.8 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
using log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Xml;
namespace OnlineStore.Common
{
public class XMLCache<T>
{
public static readonly ILog LOGGER = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
public static Dictionary<string, Dictionary<int, T>> xmlCache = new Dictionary<string, Dictionary<int, T>>();
public static Dictionary<int, T> getAllData(Type type)
{
if (!xmlCache.ContainsKey(type.Name))
{
if (type == null)
{
return null;
}
loadXml(type);
}
Dictionary<int, T> allData = xmlCache[type.Name];
return allData;
}
private static Dictionary<int, T> loadXml(Type type)
{
string className = type.Name;
Dictionary<int, T> data = new Dictionary<int, T>();
// Type type = Assembly.Load("testTool.xml." + className).GetType();
string nodeName = className.Substring(0, className.Length - 3);
string parNodeName = nodeName + "Info";
string xmlName = className.Substring(0, className.Length - 3) + "Info.xml";
XmlDocument xmlDoc = new XmlDocument();
string xmlPath = System.Windows.Forms.Application.StartupPath + @"\data\";
xmlDoc.Load(xmlPath + xmlName);
XmlNode parNode = xmlDoc.SelectSingleNode(parNodeName);
XmlNodeList xmlNodeList = parNode.ChildNodes;
for (int i = 0; i < xmlNodeList.Count; i++)
{
XmlNode node = xmlNodeList.Item(i);
XmlAttributeCollection collo = node.Attributes;
XmlAttribute[] list = new XmlAttribute[collo.Count];
collo.CopyTo(list, 0);
var bllIns = type.Assembly.CreateInstance(type.FullName);
//取得属性集合
PropertyInfo[] props = type.GetProperties();
int id = 0;
foreach (XmlAttribute xmlA in list)
{
try
{
var prop = props.First(c => c.Name == xmlA.Name);//获取同名属性
if (prop != null)
{//如果属性存在
prop.SetValue(bllIns, Convert.ChangeType(xmlA.Value, prop.PropertyType), null);//赋值****在这里需要考虑类型问题
}
if (xmlA.Name.Equals("id"))
{
id = int.Parse(xmlA.Value);
}
}
catch (Exception ex)
{
LogUtil.error(LOGGER, "出现错误:" + ex.Message);
}
}
if (!data.ContainsKey(id))
{
data.Add(id, (T)bllIns);
}
}
xmlCache.Add(className, data);
return data;
}
internal static T getXmlById(Type type, int id)
{
if (!xmlCache.ContainsKey(type.Name))
{
if (type == null)
{
return default(T);
}
loadXml(type);
}
Dictionary<int, T> allData = xmlCache[type.Name];
if (!allData.ContainsKey(id))
{
System.Windows.Forms.MessageBox.Show("找不到ID=" + id + "的" + type.Name);
}
return allData[id];
}
public static void SaveXml(Type type, XmlData mo)
{
string className = type.Name;
//判断xml是否已经存在
string xmlName = className.Substring(0, className.Length - 3) + "Info.xml";
XmlDocument xmlDoc = new XmlDocument();
string xmlPath = System.Windows.Forms.Application.StartupPath + @"\data\";
xmlDoc.Load(xmlPath + xmlName);
string nodeName = className.Substring(0, className.Length - 3);
string parNodeName = nodeName + "Info";
XmlNode parNode = xmlDoc.SelectSingleNode(parNodeName);
XmlNodeList xmlNodeList = parNode.ChildNodes;
//新增
if (mo.id == 0)
{
Dictionary<int, T> dic = getAllData(type);
int id = 0;
foreach (int key in dic.Keys)
{
if (key >= id)
{
id = key + 1;
}
}
mo.id = id;
XmlNode node = xmlNodeList.Item(xmlNodeList.Count - 1);
XmlNode newNode = node.CloneNode(true);
XmlAttributeCollection collo = node.Attributes;
XmlAttribute[] list = new XmlAttribute[collo.Count];
collo.CopyTo(list, 0);
//取得属性集合
PropertyInfo[] props = type.GetProperties();
// parNode.RemoveChild(node);
foreach (XmlAttribute xmlA in list)
{
var prop = props.First(c => c.Name == xmlA.Name);//获取同名属性
if (prop != null)
{
node.Attributes.Remove(xmlA);
xmlA.Value = prop.GetValue(mo,null).ToString();
node.Attributes.Append(xmlA);
}
}
parNode.InsertBefore(newNode, node);
}
//修改
else
{
xmlCache[className].Remove(mo.id);
for (int i = 0; i < xmlNodeList.Count; i++)
{
XmlNode node = xmlNodeList.Item(i);
XmlAttributeCollection collo = node.Attributes;
XmlAttribute[] list = new XmlAttribute[collo.Count];
collo.CopyTo(list, 0);
bool isRight = false;
foreach (XmlAttribute xmlA in list)
{
try
{
if (xmlA.Name.Equals("id"))
{
int id = int.Parse(xmlA.Value);
if (id.Equals(mo.id))
{
isRight = true;
}
break;
}
}
catch (Exception ex)
{
LogUtil.error(LOGGER, "出现错误:" + ex.StackTrace);
}
}
if (isRight)
{ //取得属性集合
PropertyInfo[] props = type.GetProperties();
// parNode.RemoveChild(node);
foreach (XmlAttribute xmlA in list)
{
var prop = props.First(c => c.Name == xmlA.Name);//获取同名属性
if (prop != null)
{
node.Attributes.Remove(xmlA);
xmlA.Value = prop.GetValue(mo, null).ToString();
node.Attributes.Append(xmlA);
}
}
parNode.ReplaceChild(node, node);
break;
}
}
}
xmlDoc.Save(xmlPath + xmlName);
xmlCache[className].Add(mo.id, (T)(object)mo);
}
}
}