-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathMongoQueryProvider.cs
166 lines (147 loc) · 7.16 KB
/
MongoQueryProvider.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
/* Copyright 2010-present MongoDB Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Linq;
using System.Linq.Expressions;
using System.Threading;
using System.Threading.Tasks;
using MongoDB.Bson;
using MongoDB.Bson.Serialization;
using MongoDB.Driver.Core.Misc;
using MongoDB.Driver.Linq.Linq3Implementation.Translators.ExpressionToExecutableQueryTranslators;
using MongoDB.Driver.Support;
namespace MongoDB.Driver.Linq.Linq3Implementation
{
internal abstract class MongoQueryProvider : IMongoQueryProviderInternal
{
// protected fields
protected readonly AggregateOptions _options;
protected readonly IClientSessionHandle _session;
// constructors
protected MongoQueryProvider(
IClientSessionHandle session,
AggregateOptions options)
{
_session = session;
_options = options;
}
// public properties
public abstract CollectionNamespace CollectionNamespace { get; }
public abstract BsonDocument[] LoggedStages { get; }
public AggregateOptions Options => _options;
public abstract IBsonSerializer PipelineInputSerializer { get; }
public IClientSessionHandle Session => _session;
// public methods
public abstract IQueryable CreateQuery(Expression expression);
public abstract IQueryable<TElement> CreateQuery<TElement>(Expression expression);
public abstract object Execute(Expression expression);
public abstract TResult Execute<TResult>(Expression expression);
public abstract Task<TResult> ExecuteAsync<TResult>(Expression expression, CancellationToken cancellationToken);
public abstract ExpressionTranslationOptions GetTranslationOptions();
public abstract BsonDocument[] Translate<TResult>(Expression expression, out IBsonSerializer<TResult> outputSerializer);
}
internal sealed class MongoQueryProvider<TDocument> : MongoQueryProvider
{
// private fields
private readonly IMongoCollection<TDocument> _collection;
private readonly IMongoDatabase _database;
private ExecutableQuery<TDocument> _executedQuery;
private readonly IBsonSerializer _pipelineInputSerializer;
// constructors
public MongoQueryProvider(
IMongoCollection<TDocument> collection,
IClientSessionHandle session,
AggregateOptions options)
: base(session, options)
{
_collection = Ensure.IsNotNull(collection, nameof(collection));
_pipelineInputSerializer = collection.DocumentSerializer;
}
public MongoQueryProvider(
IMongoDatabase database,
IClientSessionHandle session,
AggregateOptions options)
: base(session, options)
{
_database = Ensure.IsNotNull(database, nameof(database));
_pipelineInputSerializer = NoPipelineInputSerializer.Instance;
}
internal MongoQueryProvider(
IBsonSerializer pipelineInputSerializer,
IClientSessionHandle session,
AggregateOptions options)
: base(session, options)
{
_pipelineInputSerializer = Ensure.IsNotNull(pipelineInputSerializer, nameof(pipelineInputSerializer));
}
// public properties
public IMongoCollection<TDocument> Collection => _collection;
public override CollectionNamespace CollectionNamespace => _collection == null ? null : _collection.CollectionNamespace;
public IMongoDatabase Database => _database;
public override BsonDocument[] LoggedStages => _executedQuery?.LoggedStages;
public override IBsonSerializer PipelineInputSerializer => _pipelineInputSerializer;
// public methods
public override IQueryable CreateQuery(Expression expression)
{
var outputType = expression.Type.GetSequenceElementType();
var queryType = typeof(MongoQuery<,>).MakeGenericType(typeof(TDocument), outputType);
return (IQueryable)Activator.CreateInstance(queryType, new object[] { this, expression });
}
public override IQueryable<TOutput> CreateQuery<TOutput>(Expression expression)
{
return new MongoQuery<TDocument, TOutput>(this, expression);
}
public override object Execute(Expression expression)
{
throw new NotImplementedException();
}
public override TResult Execute<TResult>(Expression expression)
{
var translationOptions = GetTranslationOptions();
var executableQuery = ExpressionToExecutableQueryTranslator.TranslateScalar<TDocument, TResult>(this, expression, translationOptions);
return Execute(executableQuery, CancellationToken.None);
}
public TResult Execute<TResult>(ExecutableQuery<TDocument, TResult> executableQuery, CancellationToken cancellationToken)
{
_executedQuery = executableQuery;
return executableQuery.Execute(_session, cancellationToken);
}
public override Task<TResult> ExecuteAsync<TResult>(Expression expression, CancellationToken cancellationToken)
{
var translationOptions = GetTranslationOptions();
var executableQuery = ExpressionToExecutableQueryTranslator.TranslateScalar<TDocument, TResult>(this, expression, translationOptions);
return ExecuteAsync(executableQuery, cancellationToken);
}
public Task<TResult> ExecuteAsync<TResult>(ExecutableQuery<TDocument, TResult> executableQuery, CancellationToken cancellationToken)
{
_executedQuery = executableQuery;
return executableQuery.ExecuteAsync(_session, cancellationToken);
}
public override ExpressionTranslationOptions GetTranslationOptions()
{
var translationOptions = _options?.TranslationOptions;
var database = _database ?? _collection?.Database;
return translationOptions.AddMissingOptionsFrom(database?.Client.Settings.TranslationOptions);
}
public override BsonDocument[] Translate<TResult>(Expression expression, out IBsonSerializer<TResult> outputSerializer)
{
var translationOptions = GetTranslationOptions();
var executableQuery = ExpressionToExecutableQueryTranslator.Translate<TDocument, TResult>(provider: this, expression, translationOptions);
var stages = executableQuery.Pipeline.Ast.Stages;
outputSerializer = (IBsonSerializer<TResult>)executableQuery.Pipeline.OutputSerializer;
return stages.Select(s => s.Render().AsBsonDocument).ToArray();
}
}
}