-
Notifications
You must be signed in to change notification settings - Fork 798
Expand file tree
/
Copy pathExportManager.ConnectionInfo.cs
More file actions
113 lines (102 loc) · 5.4 KB
/
ExportManager.ConnectionInfo.cs
File metadata and controls
113 lines (102 loc) · 5.4 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
108
109
110
111
112
113
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="ConnectionInfo" /> 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{ConnectionInfo}" /> to export.</param>
public static void Export(string filePath, ExportFileType fileType, IReadOnlyList<ConnectionInfo> 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="ConnectionInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{ConnectionInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateCsv(IEnumerable<ConnectionInfo> collection, string filePath)
{
var stringBuilder = new StringBuilder();
stringBuilder.AppendLine(
$"{nameof(ConnectionInfo.Protocol)},{nameof(ConnectionInfo.LocalIPAddress)},{nameof(ConnectionInfo.LocalPort)},{nameof(ConnectionInfo.RemoteIPAddress)},{nameof(ConnectionInfo.RemotePort)},{nameof(ConnectionInfo.RemoteHostname)},{nameof(ConnectionInfo.TcpState)},{nameof(ConnectionInfo.ProcessId)},{nameof(ConnectionInfo.ProcessName)},{nameof(ConnectionInfo.ProcessPath)}"
);
foreach (var info in collection)
stringBuilder.AppendLine(
$"{info.Protocol},{info.LocalIPAddress},{info.LocalPort},{info.RemoteIPAddress},{info.RemotePort},{EscapeCsvValue(info.RemoteHostname)},{info.TcpState},{info.ProcessId},{EscapeCsvValue(info.ProcessName)},{EscapeCsvValue(info.ProcessPath)}");
File.WriteAllText(filePath, stringBuilder.ToString());
}
/// <summary>
/// Creates a XML file from the given <see cref="ConnectionInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{ConnectionInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateXml(IEnumerable<ConnectionInfo> collection, string filePath)
{
var document = new XDocument(DefaultXDeclaration,
new XElement(ApplicationName.Connections.ToString(),
new XElement(nameof(ConnectionInfo) + "s",
from info in collection
select
new XElement(nameof(ConnectionInfo),
new XElement(nameof(ConnectionInfo.Protocol), info.Protocol),
new XElement(nameof(ConnectionInfo.LocalIPAddress), info.LocalIPAddress),
new XElement(nameof(ConnectionInfo.LocalPort), info.LocalPort),
new XElement(nameof(ConnectionInfo.RemoteIPAddress), info.RemoteIPAddress),
new XElement(nameof(ConnectionInfo.RemotePort), info.RemotePort),
new XElement(nameof(ConnectionInfo.RemoteHostname), info.RemoteHostname),
new XElement(nameof(ConnectionInfo.TcpState), info.TcpState),
new XElement(nameof(ConnectionInfo.ProcessId), info.ProcessId),
new XElement(nameof(ConnectionInfo.ProcessName), info.ProcessName),
new XElement(nameof(ConnectionInfo.ProcessPath), info.ProcessPath)
))));
document.Save(filePath);
}
/// <summary>
/// Creates a JSON file from the given <see cref="ConnectionInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{ConnectionInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateJson(IReadOnlyList<ConnectionInfo> collection, string filePath)
{
var jsonData = new object[collection.Count];
for (var i = 0; i < collection.Count; i++)
jsonData[i] = new
{
Protocol = collection[i].Protocol.ToString(),
LocalIPAddress = collection[i].LocalIPAddress.ToString(),
collection[i].LocalPort,
RemoteIPAddress = collection[i].RemoteIPAddress.ToString(),
collection[i].RemotePort,
collection[i].RemoteHostname,
TcpState = collection[i].TcpState.ToString(),
collection[i].ProcessId,
collection[i].ProcessName,
collection[i].ProcessPath
};
File.WriteAllText(filePath, JsonConvert.SerializeObject(jsonData, Formatting.Indented));
}
}