-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
77 lines (64 loc) · 2.01 KB
/
Program.cs
File metadata and controls
77 lines (64 loc) · 2.01 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
using System.Linq;
using System.Text.RegularExpressions;
using CommandDotNet;
using CommandDotNet.Help;
using FizzCode.LightWeight.Configuration;
using Microsoft.Extensions.Configuration;
namespace FizzCode.DbTools.Console;
public static class Program
{
public static bool Terminated { get; set; }
public static IConfigurationRoot? Configuration { get; private set; }
public static void Main(string[] args)
{
Configuration = ConfigurationLoader.LoadFromJsonFile("config");
DbProviderFactoryRegistrator.LoadFromConfiguration(Configuration);
if (args.Length > 0)
{
var runner = new AppRunner<AppCommands>(GetAppSettings());
runner.Run(args);
}
DisplayHelp();
var regEx = new Regex("(?<=\")[^\"]*(?=\")|[^\" ]+");
while (!Terminated)
{
System.Console.Write("> ");
var commandLine = System.Console.ReadLine();
if (string.IsNullOrEmpty(commandLine))
continue;
var lineArguments = regEx
.Matches(commandLine.Trim())
.Select(x => x.Value.Trim())
.ToArray();
var runner = new AppRunner<AppCommands>(GetAppSettings());
runner.Run(lineArguments);
System.Console.WriteLine();
}
}
internal static void DisplayHelp(string? command = null)
{
var runner = new AppRunner<AppCommands>(GetAppSettings());
if (string.IsNullOrEmpty(command))
{
runner.Run("--help");
}
else
{
var args = command.Split(' ').ToList();
args.Add("--help");
runner.Run(args.ToArray());
}
}
private static AppSettings GetAppSettings()
{
return new AppSettings()
{
Help = new AppHelpSettings()
{
TextStyle = HelpTextStyle.Basic,
UsageAppName = ">",
PrintHelpOption = false,
},
};
}
}