-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpressionBuilder.cs
More file actions
461 lines (368 loc) · 16.1 KB
/
ExpressionBuilder.cs
File metadata and controls
461 lines (368 loc) · 16.1 KB
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
using System.Linq.Expressions;
using System.Reflection;
using Ramstack.Parsing.Internal;
namespace Ramstack.Parsing;
/// <summary>
/// Builds the <see cref="Expression"/> from the <see cref="Expr"/>.
/// </summary>
/// <param name="binder">The binder instance.</param>
public partial class ExpressionBuilder(Binder binder) : ExprVisitor<Expression>
{
/// <summary>
/// Gets the binder instance.
/// </summary>
public Binder Binder { get; } = binder;
/// <inheritdoc />
protected internal override Expression VisitReference(Expr.Reference expr)
{
var symbol = ResolveSymbol(expr);
if (symbol is Expression expression)
return expression;
Error.Throw($"'{expr}' is a type, which is not valid in the given context.");
return null;
}
/// <inheritdoc />
protected internal override Expression VisitLiteral(Expr.Literal expr) =>
Expression.Constant(expr.Value);
/// <inheritdoc />
protected internal override Expression VisitBinary(Expr.Binary expr)
{
var lhs = Visit(expr.Left);
var rhs = Visit(expr.Right);
var lhsType = lhs.Type;
var rhsType = rhs.Type;
var factory = ResolveBinaryOperatorFactory(expr.Operator.Name);
switch (expr.Operator.Name)
{
case "&&":
case "||":
lhs = ApplyImplicitConversion(lhs, typeof(bool));
rhs = ApplyImplicitConversion(rhs, typeof(bool));
if (lhs is null)
Error.MissingImplicitConversion(lhsType, typeof(bool));
if (rhs is null)
Error.MissingImplicitConversion(rhsType, typeof(bool));
break;
case "??":
if (lhsType.IsValueType && !lhsType.IsNullable())
Error.NonApplicableBinaryOperator(expr.Operator, lhsType, rhsType);
rhs = ApplyImplicitConversion(rhs, lhsType);
if (rhs is null)
Error.NonApplicableBinaryOperator(expr.Operator, lhsType, rhsType);
break;
case "+":
if (lhsType != typeof(string) && rhsType != typeof(string))
break;
var arguments = new List<Expression>();
var argumentTypes = new List<Type>();
Flatten(lhs);
Flatten(rhs);
var methods = typeof(string)
.GetMethods(
BindingFlags.Public | BindingFlags.Static)
.Where(m =>
m.Name == nameof(string.Concat)
&& (m.CallingConvention & CallingConventions.VarArgs) == 0)
.Cast<MethodBase>()
.ToArray();
if (argumentTypes.Any(t => t != typeof(string)))
{
for (var i = 0; i < arguments.Count; i++)
{
argumentTypes[i] = typeof(object);
if (arguments[i].Type.IsValueType)
arguments[i] = Expression.Convert(arguments[i], typeof(object));
}
}
var cmi = (MethodInfo?)MethodResolver.ResolveMethod(methods, argumentTypes.ToArray())!;
Debug.Assert(cmi is not null);
var args = CreateInjectingArguments(cmi, arguments);
return Expression.Call(null, cmi, args);
void Flatten(Expression e)
{
if (e is MethodCallExpression call
&& call.Method.Name == nameof(string.Concat)
&& call.Method.DeclaringType == typeof(string))
{
var list = call.Arguments;
if (list.Count != 1)
{
foreach (var item in list)
{
arguments.Add(item);
argumentTypes.Add(item.Type);
}
}
else
{
var array = (NewArrayExpression)list[0];
foreach (var item in array.Expressions)
{
arguments.Add(item);
argumentTypes.Add(item.Type);
}
}
}
else
{
arguments.Add(e);
argumentTypes.Add(e.Type);
}
}
}
try
{
return ApplyBinaryExpression(expr.Operator, factory, lhs, rhs);
}
catch (Exception e) when (e is not ParseErrorException)
{
Error.NonApplicableBinaryOperator(expr.Operator, lhsType, rhsType);
}
return null!;
}
/// <inheritdoc />
protected internal override Expression VisitIndex(Expr.Indexer expr)
{
var self = Visit(expr.Expression);
var parameters = Visit(expr.Parameters).ToArray();
var parameterTypes = parameters.Length != 0
? new Type[parameters.Length]
: [];
for (var i = 0; i < parameterTypes.Length; i++)
parameterTypes[i] = parameters[i].Type;
try
{
return self.Type.IsArray ? ProcessArray() : ProcessIndex();
}
catch (Exception e) when (e is not ParseErrorException)
{
Error.Throw(e.Message);
}
return null;
Expression ProcessArray()
{
for (var i = 0; i < parameterTypes.Length; i++)
{
var argumentType = parameterTypes[i];
if (argumentType != typeof(int))
{
if (!TypeUtils.CanConvertPrimitive(argumentType, typeof(int)) && TypeUtils.FindConversionOperator(argumentType, typeof(int)) is null)
Error.MissingImplicitConversion(argumentType, typeof(int));
parameters[i] = Expression.Convert(parameters[i], typeof(int));
}
}
return Expression.ArrayAccess(self, parameters);
}
Expression ProcessIndex()
{
var methods = new List<MethodBase>();
foreach (var pi in self.Type.GetProperties())
{
var mi = pi.GetMethod;
if (mi?.GetParameters().Length != 0)
methods.Add(mi!);
}
if (methods.Count == 0)
Error.NonIndexingType(self.Type);
var method = (MethodInfo?)MethodResolver.ResolveMethod(methods.ToArray(), parameterTypes);
if (method is null)
{
var list = self.Type.GetProperties().Where(p => p.GetMethod?.GetParameters().Length != 0);
Error.AmbiguousMatch(list);
}
var injectingArguments = CreateInjectingArguments(method, parameters);
return Expression.Call(self, method, injectingArguments);
}
}
/// <inheritdoc />
protected internal override Expression VisitCall(Expr.Call expr)
{
var arguments = Visit(expr.Parameters);
var argumentTypes = arguments.Count != 0
? new Type[arguments.Count]
: [];
for (var i = 0; i < argumentTypes.Length; i++)
argumentTypes[i] = arguments[i].Type;
if (expr.Expression.Kind == ExprKind.MemberAccess)
return ProcessMemberAccess((Expr.MemberAccess)expr.Expression);
if (expr.Expression.Kind == ExprKind.Reference)
return ProcessReference((Expr.Reference)expr.Expression);
Error.MethodNameExpected(expr.Expression);
return null;
Expression Invoke(Expression? instance, MethodInfo? method)
{
Debug.Assert(instance is not null || method is not null);
if (instance is not null)
{
Debug.Assert(method is null && typeof(Delegate).IsAssignableFrom(instance.Type)
|| method is not null && !typeof(Delegate).IsAssignableFrom(instance.Type));
if (method is null)
{
const BindingFlags bindingFlags = BindingFlags.Instance | BindingFlags.Public;
method = instance.Type.GetMethod(nameof(Action.Invoke), bindingFlags);
}
}
if (method is null)
throw new InvalidOperationException(
$"Unable to resolve a method: {expr}.");
var injectingArguments = CreateInjectingArguments(method, arguments);
return Expression.Call(instance, method, injectingArguments);
}
Expression ProcessMemberAccess(Expr.MemberAccess e)
{
var instance = e.Expression is Expr.Reference r
? ResolveSymbol(r)
: Visit(e.Expression);
if (e.Member is Expr.Reference m)
{
Debug.Assert(instance is Type or Expression);
var type = instance as Type;
var expression = instance as Expression;
var memberInfo = Binder.BindToMember(type ?? expression?.Type, m.Value, expression is null);
if (memberInfo is not null)
{
if (!typeof(Delegate).IsAssignableFrom(memberInfo.GetMemberType()))
Error.NonInvocableMember(m);
//
// It's not supposed to happen
//
if (expression is null)
throw new InvalidOperationException(
"Cannot access a member on a null reference.");
expression = Expression.MakeMemberAccess(expression, memberInfo);
return Invoke(expression, null);
}
var methodInfo = Binder.BindToMethod(type ?? expression?.Type, m.Value, argumentTypes, expression is null);
if (methodInfo is null)
Error.CannotResolveSymbol(m.Value);
return Invoke(expression, methodInfo);
}
Error.MethodNameExpected(e.Member);
return null;
}
Expression ProcessReference(Expr.Reference e)
{
var symbol = TryResolveSymbol(e);
var type = symbol as Type;
Debug.Assert(symbol is null or Type or Expression);
if (symbol is Expression expression)
{
if (!typeof(Delegate).IsAssignableFrom(expression.Type))
Error.NonInvocableMember(e);
return Invoke(expression, null);
}
if (type is not null)
Error.NonInvocableMember(e);
var methodInfo = Binder.BindToMethod(null, e.Value, argumentTypes, true);
if (methodInfo is null)
Error.CannotResolveSymbol(e.Value);
var instance = methodInfo.IsStatic ? null : Binder.Context;
return Invoke(instance, methodInfo);
}
}
/// <inheritdoc />
protected internal override Expression VisitMemberAccess(Expr.MemberAccess expr)
{
var instance = expr.Expression is Expr.Reference r
? ResolveSymbol(r)
: Visit(expr.Expression);
if (expr.Member is Expr.Reference m)
{
var type = instance as Type;
var expression = instance as Expression;
Debug.Assert(type is not null || expression is not null);
var memberInfo = Binder.BindToMember(type ?? expression!.Type, m.Value, expression is null);
if (memberInfo is null)
Error.CannotResolveSymbol(m.Value);
if (memberInfo.DeclaringType == typeof(Array) && memberInfo.Name == nameof(Array.Length))
{
Debug.Assert(expression is not null);
return Expression.ArrayLength(expression);
}
return Expression.MakeMemberAccess(expression, memberInfo);
}
Error.IdentifierExpected(expr.Member);
return null;
}
/// <inheritdoc />
protected internal override Expression VisitUnary(Expr.Unary expr)
{
var operand = Visit(expr.Operand);
var operandType = operand.Type;
var underlyingType = operandType.IsEnum
? operandType.GetEnumUnderlyingType()
: operandType;
if (operandType.IsEnum)
operand = Expression.Convert(operand, underlyingType);
switch (expr.UnaryType, operand)
{
case (UnaryType.Negate, ConstantExpression { Value: 0x80000000u }):
return Expression.Constant(int.MinValue);
case (UnaryType.Negate, ConstantExpression { Value: 0x8000000000000000ul }):
return Expression.Constant(long.MinValue);
case (UnaryType.Negate, _) when operand.Type == typeof(uint):
return Expression.Convert(operand, typeof(long));
case (not UnaryType.Convert, _) when underlyingType == typeof(byte):
case (not UnaryType.Convert, _) when underlyingType == typeof(sbyte):
case (not UnaryType.Convert, _) when underlyingType == typeof(short):
case (not UnaryType.Convert, _) when underlyingType == typeof(ushort):
operand = Expression.Convert(operand, typeof(int));
break;
}
try
{
switch (expr.UnaryType)
{
case UnaryType.Not:
return Expression.Not(operand);
case UnaryType.Negate:
return Expression.Negate(operand);
case UnaryType.UnaryPlus:
return Expression.UnaryPlus(operand);
case UnaryType.OnesComplement:
operand = Expression.OnesComplement(operand);
return operandType.IsEnum
? Expression.Convert(operand, operandType)
: operand;
case UnaryType.Convert:
var type = Binder.BindToType(expr.Operator);
if (type is null)
Error.CannotResolveSymbol(expr.Operator);
if (operand.Type == type
|| operand.Type.IsClass && type.IsAssignableFrom(operand.Type))
return operand;
return Expression.Convert(operand, type);
default:
var message = $"The unary expression type '{expr.UnaryType}' is not supported.";
throw new ArgumentOutOfRangeException(nameof(expr), message);
}
}
catch (Exception e) when (e is not ParseErrorException)
{
Error.NonApplicableUnaryOperator(expr, operand.Type);
}
return null;
}
/// <inheritdoc />
protected internal override Expression VisitConditional(Expr.Conditional expr)
{
var test = Visit(expr.Test);
var ifTrue = Visit(expr.IfTrue);
var ifFalse = Visit(expr.IfFalse);
try
{
var condition = ApplyImplicitConversion(test, typeof(bool));
if (condition is null)
Error.MissingImplicitConversion(test.Type, typeof(bool));
return Expression.Condition(condition, ifTrue, ifFalse);
}
catch (Exception e) when (e is not ParseErrorException)
{
Error.Throw(e.Message);
}
return null;
}
/// <inheritdoc />
protected internal override Expression VisitParenthesized(Expr.Parenthesized expr) =>
Visit(expr.Expression);
}