-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSaxXmlEditor.cs
157 lines (150 loc) · 4.95 KB
/
SaxXmlEditor.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
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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
namespace XmlAnalyze
{
public class SaxXmlEditor : IXmlEditor
{
public string XmlFilePath { get; set; }
private XmlReader reader;
public SaxXmlEditor(string XmlFilePath)
{
this.XmlFilePath = XmlFilePath;
}
private string [] FindByTagInStudent(string Tag)
{
reader = new XmlTextReader(XmlFilePath);
List<string> names = new List<string>();
while (reader.Read())
{
if (reader.NodeType == XmlNodeType.Element)
{
if (reader.Name == Tag)
{
names.Add(reader.ReadInnerXml());
}
}
}
string[] Result = new string[names.Count];
for (int i = 0; i < names.Count; ++i) Result[i] = names[i].ToString();
Array.Sort(Result);
return Result;
}
public string[] GetNamesSorted()
{
return FindByTagInStudent("Name");
}
public string[] GetFacultiesSorted()
{
return FindByTagInStudent("Faculty");
}
public string[] GetAdressesSorted()
{
return FindByTagInStudent("Adress");
}
public string[] GetCathedrasSorted()
{
return FindByTagInStudent("Cathedra");
}
public int[] GetCourseYearsSorted()
{
string[] Result = FindByTagInStudent("CourseYear");
int Cnt = Result.Length;
int[] CourseYearsSorted = new int[Cnt];
for (int i = 0; i < Cnt; ++i) CourseYearsSorted[i] = Convert.ToInt32(Result[i]);
return CourseYearsSorted;
}
public void AddStudentToEndOfXml(Student ToAdd)
{
reader = new XmlTextReader(XmlFilePath);
int Cnt = 0;
string XmlResult = "";
foreach (string line in File.ReadLines(XmlFilePath))
{
if (line.Contains("Student"))
{
++Cnt;
}
}
int CurrentCnt = 0;
foreach (string line in File.ReadLines(XmlFilePath))
{
XmlResult += line;
XmlResult += "\r\n";
if (line.Contains("Student"))
{
++CurrentCnt;
if (CurrentCnt == Cnt)
{
XmlResult += $" <Student>\r\n" +
$" <Name>{ToAdd.Name}</Name>\r\n " +
$" <Faculty>{ToAdd.Faculty}</Faculty>\r\n " +
$" <Adress>{ToAdd.Adress}</Adress>\r\n " +
$" <Cathedra>{ToAdd.Cathedra}</Cathedra>\r\n " +
$" <CourseYear>{ToAdd.CourseYear}</CourseYear>\r\n " +
$" </Student>\r\n";
}
}
}
using (var writer = new StreamWriter(new FileStream(XmlFilePath, FileMode.Create), Encoding.UTF8))
{
writer.Write(XmlResult);
}
}
public void RemoveStudentFromEndOfXml()
{
reader = new XmlTextReader(XmlFilePath);
int Cnt = 0;
string XmlResult = "";
foreach (string line in File.ReadLines(XmlFilePath))
{
if (line.Contains("Student"))
{
++Cnt;
}
}
if (Cnt <= 2)
{
foreach (string line in File.ReadLines(XmlFilePath))
{
XmlResult += line;
XmlResult+= "\r\n";
}
}
else
{
int CurrentCnt = 0;
foreach (string line in File.ReadLines(XmlFilePath))
{
if (CurrentCnt < Cnt - 2)
{
XmlResult+= line;
XmlResult += "\r\n";
}
else if (CurrentCnt==Cnt-2 && !line.Contains("Student"))
{
XmlResult+= line;
XmlResult += "\r\n";
}
else if (CurrentCnt == Cnt)
{
XmlResult+= line;
XmlResult += "\r\n";
}
if (line.Contains("Student"))
{
++CurrentCnt;
}
}
}
using (var writer = new StreamWriter(new FileStream(XmlFilePath, FileMode.Create), Encoding.UTF8))
{
writer.Write(XmlResult);
}
}
}
}