forked from cyanfish/naps2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
76 lines (67 loc) · 2.81 KB
/
Program.cs
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
using CommandLine;
using NAPS2.Tools.Localization;
using NAPS2.Tools.Project;
using NAPS2.Tools.Project.Installation;
using NAPS2.Tools.Project.Packaging;
using NAPS2.Tools.Project.Releasing;
using NAPS2.Tools.Project.Verification;
using NAPS2.Tools.Project.Workflows;
namespace NAPS2.Tools;
public static class Program
{
// TODO: Add a "testpo"/"testlang" command that:
// - Takes the URL/path of a .po file as input
// - Downloads it
// - Replaces the corresponding .po file
// - Updates language resources for that language
// - Possibly then runs "pkg zip --name test-{lang}"
// TODO: Add a "setver" command that updates version targets, Info.plist, and anything else that needs a version
public static int Main(string[] args)
{
var commands = new CommandList()
.Add<CleanOptions, CleanCommand>()
.Add<BuildOptions, BuildCommand>()
.Add<TestOptions, TestCommand>()
.Add<PackageOptions, PackageCommand>()
.Add<InstallOptions, InstallCommand>()
.Add<VerifyOptions, VerifyCommand>()
.Add<PublishOptions, PublishCommand>()
.Add<VirusScanOptions, VirusScanCommand>()
.Add<ShareOptions, ShareCommand>()
.Add<TemplatesOptions, TemplatesCommand>()
.Add<ResxOptions, ResxCommand>()
.Add<PushTemplatesOptions, PushTemplatesCommand>()
.Add<PullTranslationsOptions, PullTranslationsCommand>()
.Add<SetVersionOptions, SetVersionCommand>()
.Add<WebsiteUpdateOptions, WebsiteUpdateCommand>()
.Add<SaneOptsOptions, SaneOptsCommand>();
var result = Parser.Default.ParseArguments(args, commands.OptionTypes);
if (result.Errors.Any())
{
return 1;
}
var options = (OptionsBase) result.Value;
Output.EnableVerbose = options.Verbose;
var commandType = commands.GetCommandType(options.GetType());
var command = Activator.CreateInstance(commandType);
var run = commandType.GetMethod("Run") ?? throw new InvalidOperationException();
run.Invoke(command, new object?[] { options });
return 0;
}
public class CommandList
{
private readonly List<Type> _optionTypes = new();
private readonly Dictionary<Type, Type> _optionTypeToCommandType = new();
public CommandList Add<TOption, TCommand>() where TOption : OptionsBase where TCommand : ICommand<TOption>
{
_optionTypes.Add(typeof(TOption));
_optionTypeToCommandType.Add(typeof(TOption), typeof(TCommand));
return this;
}
public Type[] OptionTypes => _optionTypes.ToArray();
public Type GetCommandType(Type optionType)
{
return _optionTypeToCommandType[optionType];
}
}
}