-
Notifications
You must be signed in to change notification settings - Fork 809
Expand file tree
/
Copy pathExportManager.PortLookupInfo.cs
More file actions
98 lines (87 loc) · 4.06 KB
/
ExportManager.PortLookupInfo.cs
File metadata and controls
98 lines (87 loc) · 4.06 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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using NETworkManager.Models.Lookup;
using Newtonsoft.Json;
namespace NETworkManager.Models.Export;
public static partial class ExportManager
{
/// <summary>
/// Method to export objects from type <see cref="PortLookupInfo" /> 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{PortLookupInfo}" /> to export.</param>
public static void Export(string filePath, ExportFileType fileType, IReadOnlyList<PortLookupInfo> 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="PortLookupInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{PortLookupInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateCsv(IEnumerable<PortLookupInfo> collection, string filePath)
{
var stringBuilder = new StringBuilder();
stringBuilder.AppendLine(
$"{nameof(PortLookupInfo.Number)},{nameof(PortLookupInfo.Protocol)},{nameof(PortLookupInfo.Service)},{nameof(PortLookupInfo.Description)}");
foreach (var info in collection)
stringBuilder.AppendLine($"{info.Number},{info.Protocol},{EscapeCsvValue(info.Service)},{EscapeCsvValue(info.Description)}");
File.WriteAllText(filePath, stringBuilder.ToString());
}
/// <summary>
/// Creates a XML file from the given <see cref="PortLookupInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{PortLookupInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateXml(IEnumerable<PortLookupInfo> collection, string filePath)
{
var document = new XDocument(DefaultXDeclaration,
new XElement(ApplicationName.Lookup.ToString(),
new XElement(nameof(PortLookupInfo) + "s",
from info in collection
select
new XElement(nameof(PortLookupInfo),
new XElement(nameof(PortLookupInfo.Number), info.Number),
new XElement(nameof(PortLookupInfo.Protocol), info.Protocol),
new XElement(nameof(PortLookupInfo.Service), info.Service),
new XElement(nameof(PortLookupInfo.Description), info.Description)))));
document.Save(filePath);
}
/// <summary>
/// Creates a JSON file from the given <see cref="PortLookupInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{PortLookupInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateJson(IReadOnlyList<PortLookupInfo> collection, string filePath)
{
var jsonData = new object[collection.Count];
for (var i = 0; i < collection.Count; i++)
jsonData[i] = new
{
collection[i].Number,
Protocol = collection[i].Protocol.ToString(),
collection[i].Service,
collection[i].Description
};
File.WriteAllText(filePath, JsonConvert.SerializeObject(jsonData, Formatting.Indented));
}
}