refactor: change deserialization procedure in DeserializeXml to use Xml.Linq
This commit is contained in:
parent
f11b17746a
commit
573299ed48
@ -9,6 +9,57 @@ public static class CliOptionsHandlers
|
|||||||
public static void UniversalHandler(FileInfo? inputFile,
|
public static void UniversalHandler(FileInfo? inputFile,
|
||||||
FileInfo? outputFile, bool useDatabase, string? sqlQuery)
|
FileInfo? outputFile, bool useDatabase, string? sqlQuery)
|
||||||
{
|
{
|
||||||
|
// Validate input file
|
||||||
|
if (inputFile != null)
|
||||||
|
{
|
||||||
|
if (!inputFile.Exists)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Input file doesn't exist.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate output file
|
||||||
|
if (outputFile != null)
|
||||||
|
{
|
||||||
|
if (!Directory.Exists(outputFile.DirectoryName))
|
||||||
|
{
|
||||||
|
Console.WriteLine("Output directory doesn't exist.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If output file with the same name already exists –
|
||||||
|
// prompt user to change a name of the file
|
||||||
|
while (outputFile.Exists)
|
||||||
|
{
|
||||||
|
Console.Write("Output file already exists. Do you want to overwrite it? [y/N] ");
|
||||||
|
var opt = Console.ReadLine();
|
||||||
|
|
||||||
|
if (String.IsNullOrEmpty(opt) || opt.ToLower() == "no" ||
|
||||||
|
opt.ToLower() == "n")
|
||||||
|
{
|
||||||
|
Console.Write("Enter a <new_name>[.kml]: ");
|
||||||
|
var name = Console.ReadLine();
|
||||||
|
|
||||||
|
if (String.IsNullOrEmpty(name))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
outputFile = new FileInfo(
|
||||||
|
Path.Join(outputFile.DirectoryName, name));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opt.ToLower() == "yes" ||
|
||||||
|
opt.ToLower() == "y")
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run some logic based on options combination
|
||||||
if (inputFile != null && outputFile != null)
|
if (inputFile != null && outputFile != null)
|
||||||
{
|
{
|
||||||
var wirelessNetworks = Helpers.DeserializeXml(inputFile);
|
var wirelessNetworks = Helpers.DeserializeXml(inputFile);
|
||||||
@ -58,6 +109,11 @@ public static class CliOptionsHandlers
|
|||||||
using var dbContext = new DatabaseContext();
|
using var dbContext = new DatabaseContext();
|
||||||
Console.WriteLine(dbContext.Database.ExecuteSqlRaw(sqlQuery));
|
Console.WriteLine(dbContext.Database.ExecuteSqlRaw(sqlQuery));
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Console.WriteLine("Options combination is unsupported or some option lacks an argument." +
|
||||||
|
"\nUse --help to see use case examples.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string GetKmlString(IEnumerable<WirelessNetwork> wirelessNetworks)
|
private static string GetKmlString(IEnumerable<WirelessNetwork> wirelessNetworks)
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using System.Xml;
|
using System.Xml.Linq;
|
||||||
using System.Xml.Serialization;
|
|
||||||
using netxml2kml.Models;
|
using netxml2kml.Models;
|
||||||
|
|
||||||
namespace netxml2kml.Methods;
|
namespace netxml2kml.Methods;
|
||||||
@ -9,61 +8,53 @@ public static class Helpers
|
|||||||
public static WirelessNetwork[] DeserializeXml(FileInfo inputFile)
|
public static WirelessNetwork[] DeserializeXml(FileInfo inputFile)
|
||||||
{
|
{
|
||||||
/* Deserialize to MonoXSD autogenerated class model */
|
/* Deserialize to MonoXSD autogenerated class model */
|
||||||
|
|
||||||
var xmlSerializer = new XmlSerializer(typeof(detectionrun));
|
|
||||||
var detectionRun = (detectionrun?) xmlSerializer.Deserialize(
|
|
||||||
XmlReader.Create(inputFile.OpenRead(),
|
|
||||||
new XmlReaderSettings {DtdProcessing = DtdProcessing.Parse}));
|
|
||||||
|
|
||||||
/* Convert machine deserialization to readable class format */
|
var srcTree = XDocument.Load(inputFile.OpenRead());
|
||||||
|
var srcNets = srcTree.Root!.Elements("wireless-network")
|
||||||
|
.Where(wn => wn.Attribute("type")!.Value != "probe").ToList();
|
||||||
|
|
||||||
var wirelessNetworks =
|
var wirelessNetworks = new WirelessNetwork[srcNets.Count];
|
||||||
new WirelessNetwork[detectionRun!.wirelessnetwork.Count(wn =>
|
|
||||||
wn.type != "probe")];
|
|
||||||
|
|
||||||
for (int i = 0; i < detectionRun.wirelessnetwork.Length; i++)
|
for (int i = 0; i < srcNets.Count; i++)
|
||||||
{
|
{
|
||||||
var detectionRunWirelessNetwork = detectionRun.wirelessnetwork[i];
|
Console.WriteLine(i);
|
||||||
|
var srcNet = srcNets[i];
|
||||||
|
|
||||||
// If wireless network is a client – skip
|
var essid = srcNet.Element("SSID")!.Element("essid")!.Value;
|
||||||
if (detectionRunWirelessNetwork.type == "probe")
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
wirelessNetworks[i] = new()
|
wirelessNetworks[i] = new()
|
||||||
{
|
{
|
||||||
Essid = detectionRunWirelessNetwork.SSID.First().essid?.First().Value,
|
Essid = essid != "" ? essid : null,
|
||||||
Encryption = detectionRunWirelessNetwork.SSID.First().encryption?.Last()?.Value,
|
Encryption = srcNet.Element("SSID")!.Elements("encryption").LastOrDefault()?.Value,
|
||||||
Bssid = detectionRunWirelessNetwork.BSSID,
|
Bssid = srcNet.Element("BSSID")!.Value,
|
||||||
Manufacturer = detectionRunWirelessNetwork.manuf,
|
Manufacturer = srcNet.Element("manuf")!.Value,
|
||||||
FrequencyMhz = Math.Round(Double.Parse(detectionRunWirelessNetwork.freqmhz.Substring(0, 2)) / 10, 1, MidpointRounding.ToPositiveInfinity),
|
FrequencyMhz = Math.Round(Double.Parse(srcNet.Element("freqmhz")!.Value.Substring(0, 2)) / 10, 1, MidpointRounding.ToPositiveInfinity),
|
||||||
MaxSignalDbm = Int32.Parse(detectionRunWirelessNetwork.snrinfo.First().max_signal_dbm),
|
MaxSignalDbm = Int32.Parse(srcNet.Element("snr-info")!.Element("max_signal_dbm")!.Value),
|
||||||
MaxLatitude = Double.Parse(detectionRunWirelessNetwork.gpsinfo.First().maxlat),
|
MaxLatitude = Double.Parse(srcNet.Element("gps-info")!.Element("max-lat")!.Value),
|
||||||
MaxLongitude = Double.Parse(detectionRunWirelessNetwork.gpsinfo.First().maxlon),
|
MaxLongitude = Double.Parse(srcNet.Element("gps-info")!.Element("max-lon")!.Value),
|
||||||
MaxAltitude = Double.Parse(detectionRunWirelessNetwork.gpsinfo.First().maxalt),
|
MaxAltitude = Double.Parse(srcNet.Element("gps-info")!.Element("max-alt")!.Value),
|
||||||
FirstSeenDate = StringToDate(detectionRunWirelessNetwork.firsttime),
|
FirstSeenDate = StringToDate(srcNet.Attribute("first-time")!.Value),
|
||||||
LastUpdateDate = StringToDate(detectionRunWirelessNetwork.lasttime)
|
LastUpdateDate = StringToDate(srcNet.Attribute("last-time")!.Value)
|
||||||
};
|
};
|
||||||
|
|
||||||
// If wireless network has no clients – continue
|
// If wireless network has no clients – continue
|
||||||
if (detectionRunWirelessNetwork.wirelessclient == null)
|
if (!srcNet.Elements("wireless-client").Any())
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
var wirelessConnections = new List<WirelessConnection>(detectionRunWirelessNetwork.wirelessclient.Length);
|
var wirelessConnections = new List<WirelessConnection>(srcNet.Elements("wireless-client").Count());
|
||||||
|
|
||||||
foreach (var wc in detectionRunWirelessNetwork.wirelessclient)
|
foreach (var wc in srcNet.Elements("wireless-client").ToArray())
|
||||||
{
|
{
|
||||||
wirelessConnections.Add(new WirelessConnection
|
wirelessConnections.Add(new WirelessConnection
|
||||||
{
|
{
|
||||||
WirelessClient = new WirelessClient
|
WirelessClient = new WirelessClient
|
||||||
{
|
{
|
||||||
Mac = wc.clientmac,
|
Mac = wc.Element("client-mac")!.Value,
|
||||||
Manufacturer = wc.clientmanuf,
|
Manufacturer = wc.Element("client-manuf")!.Value,
|
||||||
FirstSeenDate = StringToDate(wc.firsttime),
|
FirstSeenDate = StringToDate(wc.Attribute("first-time")!.Value),
|
||||||
LastUpdateDate = StringToDate(wc.lasttime)
|
LastUpdateDate = StringToDate(wc.Attribute("last-time")!.Value)
|
||||||
},
|
},
|
||||||
WirelessNetwork = wirelessNetworks[i]
|
WirelessNetwork = wirelessNetworks[i]
|
||||||
});
|
});
|
||||||
@ -72,7 +63,7 @@ public static class Helpers
|
|||||||
wirelessNetworks[i].WirelessConnections = wirelessConnections;
|
wirelessNetworks[i].WirelessConnections = wirelessConnections;
|
||||||
}
|
}
|
||||||
|
|
||||||
return wirelessNetworks;
|
return wirelessNetworks.ToArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static DateTime StringToDate(string dateString)
|
public static DateTime StringToDate(string dateString)
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
|||||||
using System.CommandLine;
|
using System.CommandLine;
|
||||||
using netxml2kml.Methods;
|
using netxml2kml.Methods;
|
||||||
|
|
||||||
namespace netxml2kml;
|
namespace netxml2kml;
|
||||||
@ -8,22 +8,34 @@ class Program
|
|||||||
static async Task<int> Main(string[] args)
|
static async Task<int> Main(string[] args)
|
||||||
{
|
{
|
||||||
// Define CLI parser options, commands & handlers
|
// Define CLI parser options, commands & handlers
|
||||||
|
|
||||||
var inputOption = new Option<FileInfo?>(
|
var inputOption = new Option<FileInfo?>(
|
||||||
aliases: new[] {"-i", "--input"},
|
aliases: new[] {"-i", "--input"},
|
||||||
description: "Path to the file to be converted.");
|
description: "Path to the file to be converted.")
|
||||||
|
{
|
||||||
|
Arity = ArgumentArity.ZeroOrOne
|
||||||
|
};
|
||||||
|
|
||||||
var outputOption = new Option<FileInfo?>(
|
var outputOption = new Option<FileInfo?>(
|
||||||
aliases: new[] {"-o", "--output"},
|
aliases: new[] {"-o", "--output"},
|
||||||
description: "The name of the file to be created.");
|
description: "The name of the file to be created.")
|
||||||
|
{
|
||||||
|
Arity = ArgumentArity.ZeroOrOne
|
||||||
|
};
|
||||||
|
|
||||||
var databaseOption = new Option<bool>(
|
var databaseOption = new Option<bool>(
|
||||||
aliases: new[] {"-d", "--use-database"},
|
aliases: new[] {"-d", "--use-database"},
|
||||||
description: "Use database. Save/retrieve wireless networks and clients to/from sqlite database.");
|
description: "Use database. Save/retrieve wireless networks and clients to/from sqlite database.")
|
||||||
|
{
|
||||||
|
Arity = ArgumentArity.ZeroOrOne
|
||||||
|
};
|
||||||
|
|
||||||
var queryOption = new Option<string?>(
|
var queryOption = new Option<string?>(
|
||||||
aliases: new[] {"-q", "--query"},
|
aliases: new[] {"-q", "--query"},
|
||||||
description: "Filter input using sql query.");
|
description: "Filter input using sql query.")
|
||||||
|
{
|
||||||
|
Arity = ArgumentArity.ZeroOrOne
|
||||||
|
};
|
||||||
|
|
||||||
var rootCommand = new RootCommand("netxml2kml – .netxml to .kml converter.");
|
var rootCommand = new RootCommand("netxml2kml – .netxml to .kml converter.");
|
||||||
rootCommand.AddOption(inputOption);
|
rootCommand.AddOption(inputOption);
|
||||||
|
Loading…
Reference in New Issue
Block a user