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
343
344
345
346
347
348
349
350
|
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// Copyright (C) Lluis Sanchez Gual, 2004
//
#if !FULL_AOT_RUNTIME
using System;
using System.IO;
using System.Collections;
using System.Reflection;
using System.Reflection.Emit;
namespace Mono.CodeGeneration
{
public class CodeClass
{
TypeBuilder typeBuilder;
ArrayList customAttributes = new ArrayList ();
ArrayList methods = new ArrayList ();
ArrayList properties = new ArrayList ();
ArrayList fields = new ArrayList ();
Hashtable fieldAttributes = new Hashtable ();
Type baseType;
Type[] interfaces;
CodeMethod ctor;
CodeMethod cctor;
CodeBuilder instanceInit;
CodeBuilder classInit;
int varId;
public CodeClass (ModuleBuilder mb, string name)
: this (mb, name, TypeAttributes.Public, typeof(object))
{
}
public CodeClass (ModuleBuilder mb, string name, Type baseType, params Type[] interfaces)
: this (mb, name, TypeAttributes.Public, baseType, interfaces)
{
}
public CodeClass (ModuleBuilder mb, string name, TypeAttributes attr, Type baseType, params Type[] interfaces)
{
typeBuilder = mb.DefineType (name, attr, baseType, interfaces);
this.baseType = baseType;
this.interfaces = interfaces;
}
public CodeCustomAttribute CreateCustomAttribute (Type attributeType)
{
return CreateCustomAttribute (attributeType,
Type.EmptyTypes, new object [0], new string [0], new object [0]);
}
public CodeCustomAttribute CreateCustomAttribute (Type attributeType, Type [] ctorArgTypes, object [] ctorArgs, string [] namedArgFieldNames, object [] namedArgValues)
{
CodeCustomAttribute cca = CodeCustomAttribute.Create (
attributeType, ctorArgTypes, ctorArgs, namedArgFieldNames, namedArgValues);
typeBuilder.SetCustomAttribute (cca.Builder);
customAttributes.Add (cca);
return cca;
}
public CodeCustomAttribute CreateCustomAttribute (Type attributeType, Type [] ctorArgTypes, CodeLiteral [] ctorArgs, FieldInfo [] fields, CodeLiteral [] fieldValues)
{
CodeCustomAttribute cca = CodeCustomAttribute.Create (
attributeType, ctorArgTypes, ctorArgs, fields, fieldValues);
typeBuilder.SetCustomAttribute (cca.Builder);
customAttributes.Add (cca);
return cca;
}
public CodeProperty CreateProperty (string name, Type returnType, params Type [] parameterTypes)
{
return CreateProperty (name, returnType, MethodAttributes.Private, parameterTypes);
}
public CodeProperty CreateProperty (string name, Type returnType, MethodAttributes methodAttributes, params Type [] parameterTypes)
{
CodeProperty prop = new CodeProperty (this, GetPropertyName (name), PropertyAttributes.None, methodAttributes, returnType, parameterTypes);
properties.Add (prop);
return prop;
}
public CodeMethod CreateMethod (string name, Type returnType, params Type[] parameterTypes)
{
CodeMethod met = new CodeMethod (this, GetMethodName (name), MethodAttributes.Public, returnType, parameterTypes);
methods.Add (met);
return met;
}
public CodeMethod CreateVirtualMethod (string name, Type returnType, params Type[] parameterTypes)
{
CodeMethod met = new CodeMethod (this, GetMethodName (name), MethodAttributes.Public | MethodAttributes.Virtual, returnType, parameterTypes);
methods.Add (met);
return met;
}
public CodeMethod CreateStaticMethod (string name, Type returnType, params Type[] parameterTypes)
{
CodeMethod met = new CodeMethod (this, GetMethodName (name), MethodAttributes.Public | MethodAttributes.Static, returnType, parameterTypes);
methods.Add (met);
return met;
}
public CodeMethod CreateMethod (string name, MethodAttributes attributes, Type returnType, params Type[] parameterTypes)
{
CodeMethod met = new CodeMethod (this, GetMethodName (name), attributes, returnType, parameterTypes);
methods.Add (met);
return met;
}
public CodeMethod GetDefaultConstructor ()
{
if (ctor != null) return ctor;
ctor = CreateConstructor (MethodAttributes.Public, Type.EmptyTypes);
return ctor;
}
public CodeMethod CreateConstructor (params Type[] parameters)
{
return CreateConstructor (MethodAttributes.Private, parameters);
}
public CodeMethod CreateConstructor (MethodAttributes attributes, params Type[] parameters)
{
if (ctor != null) return ctor;
ctor = CodeMethod.DefineConstructor (this, attributes, parameters);
methods.Add (ctor);
CodeBuilder cb = GetInstanceInitBuilder ();
ctor.CodeBuilder.CurrentBlock.Add (cb.CurrentBlock);
return ctor;
}
public CodeMethod GetStaticConstructor ()
{
if (cctor != null) return cctor;
cctor = CodeMethod.DefineConstructor (this, MethodAttributes.Public | MethodAttributes.Static, Type.EmptyTypes);
methods.Add (cctor);
CodeBuilder cb = GetClassInitBuilder ();
cctor.CodeBuilder.CurrentBlock.Add (cb.CurrentBlock);
return cctor;
}
public CodeMethod ImplementMethod (Type baseType, string methodName)
{
MethodInfo basem = baseType.GetMethod (methodName);
return ImplementMethod (baseType, basem);
}
public CodeMethod ImplementMethod (MethodInfo basem)
{
return ImplementMethod (basem.DeclaringType, basem);
}
public CodeMethod ImplementMethod (Type baseType, MethodInfo basem)
{
ParameterInfo[] pinfos = basem.GetParameters ();
Type[] pars = new Type[pinfos.Length];
for (int n=0; n<pinfos.Length; n++)
pars[n] = pinfos[n].ParameterType;
CodeMethod met = CodeMethod.DefineMethod (this, basem.Name, MethodAttributes.Public | MethodAttributes.Virtual, basem.ReturnType, pars);
typeBuilder.DefineMethodOverride (met.MethodInfo, basem);
methods.Add (met);
return met;
}
public CodeFieldReference DefineField (string name, Type type, params CodeCustomAttribute [] customAttributes)
{
return DefineField (GetFieldName (name), type, FieldAttributes.Public, null, customAttributes);
}
public CodeFieldReference DefineStaticField (CodeExpression initialValue, params CodeCustomAttribute [] customAttributes)
{
return DefineField (GetFieldName (null), initialValue.GetResultType(), FieldAttributes.Public | FieldAttributes.Static, initialValue, customAttributes);
}
public CodeFieldReference DefineStaticField (string name, Type type, CodeExpression initialValue, params CodeCustomAttribute [] customAttributes)
{
return DefineField (GetFieldName (name), type, FieldAttributes.Public | FieldAttributes.Static, initialValue, customAttributes);
}
public CodeFieldReference DefineField (string name, Type type, FieldAttributes attrs, CodeExpression initialValue, params CodeCustomAttribute [] customAttributes)
{
FieldBuilder fb = typeBuilder.DefineField (GetFieldName (name), type, attrs);
foreach (CodeCustomAttribute a in customAttributes)
fb.SetCustomAttribute (a.Builder);
fieldAttributes [fb] = new ArrayList (customAttributes);
fields.Add (fb);
CodeFieldReference fr;
if ((attrs & FieldAttributes.Static) != 0)
fr = new CodeFieldReference (fb);
else
fr = new CodeFieldReference (new CodeArgumentReference (TypeBuilder, 0, "this"), fb);
if (null != (object) initialValue) {
CodeBuilder cb = (attrs & FieldAttributes.Static) == 0 ? GetInstanceInitBuilder () : GetClassInitBuilder ();
cb.Assign (fr, initialValue);
}
return fr;
}
public TypeBuilder TypeBuilder
{
get { return typeBuilder; }
}
private CodeBuilder GetInstanceInitBuilder ()
{
if (instanceInit != null) return instanceInit;
instanceInit = new CodeBuilder (this);
return instanceInit;
}
private CodeBuilder GetClassInitBuilder ()
{
if (classInit != null) return classInit;
classInit = new CodeBuilder (this);
return classInit;
}
private string GetFieldName (string name)
{
if (name == null) return "__field_" + (varId++);
else return name;
}
private string GetMethodName (string name)
{
if (name == null) return "__Method_" + (varId++);
else return name;
}
private string GetPropertyName (string name)
{
if (name == null) return "__Property_" + (varId++);
else return name;
}
public string PrintCode ()
{
StringWriter sw = new StringWriter ();
CodeWriter cw = new CodeWriter (sw);
PrintCode (cw);
return sw.ToString ();
}
public void PrintCode (CodeWriter cw)
{
for (int n=0; n<customAttributes.Count; n++) {
CodeCustomAttribute cca = customAttributes [n] as CodeCustomAttribute;
if (n > 0) cw.WriteLine ("");
cca.PrintCode (cw);
}
/* if ((typeBuilder.Attributes & TypeAttributes.Abstract) != 0) cw.Write ("abstract ");
if ((typeBuilder.Attributes & TypeAttributes.NestedAssembly) != 0) cw.Write ("internal ");
if ((typeBuilder.Attributes & TypeAttributes.NestedPrivate) != 0) cw.Write ("private ");
*/ if ((typeBuilder.Attributes & TypeAttributes.Public) != 0) cw.Write ("public ");
cw.Write ("class ").Write (typeBuilder.Name);
bool dots = false;
if (baseType != null && baseType != typeof(object)) {
cw.Write (" : " + baseType);
dots = true;
}
if (interfaces != null && interfaces.Length > 0) {
if (!dots) cw.Write (" : ");
else cw.Write (", ");
for (int n=0; n<interfaces.Length; n++) {
if (n > 0) cw.Write (", ");
cw.Write (interfaces[n].ToString ());
}
}
cw.EndLine ().WriteLineInd ("{");
foreach (FieldInfo f in fields) {
cw.BeginLine ();
ArrayList atts = (ArrayList) fieldAttributes [f];
foreach (CodeCustomAttribute a in atts)
a.PrintCode (cw);
if ((f.Attributes & FieldAttributes.Static) != 0)
cw.Write ("static ");
cw.Write (f.FieldType.Name + " ");
cw.Write (f.Name + ";");
cw.EndLine ();
cw.WriteLine ("");
}
for (int n=0; n<properties.Count; n++) {
CodeProperty prop = properties [n] as CodeProperty;
if (n > 0) cw.WriteLine ("");
prop.PrintCode (cw);
}
for (int n=0; n<methods.Count; n++) {
CodeMethod met = methods[n] as CodeMethod;
if (n > 0) cw.WriteLine ("");
met.PrintCode (cw);
}
cw.WriteLineUnind ("}");
}
public Type CreateType ()
{
if (ctor == null)
ctor = GetDefaultConstructor ();
foreach (CodeProperty prop in properties)
prop.Generate ();
foreach (CodeMethod met in methods)
met.Generate ();
Type t = typeBuilder.CreateType ();
foreach (CodeMethod met in methods)
met.UpdateMethodBase (t);
foreach (CodeProperty prop in properties)
prop.UpdatePropertyInfo (t);
return t;
}
}
}
#endif
|