-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathQueryCompiler.cs
More file actions
162 lines (139 loc) · 8.8 KB
/
QueryCompiler.cs
File metadata and controls
162 lines (139 loc) · 8.8 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.CompilerServices;
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 QueryCompiler : IQueryCompiler
{
private readonly IQueryContextFactory _queryContextFactory;
private readonly ICompiledQueryCache _compiledQueryCache;
private readonly ICompiledQueryCacheKeyGenerator _compiledQueryCacheKeyGenerator;
private readonly IDatabase _database;
private readonly IDiagnosticsLogger<DbLoggerCategory.Query> _logger;
private readonly Type _contextType;
private readonly IEvaluatableExpressionFilter _evaluatableExpressionFilter;
private readonly IModel _model;
/// <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 QueryCompiler(
IQueryContextFactory queryContextFactory,
ICompiledQueryCache compiledQueryCache,
ICompiledQueryCacheKeyGenerator compiledQueryCacheKeyGenerator,
IDatabase database,
IDiagnosticsLogger<DbLoggerCategory.Query> logger,
ICurrentDbContext currentContext,
IEvaluatableExpressionFilter evaluatableExpressionFilter,
IModel model)
{
_queryContextFactory = queryContextFactory;
_compiledQueryCache = compiledQueryCache;
_compiledQueryCacheKeyGenerator = compiledQueryCacheKeyGenerator;
_database = database;
_logger = logger;
_contextType = currentContext.Context.GetType();
_evaluatableExpressionFilter = evaluatableExpressionFilter;
_model = model;
}
/// <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 virtual TResult Execute<TResult>(Expression query)
=> ExecuteCore<TResult>(query, async: false, CancellationToken.None);
/// <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 virtual TResult ExecuteAsync<TResult>(Expression query, CancellationToken cancellationToken = default)
=> ExecuteCore<TResult>(query, async: true, cancellationToken);
private TResult ExecuteCore<TResult>(Expression query, bool async, CancellationToken cancellationToken)
{
var queryContext = _queryContextFactory.Create();
queryContext.CancellationToken = cancellationToken;
var queryAfterExtraction = ExtractParameters(query, queryContext.Parameters, _logger);
var compiledQuery
= _compiledQueryCache
.GetOrAddQuery(
_compiledQueryCacheKeyGenerator.GenerateCacheKey(queryAfterExtraction, async),
() => RuntimeFeature.IsDynamicCodeSupported
? CompileQueryCore<TResult>(_database, queryAfterExtraction, _model, async)
: throw new InvalidOperationException(CoreStrings.QueryNotPrecompiled));
return compiledQuery(queryContext);
}
/// <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 virtual Func<QueryContext, TResult> CreateCompiledQuery<TResult>(Expression query)
{
var queryContext = _queryContextFactory.Create();
var queryAfterExtraction = ExtractParameters(query, queryContext.Parameters, _logger, compiledQuery: true);
return CompileQueryCore<TResult>(_database, queryAfterExtraction, _model, false);
}
/// <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 virtual Func<QueryContext, TResult> CreateCompiledAsyncQuery<TResult>(Expression query)
{
var queryContext = _queryContextFactory.Create();
var queryAfterExtraction = ExtractParameters(query, queryContext.Parameters, _logger, compiledQuery: true);
return CompileQueryCore<TResult>(_database, queryAfterExtraction, _model, true);
}
/// <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 virtual Func<QueryContext, TResult> CompileQueryCore<TResult>(
IDatabase database,
Expression query,
IModel model,
bool async)
=> database.CompileQuery<TResult>(query, async);
/// <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>
[Experimental(EFDiagnostics.PrecompiledQueryExperimental)]
public virtual Expression<Func<QueryContext, TResult>> PrecompileQuery<TResult>(Expression query, bool async)
{
var queryContext = _queryContextFactory.Create();
query = new ExpressionTreeFuncletizer(_model, _evaluatableExpressionFilter, _contextType, generateContextAccessors: false, _logger)
.ExtractParameters(query, queryContext.Parameters, parameterize: true, clearParameterizedValues: true, precompiledQuery: true);
return _database.CompileQueryExpression<TResult>(query, async);
}
/// <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 virtual Expression ExtractParameters(
Expression query,
Dictionary<string, object?> parameters,
IDiagnosticsLogger<DbLoggerCategory.Query> logger,
bool compiledQuery = false)
=> new ExpressionTreeFuncletizer(_model, _evaluatableExpressionFilter, _contextType, generateContextAccessors: false, logger)
.ExtractParameters(query, parameters, parameterize: !compiledQuery, clearParameterizedValues: true);
}