-
Notifications
You must be signed in to change notification settings - Fork 804
Expand file tree
/
Copy pathExportManager.IPNetworkInfo.cs
More file actions
107 lines (96 loc) · 4.79 KB
/
ExportManager.IPNetworkInfo.cs
File metadata and controls
107 lines (96 loc) · 4.79 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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using NETworkManager.Models.Network;
using Newtonsoft.Json;
namespace NETworkManager.Models.Export;
public static partial class ExportManager
{
/// <summary>
/// Method to export objects from type <see cref="IPNetworkInfo" /> to a file.
/// </summary>
/// <param name="filePath">Path to the export file.</param>
/// <param name="fileType">Allowed <see cref="ExportFileType" /> are CSV, XML or JSON.</param>
/// <param name="collection">Objects as <see cref="IReadOnlyList{IPNetworkInfo}" /> to export.</param>
public static void Export(string filePath, ExportFileType fileType, IReadOnlyList<IPNetworkInfo> collection)
{
switch (fileType)
{
case ExportFileType.Csv:
CreateCsv(collection, filePath);
break;
case ExportFileType.Xml:
CreateXml(collection, filePath);
break;
case ExportFileType.Json:
CreateJson(collection, filePath);
break;
case ExportFileType.Txt:
default:
throw new ArgumentOutOfRangeException(nameof(fileType), fileType, null);
}
}
/// <summary>
/// Creates a CSV file from the given <see cref="IPNetworkInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{IPNetworkInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateCsv(IEnumerable<IPNetworkInfo> collection, string filePath)
{
var stringBuilder = new StringBuilder();
stringBuilder.AppendLine(
$"{nameof(IPNetworkInfo.Network)},{nameof(IPNetworkInfo.Broadcast)},{nameof(IPNetworkInfo.Total)},{nameof(IPNetworkInfo.Netmask)},{nameof(IPNetworkInfo.Cidr)},{nameof(IPNetworkInfo.FirstUsable)},{nameof(IPNetworkInfo.LastUsable)},{nameof(IPNetworkInfo.Usable)}");
foreach (var info in collection)
stringBuilder.AppendLine(
$"{info.Network},{info.Broadcast},{info.Total},{info.Netmask},{info.Cidr},{info.FirstUsable},{info.LastUsable},{info.Usable}");
File.WriteAllText(filePath, stringBuilder.ToString());
}
/// <summary>
/// Creates a XML file from the given <see cref="IPNetworkInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{IPNetworkInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateXml(IEnumerable<IPNetworkInfo> collection, string filePath)
{
var document = new XDocument(DefaultXDeclaration,
new XElement(ApplicationName.SubnetCalculator.ToString(),
new XElement(nameof(IPNetworkInfo) + "s",
from info in collection
select
new XElement(nameof(IPNetworkInfo),
new XElement(nameof(IPNetworkInfo.Network), info.Network),
new XElement(nameof(IPNetworkInfo.Broadcast), info.Broadcast),
new XElement(nameof(IPNetworkInfo.Total), info.Total),
new XElement(nameof(IPNetworkInfo.Netmask), info.Netmask),
new XElement(nameof(IPNetworkInfo.Cidr), info.Cidr),
new XElement(nameof(IPNetworkInfo.FirstUsable), info.FirstUsable),
new XElement(nameof(IPNetworkInfo.LastUsable), info.LastUsable),
new XElement(nameof(IPNetworkInfo.Usable), info.Usable)))));
document.Save(filePath);
}
/// <summary>
/// Creates a JSON file from the given <see cref="IPNetworkInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{IPNetworkInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateJson(IReadOnlyList<IPNetworkInfo> collection, string filePath)
{
var jsonData = new object[collection.Count];
for (var i = 0; i < collection.Count; i++)
jsonData[i] = new
{
Network = collection[i].Network.ToString(),
Broadcast = collection[i].Broadcast.ToString(),
collection[i].Total,
Netmask = collection[i].Netmask.ToString(),
collection[i].Cidr,
FirstUsable = collection[i].FirstUsable.ToString(),
LastUsable = collection[i].LastUsable.ToString(),
collection[i].Usable
};
File.WriteAllText(filePath, JsonConvert.SerializeObject(jsonData, Formatting.Indented));
}
}