This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
CommandPromptReader.n
177 lines (152 loc) · 6.02 KB
/
CommandPromptReader.n
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
using Nemerle.Collections;
using Nemerle.Imperative;
using Nemerle.Text;
using Nemerle.Utility;
using Nemerle.Utility.Getopt;
using Nitra;
using Nitra.Declarations;
using Nitra.LanguageCompiler.Utils;
using Nitra.ProjectSystem;
using System;
using System.Collections.Generic;
using System.Console;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
namespace Nitra.LanguageCompiler
{
class CommandPromptReader
{
public LanguageName : string { get; private set; }
public LanguageAssembly : string { get; private set; }
public ProjectSupport : string { get; private set; }
public ProjectSupportClass : System.Type { get; private set; }
public Language : Language { get; }
public ProjectName : string { get; }
public AssemblyReferences : list[string] { get; }
public Binaries : list[string] { get; }
public OutputPath : string { get; private set; }
public NewGuids : bool { get; private set; }
public Snk : string { get; private set; }
public DefaultNamespace : string { get; private set; }
public Success : bool { get; }
public CompilerMessages : CompilerMessages { get; }
public this()
{
CompilerMessages = ConsoleCompilerMessages("LC");
def assemblyReferences = List();
mutable binaries = [];
def options = [
CliOption.String(name = "-lang",
aliases = [],
help = "Language name",
handler = fun(languageName) { LanguageName = languageName }),
CliOption.String(name = "-proj",
aliases = [],
help = "Project support class name",
handler = fun(projectSupport) { ProjectSupport = projectSupport }),
CliOption.String(name = "-out",
aliases = [],
help = "Output path",
handler = path => OutputPath = path),
CliOption.Boolean(name = "-guids",
aliases = ["-newguids", "-renewguids"],
help = "Generate new guid values.",
handler = newGuids => NewGuids = newGuids),
CliOption.String(name = "-keyfile",
aliases = ["-snk"],
help = "Specifies a strong name key file",
handler = path => Snk = path),
CliOption.String(name = "-namespace",
aliases = ["-ns"],
help = "Default namespace",
handler = defaultNamespace => DefaultNamespace = defaultNamespace),
CliOption.String(name = "-bin",
aliases = [],
help = "Additional binaries.",
handler = bin => binaries ::= bin),
CliOption.NonOption(name = "",
help = "Nitra assembly references.",
handler = assemblyReferences.Add),
];
Getopt.Parse(options);
//assert2(LanguageName != "Nitra.Language");
def usage() : void
{
def help = Getopt.Usage(options);
WriteLine("Usage: Nitra.LanguageCompiler.exe flags [NitraParserAssembly.dll]");
WriteLine("flags:");
WriteLine(help);
}
when (string.IsNullOrEmpty(ProjectSupport))
{
ProjectSupport = "";
ProjectSupportClass = null;
}
when (string.IsNullOrEmpty(LanguageName))
{
WriteLine("Error: 'lang' option is required.");
usage();
return;
}
when (assemblyReferences.Count == 0)
{
WriteLine("Error: Assembly references is required.");
usage();
return;
}
AssemblyReferences = assemblyReferences.NToList();
Binaries = binaries;
def asms = List();
foreach (assemblyReference in assemblyReferences)
{
def asmRef = Path.GetFullPath(assemblyReference);
when (!File.Exists(asmRef))
{
WriteLine($"Error: The '$asmRef' file does not exist.");
usage();
return;
}
def asm = Assembly.LoadFrom(asmRef);
asms.Add(asm);
}
when (string.IsNullOrEmpty(OutputPath))
OutputPath = Environment.CurrentDirectory;
OutputPath = Path.GetFullPath(OutputPath);
mutable matchedLanguages = [];
mutable matchedProjectSupportTypes = [];
foreach (asm in asms)
{
def languages = Language.GetLanguages(asm);
foreach (language when language.FullName == LanguageName in languages)
matchedLanguages ::= (asm, language);
def projectSupportAttributes = asm.GetCustomAttributes(typeof(ProjectSupportAttribute));
foreach (projectSupportAttribute is ProjectSupportAttribute when projectSupportAttribute.Caption == ProjectSupport in projectSupportAttributes)
matchedProjectSupportTypes ::= projectSupportAttribute.Type;
}
match (matchedLanguages)
{
| [(asm, lang)] =>
Language = lang;
LanguageAssembly = asm.CodeBase;
ProjectName = lang.FullName + "VsPackage";
| [] => WriteLine($"Error: Language '$LanguageName' not found."); return;
| _ => WriteLine($"Error: Multiple languages with name '$LanguageName' found."); return;
}
match (matchedProjectSupportTypes)
{
| [type] => ProjectSupportClass = type;
| [] => ()
| _ => WriteLine($"Error: Multiple instance of 'proj' option (project support) with name '$ProjectSupport' found."); return;
}
when (DefaultNamespace == null)
{
WriteLine("Error: The 'namespace' parameter is required.");
usage();
return;
}
Success = true;
}
}
}