-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathQueryOptimizingExpressionVisitor.cs
More file actions
421 lines (366 loc) · 19.4 KB
/
QueryOptimizingExpressionVisitor.cs
File metadata and controls
421 lines (366 loc) · 19.4 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.EntityFrameworkCore.Internal;
namespace Microsoft.EntityFrameworkCore.Query.Internal;
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public class QueryOptimizingExpressionVisitor : ExpressionVisitor
{
private static readonly MethodInfo StringCompareWithComparisonMethod =
typeof(string).GetRuntimeMethod(nameof(string.Compare), [typeof(string), typeof(string), typeof(StringComparison)])!;
private static readonly MethodInfo StringCompareWithoutComparisonMethod =
typeof(string).GetRuntimeMethod(nameof(string.Compare), [typeof(string), typeof(string)])!;
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override Expression VisitBinary(BinaryExpression binaryExpression)
{
var left = Visit(binaryExpression.Left);
var right = Visit(binaryExpression.Right);
if (binaryExpression.NodeType != ExpressionType.Coalesce
&& left.Type != right.Type
&& left.Type.UnwrapNullableType() == right.Type.UnwrapNullableType())
{
if (left.Type.IsNullableValueType())
{
right = Expression.Convert(right, left.Type);
}
else
{
left = Expression.Convert(left, right.Type);
}
}
return binaryExpression.Update(left, binaryExpression.Conversion, right);
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override Expression VisitConditional(ConditionalExpression conditionalExpression)
{
var test = Visit(conditionalExpression.Test);
var ifTrue = Visit(conditionalExpression.IfTrue);
var ifFalse = Visit(conditionalExpression.IfFalse);
if (ifTrue.Type != ifFalse.Type
&& ifTrue.Type.UnwrapNullableType() == ifFalse.Type.UnwrapNullableType())
{
if (ifTrue.Type.IsNullableValueType())
{
ifFalse = Expression.Convert(ifFalse, ifTrue.Type);
}
else
{
ifTrue = Expression.Convert(ifTrue, ifFalse.Type);
}
return Expression.Condition(test, ifTrue, ifFalse);
}
return conditionalExpression.Update(test, ifTrue, ifFalse);
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override ElementInit VisitElementInit(ElementInit elementInit)
{
var arguments = new Expression[elementInit.Arguments.Count];
for (var i = 0; i < arguments.Length; i++)
{
arguments[i] = MatchExpressionType(
Visit(elementInit.Arguments[i]),
elementInit.Arguments[i].Type);
}
return elementInit.Update(arguments);
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override Expression VisitLambda<T>(Expression<T> lambdaExpression)
{
var body = Visit(lambdaExpression.Body);
return body.Type != lambdaExpression.Body.Type
? Expression.Lambda(Expression.Convert(body, lambdaExpression.Body.Type), lambdaExpression.Parameters)
: lambdaExpression.Update(body, lambdaExpression.Parameters);
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override Expression VisitMember(MemberExpression memberExpression)
{
var expression = memberExpression.Expression != null
? MatchExpressionType(
Visit(memberExpression.Expression),
memberExpression.Expression.Type)
: null;
var visitedExpression = memberExpression.Update(expression);
return TryOptimizeMemberAccessOverConditional(visitedExpression) ?? visitedExpression;
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override MemberAssignment VisitMemberAssignment(MemberAssignment memberAssignment)
{
var expression = MatchExpressionType(
Visit(memberAssignment.Expression),
memberAssignment.Expression.Type);
return memberAssignment.Update(expression);
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override Expression VisitMethodCall(MethodCallExpression methodCallExpression)
{
// Normalize x.Any(i => i == foo) to x.Contains(foo)
// And x.All(i => i != foo) to !x.Contains(foo)
if (methodCallExpression.Method.IsGenericMethod
&& methodCallExpression.Method.GetGenericMethodDefinition() is var methodInfo
&& (methodInfo == EnumerableMethods.AnyWithPredicate
|| methodInfo == EnumerableMethods.All
|| methodInfo == QueryableMethods.AnyWithPredicate
|| methodInfo == QueryableMethods.All)
&& methodCallExpression.Arguments[1].UnwrapLambdaFromQuote() is var lambda
&& TryExtractEqualityOperands(lambda.Body, out var left, out var right, out var negated))
{
var itemExpression = left == lambda.Parameters[0]
? right
: right == lambda.Parameters[0]
? left
: null;
if (itemExpression is not null)
{
var containsMethodDefinition = methodInfo.DeclaringType == typeof(Enumerable)
? EnumerableMethods.Contains
: QueryableMethods.Contains;
if ((methodInfo == EnumerableMethods.AnyWithPredicate || methodInfo == QueryableMethods.AnyWithPredicate) && !negated)
{
var containsMethod = containsMethodDefinition.MakeGenericMethod(methodCallExpression.Method.GetGenericArguments()[0]);
return Expression.Call(null, containsMethod, methodCallExpression.Arguments[0], itemExpression);
}
if ((methodInfo == EnumerableMethods.All || methodInfo == QueryableMethods.All) && negated)
{
var containsMethod = containsMethodDefinition.MakeGenericMethod(methodCallExpression.Method.GetGenericArguments()[0]);
return Expression.Not(Expression.Call(null, containsMethod, methodCallExpression.Arguments[0], itemExpression));
}
}
}
var @object = default(Expression);
if (methodCallExpression.Object != null)
{
@object = MatchExpressionType(
Visit(methodCallExpression.Object), methodCallExpression.Object.Type);
}
var arguments = new Expression[methodCallExpression.Arguments.Count];
for (var i = 0; i < arguments.Length; i++)
{
arguments[i] = MatchExpressionType(
Visit(methodCallExpression.Arguments[i]), methodCallExpression.Arguments[i].Type);
}
var visited = methodCallExpression.Update(@object!, arguments);
// In VB.NET, comparison operators between strings (equality, greater-than, less-than) yield
// calls to a VB-specific CompareString method. Normalize that to string.Compare.
if (visited is
{
Method:
{
Name: "CompareString",
DeclaringType: { Name: "Operators" or "EmbeddedOperators", Namespace: "Microsoft.VisualBasic.CompilerServices" }
},
Object: null,
Arguments: [_, _, ConstantExpression textCompareConstantExpression]
})
{
return textCompareConstantExpression.Value is true
? Expression.Call(
StringCompareWithComparisonMethod,
visited.Arguments[0],
visited.Arguments[1],
Expression.Constant(StringComparison.OrdinalIgnoreCase))
: Expression.Call(
StringCompareWithoutComparisonMethod,
visited.Arguments[0],
visited.Arguments[1]);
}
return visited;
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override Expression VisitNew(NewExpression newExpression)
{
if (newExpression.Arguments.Count == 0)
{
return newExpression;
}
var arguments = new Expression[newExpression.Arguments.Count];
for (var i = 0; i < arguments.Length; i++)
{
arguments[i] = MatchExpressionType(
Visit(newExpression.Arguments[i]),
newExpression.Arguments[i].Type);
}
return newExpression.Update(arguments);
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override Expression VisitNewArray(NewArrayExpression newArrayExpression)
{
var expressions = new Expression[newArrayExpression.Expressions.Count];
for (var i = 0; i < expressions.Length; i++)
{
expressions[i] = MatchExpressionType(
Visit(newArrayExpression.Expressions[i]),
newArrayExpression.Expressions[i].Type);
}
return newArrayExpression.Update(expressions);
}
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected override Expression VisitUnary(UnaryExpression unaryExpression)
=> unaryExpression.Update(Visit(unaryExpression.Operand));
private static Expression MatchExpressionType(Expression expression, Type typeToMatch)
=> expression.Type != typeToMatch
? Expression.Convert(expression, typeToMatch)
: expression;
private static bool TryExtractEqualityOperands(
Expression expression,
[NotNullWhen(true)] out Expression? left,
[NotNullWhen(true)] out Expression? right,
out bool negated)
{
(left, right, negated) = (default, default, default);
switch (expression)
{
case BinaryExpression binaryExpression:
switch (binaryExpression.NodeType)
{
case ExpressionType.Equal:
negated = false;
break;
case ExpressionType.NotEqual:
negated = true;
break;
default:
return false;
}
(left, right) = (binaryExpression.Left, binaryExpression.Right);
return true;
case MethodCallExpression { Method.Name: nameof(object.Equals) } methodCallExpression:
{
negated = false;
if (methodCallExpression.Arguments.Count == 1
&& methodCallExpression.Object?.Type == methodCallExpression.Arguments[0].Type)
{
(left, right) = (methodCallExpression.Object, methodCallExpression.Arguments[0]);
return true;
}
if (methodCallExpression.Arguments.Count == 2
&& methodCallExpression.Arguments[0].Type == methodCallExpression.Arguments[1].Type)
{
(left, right) = (methodCallExpression.Arguments[0], methodCallExpression.Arguments[1]);
return true;
}
return false;
}
case UnaryExpression unaryExpression
when unaryExpression.IsLogicalNot():
{
var result = TryExtractEqualityOperands(unaryExpression.Operand, out left, out right, out negated);
negated = !negated;
return result;
}
}
return false;
}
private static Expression? TryOptimizeMemberAccessOverConditional(Expression expression)
{
// Simplify (a != null ? new { Member = b, ... } : null).Member
// to a != null ? b : null
// Later null check removal will simplify it further
if (expression is MemberExpression { Expression: { } inner } visitedMemberExpression)
{
var (conditional, convert) = inner switch
{
ConditionalExpression c => (c, null),
UnaryExpression
{
NodeType: ExpressionType.Convert or ExpressionType.ConvertChecked, Operand: ConditionalExpression cond
} conv => (cond, conv),
_ => (null, null)
};
if (conditional is
{
Test: BinaryExpression { NodeType: ExpressionType.Equal or ExpressionType.NotEqual } binaryTest
} conditionalExpression
&& !(conditionalExpression.Type.IsNullableValueType()
&& visitedMemberExpression.Member.Name is nameof(Nullable<>.HasValue) or nameof(Nullable<>.Value)))
{
var isLeftNullConstant = binaryTest.Left is ConstantExpression { Value: null };
var isRightNullConstant = binaryTest.Right is ConstantExpression { Value: null };
if (isLeftNullConstant != isRightNullConstant
&& ((binaryTest.NodeType == ExpressionType.Equal
&& conditionalExpression.IfTrue is ConstantExpression { Value: null })
|| (binaryTest.NodeType == ExpressionType.NotEqual
&& conditionalExpression.IfFalse is ConstantExpression { Value: null })))
{
var nonNullExpression = binaryTest.NodeType == ExpressionType.Equal
? conditionalExpression.IfFalse
: conditionalExpression.IfTrue;
// if we removed convert around ConditionalExpression
// we need to re-apply it before we apply the MemberExpression
if (convert is not null)
{
nonNullExpression = convert.Update(nonNullExpression);
}
// Use ReplacingExpressionVisitor rather than creating MemberExpression
// So that member access chain on NewExpression/MemberInitExpression condenses
nonNullExpression = ReplacingExpressionVisitor.Replace(
visitedMemberExpression.Expression, nonNullExpression, visitedMemberExpression);
nonNullExpression = TryOptimizeMemberAccessOverConditional(nonNullExpression) ?? nonNullExpression;
if (!nonNullExpression.Type.IsNullableType())
{
nonNullExpression = Expression.Convert(nonNullExpression, nonNullExpression.Type.MakeNullable());
}
var nullExpression = Expression.Constant(null, nonNullExpression.Type);
return Expression.Condition(
conditionalExpression.Test,
binaryTest.NodeType == ExpressionType.Equal ? nullExpression : nonNullExpression,
binaryTest.NodeType == ExpressionType.Equal ? nonNullExpression : nullExpression);
}
}
}
return null;
}
}