-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathVbCodeHelper.cs
342 lines (299 loc) · 11.6 KB
/
VbCodeHelper.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Reflection;
#if NETSTANDARD || NETCOREAPP
using FastReport.Code.CodeDom.Compiler;
using FastReport.Code.VisualBasic;
#else
using System.CodeDom.Compiler;
using Microsoft.VisualBasic;
#endif
using FastReport.Utils;
using FastReport.Data;
namespace FastReport.Code
{
internal partial class VbCodeHelper : CodeHelperBase
{
#region Private Methods
private string GetEquivalentKeyword(string s)
{
if (s.EndsWith("[]"))
return GetEquivalentKeyword1(s.Substring(0, s.Length - 2)) + "()";
return GetEquivalentKeyword1(s);
}
private string GetEquivalentKeyword1(string s)
{
switch (s)
{
case "DateTime":
return "Date";
case "Int16":
return "Short";
case "UInt16":
return "UShort";
case "Int32":
return "Integer";
case "UInt32":
return "UInteger";
case "Int64":
return "Long";
case "UInt64":
return "ULong";
}
return s;
}
#endregion
#region Protected Methods
protected override string GetTypeDeclaration(Type type)
{
if (type.IsGenericType)
{
string result = type.Name;
result = result.Substring(0, result.IndexOf('`'));
result += "(Of ";
foreach (Type elementType in type.GetGenericArguments())
{
result += GetTypeDeclaration(elementType) + ",";
}
result = result.Substring(0, result.Length - 1) + ")";
return result;
}
else
{
string typeName = type.Name;
typeName = typeName.Replace("[]", "()");
return typeName;
}
}
#endregion
#region Public Methods
public override string EmptyScript()
{
return
@"Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Drawing
Imports Microsoft.VisualBasic
Imports FastReport
Imports FastReport.Data
Imports FastReport.Dialog
Imports FastReport.Table
Imports FastReport.Barcode
Imports FastReport.Utils
Namespace FastReport
Public Class ReportScript
End Class
End Namespace
";
}
public override int GetPositionToInsertOwnItems(string scriptText)
{
int pos = scriptText.IndexOf("Public Class ReportScript");
if (pos == -1)
return -1;
return scriptText.IndexOf('\n', pos) + 1;
}
public override string AddField(Type type, string name)
{
name = name.Replace(" ", "_");
return " Public " + name + " as Global." + type.FullName + "\r\n";
}
public override string BeginCalcExpression()
{
return " Private Function CalcExpression(ByVal expression As String, ByVal Value as Global.FastReport.Variant) As Object\r\n ";
}
public override string AddExpression(string expr, string value)
{
expr = expr.Replace("\"", "\"\"");
return "If expression = \"" + expr + "\" Then\r\n Return " + value + "\r\n End If\r\n ";
}
public override string EndCalcExpression()
{
return "Return Nothing\r\n End Function\r\n\r\n";
}
public override string ReplaceColumnName(string name, Type type)
{
string typeName = GetTypeDeclaration(type);
string result = "CType(Report.GetColumnValue(\"" + name + "\"";
result += "), " + typeName + ")";
return result;
}
public override string ReplaceParameterName(Parameter parameter)
{
string typeName = GetTypeDeclaration(parameter.DataType);
return "CType(Report.GetParameterValue(\"" + parameter.FullName + "\"), " + typeName + ")";
}
public override string ReplaceVariableName(Parameter parameter)
{
string typeName = GetTypeDeclaration(parameter.DataType);
return "CType(Report.GetVariableValue(\"" + parameter.FullName + "\"), " + typeName + ")";
}
public override string ReplaceTotalName(string name)
{
return "Report.GetTotalValue(\"" + name + "\")";
}
public override string GenerateInitializeMethod()
{
Hashtable events = new Hashtable();
string reportString = StripEventHandlers(events);
string result = " Private Sub InitializeComponent\r\n ";
// form the reportString
result += "Dim reportString As String = _\r\n ";
int totalLength = 0;
while (reportString.Length > 0)
{
string part = "";
if (reportString.Length > 80)
{
part = reportString.Substring(0, 80);
reportString = reportString.Substring(80);
}
else
{
part = reportString;
reportString = "";
}
part = "\"" + part.Replace("\"", "\"\"").Replace("\u201c", "\"\"").Replace("\u201d", "\"\"") + "\"";
part = part.Replace("\r\n", "\" + ChrW(13) + ChrW(10) + \"");
part = part.Replace("\r", "\" + ChrW(13) + \"");
part = part.Replace("\n", "\" + ChrW(10) + \"");
result += part;
if (reportString != "")
{
if (totalLength > 1024)
{
totalLength = 0;
result += "\r\n reportString = reportString + ";
}
else
result += " + _\r\n ";
totalLength += part.Length;
}
else
{
result += "\r\n ";
}
}
result += "LoadFromString(reportString)\r\n ";
result += "InternalInit()\r\n ";
// form objects' event handlers
foreach (DictionaryEntry de in events)
{
result += "AddHandler " + de.Key.ToString() + ", AddressOf " +
de.Value.ToString() + "\r\n ";
}
result += "\r\n End Sub\r\n\r\n";
result += " Public Sub New()\r\n InitializeComponent()\r\n End Sub\r\n";
return result;
}
public override string ReplaceClassName(string scriptText, string className)
{
// replace the first occurence of "ReportScript"
string replace = "Class ReportScript";
int index = scriptText.IndexOf(replace);
scriptText = scriptText.Remove(index, replace.Length);
scriptText = scriptText.Insert(index, "Class " + className + "\r\n Inherits Report");
// replace other items
return scriptText.Replace("Private Function CalcExpression", "Protected Overrides Function CalcExpression");
}
public override string GetMethodSignature(MethodInfo info, bool fullForm)
{
string result = info.Name + "(";
string fontBegin = "<font color=\"Blue\">";
string fontEnd = "</font>";
System.Reflection.ParameterInfo[] pars = info.GetParameters();
foreach (System.Reflection.ParameterInfo par in pars)
{
// special case - skip "thisReport" parameter
if (par.Name == "thisReport")
continue;
string modifier = "ByVal";
if (par.IsOptional)
modifier = "Optional " + modifier;
object[] attr = par.GetCustomAttributes(typeof(ParamArrayAttribute), false);
if (attr.Length > 0)
modifier += " ParamArray";
result += fullForm ? fontBegin + modifier + fontEnd + " " + par.Name + " " + fontBegin + "As" + fontEnd + " " : "";
result += (fullForm ? fontBegin : "") + GetEquivalentKeyword(par.ParameterType.Name) + (fullForm ? fontEnd : "");
#if DOTNET_4
if (par.IsOptional && fullForm)
result += CodeUtils.GetOptionalParameter(par, CodeUtils.Language.Vb);
#endif
result += ", ";
}
if (result.EndsWith(", "))
result = result.Substring(0, result.Length - 2);
result += ")";
if (fullForm)
result += " " + fontBegin + "As " + info.ReturnType.Name + fontEnd;
return result;
}
public override string GetMethodSignatureAndBody(MethodInfo info)
{
string result = info.Name + "(";
result = " Private Function " + result;
System.Reflection.ParameterInfo[] pars = info.GetParameters();
foreach (System.Reflection.ParameterInfo par in pars)
{
// special case - skip "thisReport" parameter
if (par.Name == "thisReport")
continue;
string parName = "_" + par.Name;
string modifier = "ByVal";
if (par.IsOptional)
modifier = "Optional " + modifier;
object[] attr = par.GetCustomAttributes(typeof(ParamArrayAttribute), false);
if (attr.Length > 0)
modifier += " ParamArray";
result += modifier + " " + parName + " As ";
result += GetTypeDeclaration(par.ParameterType);
#if DOTNET_4
if (par.IsOptional)
result += CodeUtils.GetOptionalParameter(par, CodeUtils.Language.Vb);
#endif
result += ", ";
}
if (result.EndsWith(", "))
result = result.Substring(0, result.Length - 2);
result += ")";
result += " As " + GetTypeDeclaration(info.ReturnType);
result += "\r\n";
result += " Return Global." + info.ReflectedType.Namespace + "." +
info.ReflectedType.Name + "." + info.Name + "(";
foreach (System.Reflection.ParameterInfo par in pars)
{
string parName = "_" + par.Name;
// special case - handle "thisReport" parameter
if (parName == "_thisReport")
parName = "Report";
result += parName + ", ";
}
if (result.EndsWith(", "))
result = result.Substring(0, result.Length - 2);
result += ")\r\n";
result += " End Function\r\n";
result += "\r\n";
return result;
}
public override string GetPropertySignature(PropertyInfo info, bool fullForm)
{
string result = GetEquivalentKeyword(info.PropertyType.Name) + " " + info.Name;
if (fullForm)
result += " { <font color=\"Blue\"> get;" + (info.CanWrite ? " set;" : "") + "</font> }";
return result;
}
public override CodeDomProvider GetCodeProvider()
{
return new VBCodeProvider();
}
#endregion
public VbCodeHelper(Report report) : base(report)
{
}
}
}