-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMLparser.cs
129 lines (121 loc) · 4.8 KB
/
XMLparser.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
/// Angelo's work
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
//XML file source http://www.w3.org/XML/Binary/2005/03/test-data/Over100K/periodic.xml
namespace CMPE2800_LINQICA
{
/// <summary>
/// A class to hold our eleis
/// by Angelo
/// </summary>
public class Element
{
/// <summary>
/// An Internal Constructor never ment to be called Consider using ElementLookUp.Table[with the Sybol] inplace
/// </summary>
/// <param name="_SYMBOL">Our SYMBOL ex. Au </param>
/// <param name="_name">The eles full name</param>
/// <param name="_ATOMIC_WEIGHT">the atomic wieght of the element</param>
/// <param name="_ATOMIC_NUMBER">the atomic number of the element</param>
internal Element(string _SYMBOL, string _name, string _ATOMIC_WEIGHT, string _ATOMIC_NUMBER)
{
if (_SYMBOL == null || _name == null || _ATOMIC_WEIGHT == null || _ATOMIC_NUMBER == null)
throw new ArgumentNullException("An argument was null");
SYMBOL = _SYMBOL;
name = _name;
ATOMIC_WEIGHT = double.Parse(_ATOMIC_WEIGHT);
ATOMIC_NUMBER = int.Parse(_ATOMIC_NUMBER);
}
/// <summary>
/// the elements full name
/// </summary>
public string name { get; private set; }
/// <summary>
/// the atomic wieght of the element
/// </summary>
public double ATOMIC_WEIGHT { get; private set; }
/// <summary>
/// the atomic number of the element
/// </summary>
public int ATOMIC_NUMBER { get; private set; }
/// <summary>
/// Our SYMBOL ex. Au
/// </summary>
public string SYMBOL { get; private set; }
}
/// <summary>
/// the look up class is static just call once
/// by Angelo
/// </summary>
static class ElementLookUp
{
/// <summary>
/// the master list of all the elements
/// </summary>
public static readonly Dictionary<string, Element> Table = new Dictionary<string, Element>();
/// <summary>
/// a static constructor to get the table from the xml
/// </summary>
static ElementLookUp()
{
//a string we will read to
string XMLRaw;
///DO NOT MOVE XML FILE FROM SOURCE files <---------------------!!!! but you can move your folder for the project
// try and read the file to a string
using (StreamReader SR = File.OpenText(Environment.CurrentDirectory + @"\..\..\Periodic table.txt"))
{
XMLRaw = SR.ReadToEnd();
}
//start a parser
using (XmlReader XR = XmlReader.Create(new StringReader(XMLRaw)))
{
// the builder of a ele class
string name = null;
string ATOMIC_WEIGHT = null;
string ATOMIC_NUMBER = null;
string SYMBOL = null;
Element Ele = null;
// while we have a line to read read
while (XR.Read())
{
switch (XR.NodeType)
{
//if it is an ele check the space name
case XmlNodeType.Element:
switch (XR.Name)
{
// store proper
case "NAME":
name = XR.ReadElementContentAsString();
break;
case "ATOMIC_WEIGHT":
ATOMIC_WEIGHT = XR.ReadElementContentAsString();
break;
case "ATOMIC_NUMBER":
ATOMIC_NUMBER = XR.ReadElementContentAsString();
break;
case "SYMBOL":
SYMBOL = XR.ReadElementContentAsString();
break;
}
break;
//if we are closing a element and it is an atom we are done
case XmlNodeType.EndElement:
if (XR.Name == "ATOM")
{
//store it and move on
Ele = new Element(SYMBOL, name, ATOMIC_WEIGHT, ATOMIC_NUMBER);
Table.Add(Ele.SYMBOL, Ele);
}
break;
}
}
}
}
}
}