-
Notifications
You must be signed in to change notification settings - Fork 6
/
Generator.cs
263 lines (212 loc) · 8.53 KB
/
Generator.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using Mono.Cecil;
public static class Generator
{
public static TypeScriptInterface CreateInterface(string assemblyFile, string rootType, bool odata = false)
{
var moduleDefinition = ModuleDefinition.ReadModule(assemblyFile);
if (moduleDefinition == null)
throw new ArgumentException(string.Format("The assembly '{0}' could not be loaded.", assemblyFile), "assemblyFile");
var typeDefintion = moduleDefinition.GetType(rootType);
if (typeDefintion == null)
throw new ArgumentException(string.Format("The type '{0}' could not be found.", rootType), "rootType");
var scriptInterface = new TypeScriptInterface();
scriptInterface.Name = typeDefintion.Name;
// get all properties
var propertyDefinitions = typeDefintion
.Traverse(t => t.BaseType == null ? null : t.BaseType.Resolve())
.SelectMany(t => t.Properties);
foreach (var propertyDefinition in propertyDefinitions)
{
var scriptPropery = new TypeScriptProperty();
scriptPropery.Name = propertyDefinition.Name;
var propertyType = propertyDefinition.PropertyType;
scriptPropery.Type = propertyType.ToScriptType(odata);
scriptPropery.IsNullable = propertyDefinition.PropertyType.IsNullable();
scriptPropery.IsArray = propertyDefinition.PropertyType.IsScriptArray();
scriptInterface.Properties.Add(scriptPropery);
}
return scriptInterface;
}
}
public class TypeScriptInterface
{
public TypeScriptInterface()
{
Properties = new List<TypeScriptProperty>();
}
public string Name { get; set; }
public string Extends { get; set; }
public List<TypeScriptProperty> Properties { get; set; }
}
public class TypeScriptProperty
{
public string Name { get; set; }
public string Type { get; set; }
public bool IsNullable { get; set; }
public bool IsArray { get; set; }
public override string ToString()
{
return string.Format("Name: {0}, Type: {1}, Nullable: {2}, Array: {3}", Name, Type, IsNullable, IsArray);
}
}
public static class Extensions
{
public static TypeReference GetUnderlyingType(this TypeReference type)
{
if (!type.IsGenericInstance)
return type;
var genericType = type as GenericInstanceType;
if (genericType == null)
return type;
var genericDefinition = genericType.Resolve();
if (genericDefinition.GenericParameters.Count != 1 && genericDefinition.FullName != "System.Nullable`1")
return type;
return genericType.GenericArguments.FirstOrDefault() ?? type;
}
public static bool HasInterface(this TypeReference typeReference, string fullName)
{
TypeDefinition definition = typeReference.Resolve();
return definition.Interfaces
.Select(i => i.Resolve())
.Any(d => d.FullName == fullName);
}
public static bool IsNullable(this TypeReference type)
{
bool isNullable = type.IsValueType == false;
if (!type.IsGenericInstance)
return isNullable;
var genericType = type as GenericInstanceType;
if (genericType == null)
return isNullable;
var genericDefinition = genericType.Resolve();
if (genericDefinition.GenericParameters.Count == 1 && genericDefinition.FullName == "System.Nullable`1")
return true;
return isNullable;
}
public static bool IsScriptArray(this TypeReference typeReference)
{
var baseType = typeReference.GetUnderlyingType();
if (baseType.FullName == "System.String" || baseType.FullName == "System.Byte[]")
return false;
if (baseType.IsArray)
return true;
TypeReference elementType = null;
var isEnumerable = IsEnumerable(baseType, out elementType);
if (isEnumerable)
return true;
return false;
}
public static bool IsEnumerable(this TypeReference typeReference, out TypeReference elementType)
{
elementType = null;
var collectionType = typeReference
.Traverse(t => t.Resolve().BaseType)
.FirstOrDefault(t => t.HasInterface("System.Collections.Generic.IEnumerable`1"));
var genericCollectionType = collectionType as GenericInstanceType;
if (genericCollectionType == null)
return false;
//NOTE issue with custom implementation and matching up argument position
elementType = genericCollectionType.GenericArguments.FirstOrDefault();
return true;
}
public static bool IsCollection(this TypeReference typeReference, out TypeReference elementType)
{
elementType = null;
var collectionType = typeReference
.Traverse(t => t.Resolve().BaseType)
.FirstOrDefault(t => t.HasInterface("System.Collections.Generic.ICollection`1"));
var genericCollectionType = collectionType as GenericInstanceType;
if (genericCollectionType == null)
return false;
//NOTE issue with custom implementation and matching up argument position
elementType = genericCollectionType.GenericArguments.FirstOrDefault();
return true;
}
public static bool IsDictionary(this TypeReference typeReference, out TypeReference keyType, out TypeReference elementType)
{
keyType = null;
elementType = null;
var dictionaryType = typeReference
.Traverse(t => t.Resolve().BaseType)
.FirstOrDefault(t => t.HasInterface("System.Collections.Generic.IDictionary`2"));
var genericDictionaryType = dictionaryType as GenericInstanceType;
if (genericDictionaryType == null)
return false;
//NOTE issue with custom implementation and matching up argument position
keyType = genericDictionaryType.GenericArguments.First();
elementType = genericDictionaryType.GenericArguments.Last();
return true;
}
public static string ToScriptType(this TypeReference typeReference, bool odata = false)
{
var t = typeReference.GetUnderlyingType();
switch (t.Name)
{
case "Int16":
case "Int32":
case "Byte":
case "Double":
case "SByte":
case "Single":
case "UInt16":
case "UInt32":
return "number";
case "Decimal":
case "Int64":
case "UInt64":
return odata ? "string" : "number";
case "Boolean":
return "boolean";
case "DateTime":
case "DateTimeOffset":
return "Date";
case "String":
case "Guid":
case "TimeSpan":
return "string";
case "Byte[]":
return "string";
default:
return "any";
}
}
public static IEnumerable<T> Traverse<T>(this T root, Func<T, IEnumerable<T>> childrenSelector)
{
yield return root;
IEnumerable<T> descendants = childrenSelector(root);
if (descendants == null)
yield break;
foreach (T descendant in descendants.SelectMany(element => element.Traverse(childrenSelector)))
yield return descendant;
}
public static IEnumerable<T> Traverse<T>(this T root, Func<T, T> childrenSelector) where T : class
{
T descendant = root;
while (descendant != null)
{
yield return descendant;
descendant = childrenSelector(descendant);
}
}
public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
{
return source.DistinctBy(keySelector, EqualityComparer<TKey>.Default);
}
public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector, IEqualityComparer<TKey> comparer)
{
if (source == null)
throw new ArgumentNullException("source");
if (keySelector == null)
throw new ArgumentNullException("keySelector");
if (comparer == null)
throw new ArgumentNullException("comparer");
var knownKeys = new HashSet<TKey>(comparer);
return source.Where(element => knownKeys.Add(keySelector(element)));
}
}