-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathEncodeHelpers.cs
407 lines (373 loc) · 15.6 KB
/
EncodeHelpers.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection.Metadata.Ecma335;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace MetadataUtils
{
public static class EncodeHelpers
{
public const string AttributeToRemoveSuffix = "__remove";
private static readonly System.Text.RegularExpressions.Regex RemappedParmRegex = new System.Text.RegularExpressions.Regex(@"(?:\[([^\]]*)\])?(?:\s*(\w+\**)(?:\s+(\w+))?)?");
private static readonly System.Text.RegularExpressions.Regex AttributeRegex = new System.Text.RegularExpressions.Regex(@"(-?\w+)(\(.+\)$)?");
public static bool DecodeRemap(string remappedTo, out List<AttributeSyntax> listAttributes, out string newType, out string newName)
{
listAttributes = null;
newType = newName = null;
foreach (System.Text.RegularExpressions.Match match in RemappedParmRegex.Matches(remappedTo))
{
if (match.Groups[1].Success)
{
var attributeText = match.Groups[1].Value;
var parseAttrMatch = AttributeRegex.Match(attributeText);
if (parseAttrMatch.Success)
{
var attrName = parseAttrMatch.Groups[1].Value;
// If it starts with '-' this means the .rsp is saying to remove it.
// Change it to a name we will know to remove later
if (attrName.StartsWith('-'))
{
attrName = attrName.Substring(1) + AttributeToRemoveSuffix;
}
var attrArgs = parseAttrMatch.Groups[2].Value;
var attrNameNode = SyntaxFactory.ParseName(attrName);
var argsNode = !string.IsNullOrEmpty(attrArgs) ? SyntaxFactory.ParseAttributeArgumentList(attrArgs) : null;
var finalAttrNode = SyntaxFactory.Attribute(attrNameNode, argsNode);
if (listAttributes == null)
{
listAttributes = new List<AttributeSyntax>();
}
listAttributes.Add(finalAttrNode);
}
}
if (match.Groups[2].Success)
{
newType = match.Groups[2].Value;
}
if (match.Groups[3].Success)
{
newName = match.Groups[3].Value;
}
}
return listAttributes != null || newType != null || newName != null;
}
public static void EncodeConstant(this LiteralEncoder encoder, object constant)
{
encoder.Scalar().Constant(constant);
}
public static void SplitType(string fullType, out string typeOnly, out string pointers)
{
int starIndex = fullType.IndexOf('*');
if (starIndex != -1)
{
typeOnly = fullType.Substring(0, starIndex);
pointers = fullType.Substring(starIndex);
}
else
{
typeOnly = fullType;
pointers = string.Empty;
}
}
public static string RemoveQuotes(string text)
{
if (text.Length >= 2 && text[0] == '\"' && text[text.Length - 1] == '\"')
{
return text.Substring(1, text.Length - 2);
}
return text;
}
public static uint ParseHex(string text)
{
if (text.StartsWith("0x", StringComparison.OrdinalIgnoreCase))
{
text = text.Substring(2);
}
if (char.ToUpperInvariant(text[text.Length - 1]) == 'L')
{
text = text.Substring(0, text.Length - 1);
}
return uint.Parse(text, System.Globalization.NumberStyles.HexNumber);
}
public static void TypedConstant(this LiteralEncoder encoder, TypedConstant constant)
{
switch (constant.Kind)
{
case TypedConstantKind.Primitive:
encoder.Scalar().Constant(constant.Value);
break;
case TypedConstantKind.Enum:
encoder.Scalar().Constant(constant.Value);
break;
// This looks more correct, but the code above matches what the C# compiler produces
// encoder.TaggedScalar(
// type => type.Enum(constant.Type.ToString()),
// scalar => scalar.Constant(constant.Value)
//);
case TypedConstantKind.Type:
encoder.Scalar().SystemType(constant.Type.ToString());
break;
case TypedConstantKind.Array:
{
LiteralsEncoder arrayEncoder = encoder.Vector().Count(constant.Values.Length);
foreach (var arrayConstant in constant.Values)
{
arrayEncoder.AddLiteral().TypedConstant(arrayConstant);
}
break;
}
}
}
public static void EncodeSpecialType(this SignatureTypeEncoder typeEncoder, SpecialType specialType)
{
switch (specialType)
{
case SpecialType.System_Boolean:
typeEncoder.Boolean();
break;
case SpecialType.System_SByte:
typeEncoder.SByte();
break;
case SpecialType.System_Byte:
typeEncoder.Byte();
break;
case SpecialType.System_Int16:
typeEncoder.Int16();
break;
case SpecialType.System_Int32:
typeEncoder.Int32();
break;
case SpecialType.System_Int64:
typeEncoder.Int64();
break;
case SpecialType.System_UInt16:
typeEncoder.UInt16();
break;
case SpecialType.System_UInt32:
typeEncoder.UInt32();
break;
case SpecialType.System_UInt64:
typeEncoder.UInt64();
break;
case SpecialType.System_Single:
typeEncoder.Single();
break;
case SpecialType.System_Double:
typeEncoder.Double();
break;
case SpecialType.System_Char:
typeEncoder.Char();
break;
case SpecialType.System_String:
typeEncoder.String();
break;
case SpecialType.System_Object:
typeEncoder.Object();
break;
case SpecialType.System_IntPtr:
typeEncoder.IntPtr();
break;
case SpecialType.System_UIntPtr:
typeEncoder.UIntPtr();
break;
default:
throw new NotImplementedException();
}
// TODO: handle C# interface mappings for special types
}
public static void NamedArgumentType(this NamedArgumentTypeEncoder encoder, INamedTypeSymbol attributeType, string field)
{
var fieldMembers = attributeType.GetMembers(field);
var fieldSymbol = fieldMembers.First() as IFieldSymbol;
var propertySymbol = fieldMembers.First() as IPropertySymbol;
if (fieldSymbol != null)
{
if (fieldSymbol.Type.SpecialType == SpecialType.System_Object)
{
encoder.Object();
}
else if (fieldSymbol.Type.SpecialType == SpecialType.System_Array)
{
// TODO array type encoder
encoder.SZArray();
}
else if (fieldSymbol.Type.TypeKind == TypeKind.Enum)
{
encoder.ScalarType().Enum(fieldSymbol.Type.ToString());
}
else
{
encoder.ScalarType().CustomElementType(fieldSymbol);
}
}
else if (propertySymbol != null)
{
if (propertySymbol.Type.SpecialType == SpecialType.System_Object)
{
encoder.Object();
}
else if (propertySymbol.Type.SpecialType == SpecialType.System_Array)
{
// TODO array type encoder
encoder.SZArray();
}
else if (propertySymbol.Type.TypeKind == TypeKind.Enum)
{
encoder.ScalarType().Enum(propertySymbol.Type.ToString());
}
else
{
encoder.ScalarType().CustomElementType(propertySymbol);
}
}
}
public static void CustomElementType(this CustomAttributeElementTypeEncoder typeEncoder, IFieldSymbol field)
{
switch (field.Type.SpecialType)
{
case SpecialType.System_Boolean:
typeEncoder.Boolean();
break;
case SpecialType.System_Byte:
typeEncoder.Byte();
break;
case SpecialType.System_Int16:
typeEncoder.Int16();
break;
case SpecialType.System_Int32:
typeEncoder.Int32();
break;
case SpecialType.System_Int64:
typeEncoder.Int64();
break;
case SpecialType.System_UInt16:
typeEncoder.UInt16();
break;
case SpecialType.System_UInt32:
typeEncoder.UInt32();
break;
case SpecialType.System_UInt64:
typeEncoder.UInt64();
break;
case SpecialType.System_Single:
typeEncoder.Single();
break;
case SpecialType.System_Double:
typeEncoder.Double();
break;
case SpecialType.System_Char:
typeEncoder.Char();
break;
case SpecialType.System_String:
typeEncoder.String();
break;
case SpecialType.System_Enum:
typeEncoder.Enum(field.Type.ToString());
break;
case SpecialType.System_SByte:
typeEncoder.SByte();
break;
default:
throw new NotImplementedException();
}
}
public static void CustomElementType(this CustomAttributeElementTypeEncoder typeEncoder, IPropertySymbol property)
{
switch (property.Type.SpecialType)
{
case SpecialType.System_Boolean:
typeEncoder.Boolean();
break;
case SpecialType.System_Byte:
typeEncoder.Byte();
break;
case SpecialType.System_Int16:
typeEncoder.Int16();
break;
case SpecialType.System_Int32:
typeEncoder.Int32();
break;
case SpecialType.System_Int64:
typeEncoder.Int64();
break;
case SpecialType.System_UInt16:
typeEncoder.UInt16();
break;
case SpecialType.System_UInt32:
typeEncoder.UInt32();
break;
case SpecialType.System_UInt64:
typeEncoder.UInt64();
break;
case SpecialType.System_Single:
typeEncoder.Single();
break;
case SpecialType.System_Double:
typeEncoder.Double();
break;
case SpecialType.System_Char:
typeEncoder.Char();
break;
case SpecialType.System_String:
typeEncoder.String();
break;
case SpecialType.System_Enum:
typeEncoder.Enum(property.Type.ToString());
break;
case SpecialType.System_SByte:
typeEncoder.SByte();
break;
default:
throw new NotImplementedException();
}
}
public static void NamedArguments(
this CustomAttributeNamedArgumentsEncoder argumentsEncoder,
INamedTypeSymbol attributeType,
IList<KeyValuePair<string, TypedConstant>> namedArguments)
{
var encoder = argumentsEncoder.Count(namedArguments.Count);
foreach (var argument in namedArguments)
{
encoder.AddArgument(
true,
type => type.NamedArgumentType(attributeType, argument.Key),
name => name.Name(argument.Key),
literal => literal.TypedConstant(argument.Value)
);
}
}
public static void ConstArguments(this FixedArgumentsEncoder argumentsEncoder, IList<object> arguments)
{
foreach (var argument in arguments)
{
argumentsEncoder.AddArgument().Scalar().Constant(argument);
}
}
public static void FixedArguments(this FixedArgumentsEncoder argumentsEncoder, IList<TypedConstant> arguments)
{
foreach (var argument in arguments)
{
argumentsEncoder.AddArgument().TypedConstant(argument);
}
}
public static AttributeListSyntax ConvertGuidToAttributeList(Guid guid)
{
// Outputs in format: {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}
string formattedGuid = guid.ToString("x");
// Get rid of leading { and trailing }}
formattedGuid = formattedGuid.Substring(1, formattedGuid.Length - 3);
// There's one more { we need to get rid of
formattedGuid = formattedGuid.Replace("{", string.Empty);
string args = $"({formattedGuid})";
return
SyntaxFactory.AttributeList(
SyntaxFactory.SingletonSeparatedList<AttributeSyntax>(
SyntaxFactory.Attribute(
SyntaxFactory.ParseName("Windows.Win32.Foundation.Metadata.Guid"),
SyntaxFactory.ParseAttributeArgumentList(args))));
}
}
}