-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinqXmlEditor.cs
82 lines (79 loc) · 2.71 KB
/
LinqXmlEditor.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;
namespace XmlAnalyze
{
public class LinqXmlEditor : IXmlEditor
{
public string XmlFilePath { get; set; }
private XDocument XmlFile;
public LinqXmlEditor(string xmlFilePath)
{
XmlFilePath = xmlFilePath;
XmlFile = XDocument.Load(XmlFilePath);
}
private string[] FindByTagInStudent(string Tag)
{
return (from student in XmlFile.Descendants("Student") orderby student.Element(Tag).Value ascending select student.Element(Tag).Value).ToArray();
}
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()
{
IEnumerable<string> years = FindByTagInStudent("CourseYear");
int[] YearsSorted = new int[years.Count()];
for (int i = 0; i < years.Count(); ++i)
{
YearsSorted[i] = Convert.ToInt32(years.ElementAt(i));
}
return YearsSorted;
}
public void AddStudentToEndOfXml(Student ToAdd)
{
XElement stud = new XElement("Student",
new XElement("Name", ToAdd.Name),
new XElement("Faculty", ToAdd.Faculty),
new XElement("Adress", ToAdd.Adress),
new XElement("Cathedra", ToAdd.Cathedra),
new XElement("CourseYear", ToAdd.CourseYear)
);
if (XmlFile.Element("Dorm").FirstNode == null)
{
XmlFile.Element("Dorm").AddFirst(stud);
return;
}
XmlFile.Element("Dorm").Elements("Student").Where(x=>(x.NextNode==null)).FirstOrDefault().AddAfterSelf(stud);
XmlFile.Save(XmlFilePath);
return;
}
public void RemoveStudentFromEndOfXml()
{
if (XmlFile.Descendants("Student").Count()==0 || XmlFile.Descendants("Student").Count() == 1)
{
return;
}
XmlFile.Element("Dorm").Elements("Student").Where(x => (x.NextNode == null)).FirstOrDefault().Remove();
XmlFile.Save(XmlFilePath);
return;
}
}
}