-
Notifications
You must be signed in to change notification settings - Fork 1
/
StateData.cs
130 lines (104 loc) · 3.47 KB
/
StateData.cs
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
using System;
using System.Xml;
using System.Xml.XPath;
using System.IO;
public class StateData
{
#region Variables
private string _fname = String.Empty;
private string _sname = String.Empty;
#endregion
#region Functions
public string FileName
{
get { return _fname; }
set { _fname = value; }
}
public string ModuleName
{
get { return _sname; }
set { _sname = value; }
}
public string getSavedState(string deviceName)
{
string retval = string.Empty;
try
{
XmlDocument x = new XmlDocument();
XPathNavigator xpn = x.CreateNavigator();
if (File.Exists(_fname) & (_sname != String.Empty))
{
x.Load(_fname);
string xpath = String.Format("/{0}/device[@name='{1}']/currentState", _sname, deviceName);
XPathNavigator currentStateNode = xpn.SelectSingleNode(xpath);
if (currentStateNode != null)
{
retval = currentStateNode.InnerXml;
}
}
}
catch { }
return retval;
}
//public void saveState(string deviceName, string[] state, DateTime[] stateDate, int iPacketSize)
//{
// saveState(deviceName, ArraytoString(state, stateDate, iPacketSize) );
//}
public void saveState(string deviceName, string deviceState)
{
if (_sname != String.Empty)
{
try
{
XmlDocument xmlDoc = new XmlDocument();
XPathNavigator xpn = xmlDoc.CreateNavigator();
if (!File.Exists(_fname))
{
CreateXmlDoc(xmlDoc, xpn, deviceName);
}
else
{
xmlDoc.Load(_fname);
}
string xpath = String.Format("/{0}/device[@name='{1}']/currentState", _sname, deviceName);
XPathNavigator currentStateNode = xpn.SelectSingleNode(xpath);
if (currentStateNode == null)
{
AddDeviceToXmlDoc(xmlDoc, xpn, deviceName);
currentStateNode = xpn.SelectSingleNode(xpath);
}
currentStateNode.SetValue(deviceState);
xmlDoc.Save(_fname);
}
catch { }
}
}
private static string ArraytoString(string[] state, DateTime[] stateDate, int iPacketSize)
{
string tmpString = string.Empty;
for (int i = 0; i < iPacketSize; i++)
{
tmpString += state[i] + "|" + stateDate[i] + "~";
}
return tmpString.Trim('~').Trim();
}
private void AddDeviceToXmlDoc(XmlDocument xmlDoc, XPathNavigator xpn, string deviceName)
{
XmlNode root = xmlDoc.DocumentElement;
// create the device (by name)
XmlElement deviceNode = xmlDoc.CreateElement("device");
deviceNode.SetAttribute("name", deviceName);
root.AppendChild(deviceNode);
XmlElement currentStateNode = xmlDoc.CreateElement("currentState");
//Add the node to the document.
deviceNode.AppendChild(currentStateNode);
}
private void CreateXmlDoc(XmlDocument x, XPathNavigator xpn, string deviceName)
{
//Create a new root
XmlElement rootElement = x.CreateElement(_sname);
x.AppendChild(rootElement);
AddDeviceToXmlDoc(x, xpn, deviceName);
}
#endregion
}