-
Notifications
You must be signed in to change notification settings - Fork 808
Expand file tree
/
Copy pathExportManager.SNMPReceivedInfo.cs
More file actions
94 lines (83 loc) · 3.53 KB
/
ExportManager.SNMPReceivedInfo.cs
File metadata and controls
94 lines (83 loc) · 3.53 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
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="SNMPInfo" /> 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{SNMPInfo}" /> to export.</param>
public static void Export(string filePath, ExportFileType fileType,
IReadOnlyList<SNMPInfo> 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="SNMPInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{SNMPInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateCsv(IEnumerable<SNMPInfo> collection, string filePath)
{
var stringBuilder = new StringBuilder();
stringBuilder.AppendLine($"{nameof(SNMPInfo.OID)},{nameof(SNMPInfo.Data)}");
foreach (var info in collection)
stringBuilder.AppendLine($"{EscapeCsvValue(info.OID)},{EscapeCsvValue(info.Data)}");
File.WriteAllText(filePath, stringBuilder.ToString());
}
/// <summary>
/// Creates a XML file from the given <see cref="SNMPInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{SNMPInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateXml(IEnumerable<SNMPInfo> collection, string filePath)
{
var document = new XDocument(DefaultXDeclaration,
new XElement(ApplicationName.SNMP.ToString(),
new XElement(nameof(SNMPInfo) + "s",
from info in collection
select
new XElement(nameof(SNMPInfo),
new XElement(nameof(SNMPInfo.OID), info.OID),
new XElement(nameof(SNMPInfo.Data), info.Data)))));
document.Save(filePath);
}
/// <summary>
/// Creates a JSON file from the given <see cref="SNMPInfo" /> collection.
/// </summary>
/// <param name="collection">Objects as <see cref="IReadOnlyList{SNMPInfo}" /> to export.</param>
/// <param name="filePath">Path to the export file.</param>
private static void CreateJson(IReadOnlyList<SNMPInfo> collection, string filePath)
{
var jsonData = new object[collection.Count];
for (var i = 0; i < collection.Count; i++)
jsonData[i] = new
{
collection[i].OID,
collection[i].Data
};
File.WriteAllText(filePath, JsonConvert.SerializeObject(jsonData, Formatting.Indented));
}
}