-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVisualBasicGenerator.cs
218 lines (183 loc) · 8.64 KB
/
VisualBasicGenerator.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
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
using System;
using System.IO;
using System.Text;
using System.Collections.Generic;
namespace Maussoft.Mvc.ViewGen
{
public class VisualBasicGenerator : Generator
{
private string _baseDirecory;
private string _defaultNamespace;
private string _sessionClass;
private string _rootNamespace;
public VisualBasicGenerator(string baseDirecory, string defaultNamespace, string sessionClass, string rootNamespace)
{
_baseDirecory = baseDirecory;
_defaultNamespace = defaultNamespace;
_sessionClass = sessionClass;
_rootNamespace = rootNamespace;
}
public override void ConvertFile(string filename)
{
string relative = filename.Substring(_baseDirecory.TrimEnd(Path.DirectorySeparatorChar).Length + 1);
//Console.WriteLine (filename2);
//Console.WriteLine (_baseDirecory);
//Console.WriteLine (relative);
List<Token> input = Tokenize(File.ReadAllText(filename));
/*for (int i = 0; i < input.Count; i++) {
Token token = input [i];
Console.WriteLine (token.Type + " '" + token.Value + "'");
}*/
Dictionary<string, string> properties = GetDefaultProperties();
string reldir = Path.GetDirectoryName(relative);
string spaceName = _defaultNamespace;
if (reldir.Length > 0)
{
spaceName = spaceName + '.' + reldir.Replace(Path.DirectorySeparatorChar, '.');
}
properties["Namespace"] = spaceName;
properties["Class"] = Path.GetFileNameWithoutExtension(relative);
List<Statement> statements = Parse(input, properties);
/*foreach (string key in properties.Keys) {
Console.WriteLine (key + " '" + properties[key] + "'");
}*/
Generate(properties, statements, filename);
}
private void Generate(Dictionary<string, string> properties, List<Statement> statements, string filename)
{
if (properties["Namespace"].StartsWith(_rootNamespace))
{
properties["Namespace"] = properties["Namespace"].Substring(_rootNamespace.Length + 1);
}
EscapeProperties(properties);
string output = GenerateClass(properties, statements);
string filename2 = Path.ChangeExtension(filename, ".vb");
/*Console.WriteLine (filename2);
Console.WriteLine (output);*/
File.WriteAllText(filename2, output);
}
private void EscapeProperties(Dictionary<string, string> properties)
{
List<string> keywords = new List<string>("AddHandler,AddressOf,Alias,And,AndAlso,As,Boolean,ByRef,Byte,ByVal,Call,Case,Catch,CBool,CByte,CChar,CDate,CDec,CDbl,Char,CInt,Class,CLng,CObj,Const,Continue,CSByte,CShort,CSng,CStr,CType,CUInt,CULng,CUShort,Date,Decimal,Declare,Default,Delegate,Dim,DirectCast,Do,Double,Each,Else,ElseIf,End,EndIf,Enum,Erase,Error,Event,Exit,False,Finally,For,Friend,Function,Get,GetType,GetXMLNamespace,Global,GoSub,GoTo,Handles,If,Implements,Imports,In,Inherits,Integer,Interface,Is,IsNot,Let,Lib,Like,Long,Loop,Me,Mod,Module,MustInherit,MustOverride,MyBase,MyClass,Namespace,Narrowing,New,Next,Not,Nothing,NotInheritable,NotOverridable,Object,Of,On,Operator,Option,Optional,Or,OrElse,Overloads,Overridable,Overrides,ParamArray,Partial,Private,Property,Protected,Public,RaiseEvent,ReadOnly,ReDim,REM,RemoveHandler,Resume,Return,SByte,Select,Set,Shadows,Shared,Short,Single,Static,Step,Stop,String,Structure,Sub,SyncLock,Then,Throw,To,True,Try,TryCast,TypeOf,Variant,Wend,UInteger,ULong,UShort,Using,When,While,Widening,With,WithEvents,WriteOnly,Xor".Split(','));
string[] keys = new string[] { "Class", "Inherits" };
foreach (string key in keys)
{
if (keywords.Contains(properties[key]))
{
properties[key] = '[' + properties[key] + ']';
}
}
}
private string GenerateClass(Dictionary<string, string> properties, List<Statement> statements)
{
StringBuilder output = new StringBuilder();
output.Append("'\n' WARNING: Generated file, do not edit, changes will be lost!\n'\n\n");
if (properties.ContainsKey("Using"))
{
string[] spaceNames = properties["Using"].Split(',');
foreach (string spaceName in spaceNames)
{
if (spaceName.Trim() != "System")
{
output.Append("Imports " + spaceName.Trim() + "\n");
}
}
}
string functionName = "Content";
if (properties.ContainsKey("Type"))
{
if (properties["Type"] == "Master")
{
functionName = "Header";
}
}
output.Append("\nNamespace " + properties["Namespace"] + "\n\t");
output.Append("Public Class " + properties["Class"] + "\n\t\tInherits " + properties["Inherits"] + "\n\t\t\n\t\t");
output.Append("Public Overrides Sub " + functionName + "()\n\t\t\t");
if (properties["Type"] == "Master")
{
foreach (Statement statement in statements)
{
if (statement.Type == "Code" && statement.Tokens.Length == 1)
{
if (statement.Tokens[0].Value.Trim() == "RenderViewContent()")
{
statement.Tokens[0].Value = "\n\t\tEnd Sub\n\n\t\tPublic Overrides Sub Footer()\n\t\t\t";
}
break;
}
}
}
output.Append(GenerateStatements(statements));
output.Append("\n\t\tEnd Sub\n\tEnd Class\nEnd Namespace");
output.Replace(" : : ", " : ").Replace(" : \n", "\n").Replace("\n\t\t\t : ", "\n\t\t\t");
return output.ToString();
}
private string GenerateStatements(List<Statement> statements)
{
StringBuilder output = new StringBuilder();
for (int i = 0; i < statements.Count; i++)
{
Token[] tokens = statements[i].Tokens;
if (tokens[0].Type == "Code")
{
output.Append(" : ");
output.Append(tokens[0].Value);
}
else if (tokens[0].Type == "NewLine")
{
output.Append("\n\t\t\t");
}
else if (tokens[0].Type == "Text" || tokens[0].Type == "TextLine")
{
output.Append(" : ");
if (tokens.Length == 1 && tokens[0].Value == "")
{
if (tokens[0].Type == "TextLine")
{
output.Append("WriteLine()");
}
continue;
}
List<string> arguments = new List<string>();
if (tokens[0].Type == "TextLine")
{
output.Append("WriteLine(\"");
}
else
{
output.Append("Write(\"");
}
for (int j = 0; j < tokens.Length; j++)
{
Token token = tokens[j];
if (token.Type == "Expr")
{
output.Append("{" + arguments.Count + "}");
arguments.Add(token.Value);
}
else if (token.Type == "Text" || tokens[0].Type == "TextLine")
{
output.Append(token.Value.Replace("\"", "\"\""));
}
}
if (arguments.Count > 0)
{
output.Append("\", " + String.Join(", ", arguments.ToArray()) + ")");
}
else
{
output.Append("\")");
}
}
}
return output.ToString();
}
private Dictionary<string, string> GetDefaultProperties()
{
Dictionary<string, string> properties = new Dictionary<string, string>();
properties.Add("Inherits", "Global.Maussoft.Mvc.View(Of " + _sessionClass + ")");
return properties;
}
}
}