mirror of
https://github.com/fasteddy516/SimplySerial.git
synced 2024-11-24 10:04:35 +00:00
Adding input configuration file option using -i:config.txt
This commit is contained in:
parent
54ced10eaf
commit
90c7b2c4e6
@ -410,9 +410,37 @@ namespace SimplySerial
|
|||||||
|
|
||||||
// sort the parameters so that they get processed in order of priority (i.e. 'quiet' option gets processed before something that would normally result in console output, etc.)
|
// sort the parameters so that they get processed in order of priority (i.e. 'quiet' option gets processed before something that would normally result in console output, etc.)
|
||||||
Array.Sort(args, new ArgumentSorter());
|
Array.Sort(args, new ArgumentSorter());
|
||||||
|
List <string> argList = args.ToList();
|
||||||
|
|
||||||
// iterate through command-line arguments
|
// iterate through command-line arguments
|
||||||
foreach (string arg in args)
|
foreach (string arg in args)
|
||||||
|
{
|
||||||
|
// split argument into components based on 'key:value' formatting
|
||||||
|
string[] argument = arg.Split(new[] { ':' }, 2);
|
||||||
|
argument[0] = argument[0].ToLower();
|
||||||
|
// input config file
|
||||||
|
if (argument[0].StartsWith("i"))
|
||||||
|
{
|
||||||
|
if (argument.Length != 2)
|
||||||
|
{
|
||||||
|
ExitProgram(("Input filename not provided"), exitCode: -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string[] lines = File.ReadAllLines(argument[1]);
|
||||||
|
argList = lines.ToList();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
ExitProgram(("Invalid file name <" + argument[1] + ">"), exitCode: -1);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// iterate through command-line arguments
|
||||||
|
foreach (string arg in argList)
|
||||||
{
|
{
|
||||||
// split argument into components based on 'key:value' formatting
|
// split argument into components based on 'key:value' formatting
|
||||||
string[] argument = arg.Split(new[] { ':' }, 2);
|
string[] argument = arg.Split(new[] { ':' }, 2);
|
||||||
@ -742,6 +770,7 @@ namespace SimplySerial
|
|||||||
Console.WriteLine(" -encoding:ENC UTF8 | ASCII | RAW");
|
Console.WriteLine(" -encoding:ENC UTF8 | ASCII | RAW");
|
||||||
Console.WriteLine(" -noclear Don't clear the terminal screen on connection.");
|
Console.WriteLine(" -noclear Don't clear the terminal screen on connection.");
|
||||||
Console.WriteLine(" -nostatus Block status/title updates from virtual terminal sequences.");
|
Console.WriteLine(" -nostatus Block status/title updates from virtual terminal sequences.");
|
||||||
|
Console.WriteLine(" -input Input file whose each line contain an option without '-' infront. eg: com:COM1");
|
||||||
Console.WriteLine("\nPress CTRL-X to exit a running instance of SimplySerial.\n");
|
Console.WriteLine("\nPress CTRL-X to exit a running instance of SimplySerial.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user