forked from mongodb/mongo-csharp-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PipelineStageDefinition.cs
411 lines (363 loc) · 15.3 KB
/
PipelineStageDefinition.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
408
409
410
411
/* 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.Collections.Generic;
using System.Linq;
using System.Transactions;
using MongoDB.Bson;
using MongoDB.Bson.Serialization;
using MongoDB.Driver.Core.Misc;
namespace MongoDB.Driver
{
/// <summary>
/// A rendered pipeline stage.
/// </summary>
public interface IRenderedPipelineStageDefinition
{
/// <summary>
/// Gets the name of the pipeline operator.
/// </summary>
/// <value>
/// The name of the pipeline operator.
/// </value>
string OperatorName { get; }
/// <summary>
/// Gets the document.
/// </summary>
BsonDocument Document { get; }
/// <summary>
/// Gets the documents (usually one but could be more).
/// </summary>
IReadOnlyList<BsonDocument> Documents { get; }
/// <summary>
/// Gets the output serializer.
/// </summary>
IBsonSerializer OutputSerializer { get; }
}
/// <summary>
/// A rendered pipeline stage.
/// </summary>
/// <typeparam name="TOutput">The type of the output.</typeparam>
public class RenderedPipelineStageDefinition<TOutput> : IRenderedPipelineStageDefinition
{
private string _operatorName;
private IReadOnlyList<BsonDocument> _documents;
private IBsonSerializer<TOutput> _outputSerializer;
/// <summary>
/// Initializes a new instance of the <see cref="RenderedPipelineStageDefinition{TOutput}"/> class.
/// </summary>
/// <param name="operatorName">Name of the pipeline operator.</param>
/// <param name="document">The document.</param>
/// <param name="outputSerializer">The output serializer.</param>
public RenderedPipelineStageDefinition(string operatorName, BsonDocument document, IBsonSerializer<TOutput> outputSerializer)
: this(operatorName, new List<BsonDocument> { document }, outputSerializer)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="RenderedPipelineStageDefinition{TOutput}"/> class.
/// </summary>
/// <param name="operatorName">Name of the pipeline operator.</param>
/// <param name="documents">The documents.</param>
/// <param name="outputSerializer">The output serializer.</param>
public RenderedPipelineStageDefinition(string operatorName, IEnumerable<BsonDocument> documents, IBsonSerializer<TOutput> outputSerializer)
{
_operatorName = Ensure.IsNotNull(operatorName, nameof(operatorName));
_documents = Ensure.IsNotNull(documents, nameof(documents)).ToArray();
_outputSerializer = Ensure.IsNotNull(outputSerializer, nameof(outputSerializer));
}
/// <inheritdoc />
public BsonDocument Document
{
get { return _documents.Single(); }
}
/// <inheritdoc />
public IReadOnlyList<BsonDocument> Documents
{
get { return _documents; }
}
/// <summary>
/// Gets the output serializer.
/// </summary>
public IBsonSerializer<TOutput> OutputSerializer
{
get { return _outputSerializer; }
}
/// <inheritdoc />
public string OperatorName
{
get { return _operatorName; }
}
/// <inheritdoc />
IBsonSerializer IRenderedPipelineStageDefinition.OutputSerializer
{
get { return _outputSerializer; }
}
}
/// <summary>
/// A pipeline stage.
/// </summary>
public interface IPipelineStageDefinition
{
/// <summary>
/// Gets the type of the input.
/// </summary>
Type InputType { get; }
/// <summary>
/// Gets the name of the pipeline operator.
/// </summary>
string OperatorName { get; }
/// <summary>
/// Gets the type of the output.
/// </summary>
Type OutputType { get; }
/// <summary>
/// Renders the specified document serializer.
/// </summary>
/// <param name="inputSerializer">The input serializer.</param>
/// <param name="serializerRegistry">The serializer registry.</param>
/// <returns>An <see cref="IRenderedPipelineStageDefinition" /></returns>
IRenderedPipelineStageDefinition Render(IBsonSerializer inputSerializer, IBsonSerializerRegistry serializerRegistry);
/// <summary>
/// Renders the specified document serializer.
/// </summary>
/// <param name="inputSerializer">The input serializer.</param>
/// <param name="serializerRegistry">The serializer registry.</param>
/// <param name="translationOptions">The translation options.</param>
/// <returns>An <see cref="IRenderedPipelineStageDefinition" /></returns>
IRenderedPipelineStageDefinition Render(IBsonSerializer inputSerializer, IBsonSerializerRegistry serializerRegistry, ExpressionTranslationOptions translationOptions);
/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <param name="inputSerializer">The input serializer.</param>
/// <param name="serializerRegistry">The serializer registry.</param>
/// <returns>
/// A <see cref="System.String" /> that represents this instance.
/// </returns>
string ToString(IBsonSerializer inputSerializer, IBsonSerializerRegistry serializerRegistry);
}
/// <summary>
/// Base class for pipeline stages.
/// </summary>
/// <typeparam name="TInput">The type of the input.</typeparam>
/// <typeparam name="TOutput">The type of the output.</typeparam>
public abstract class PipelineStageDefinition<TInput, TOutput> : IPipelineStageDefinition
{
/// <summary>
/// Gets the type of the input.
/// </summary>
public Type InputType
{
get { return typeof(TInput); }
}
/// <inheritdoc />
public abstract string OperatorName { get; }
/// <summary>
/// Gets the type of the output.
/// </summary>
public Type OutputType
{
get { return typeof(TOutput); }
}
/// <summary>
/// Renders the specified document serializer.
/// </summary>
/// <param name="args">The render arguments.</param>
/// <returns>A <see cref="RenderedPipelineStageDefinition{TOutput}" /></returns>
public abstract RenderedPipelineStageDefinition<TOutput> Render(RenderArgs<TInput> args);
/// <inheritdoc/>
public override string ToString()
{
var serializerRegistry = BsonSerializer.SerializerRegistry;
var inputSerializer = serializerRegistry.GetSerializer<TInput>();
return ToString(inputSerializer, serializerRegistry);
}
/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <param name="inputSerializer">The input serializer.</param>
/// <param name="serializerRegistry">The serializer registry.</param>
/// <returns>
/// A <see cref="System.String" /> that represents this instance.
/// </returns>
public string ToString(IBsonSerializer<TInput> inputSerializer, IBsonSerializerRegistry serializerRegistry) =>
ToString(inputSerializer, serializerRegistry, translationOptions: null);
/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <param name="inputSerializer">The input serializer.</param>
/// <param name="serializerRegistry">The serializer registry.</param>
/// <param name="translationOptions">The translation options.</param>
/// <returns>
/// A <see cref="System.String" /> that represents this instance.
/// </returns>
public string ToString(IBsonSerializer<TInput> inputSerializer, IBsonSerializerRegistry serializerRegistry, ExpressionTranslationOptions translationOptions)
{
var renderedStage = Render(new(inputSerializer, serializerRegistry, translationOptions: translationOptions));
var documents = renderedStage.Documents;
if (documents.Count == 1)
{
return documents[0].ToJson();
}
else
{
return new BsonArray(documents).ToJson();
}
}
string IPipelineStageDefinition.ToString(IBsonSerializer inputSerializer, IBsonSerializerRegistry serializerRegistry)
{
return ToString((IBsonSerializer<TInput>)inputSerializer, serializerRegistry);
}
/// <summary>
/// Performs an implicit conversion from <see cref="BsonDocument"/> to <see cref="PipelineStageDefinition{TInput, TOutput}"/>.
/// </summary>
/// <param name="document">The document.</param>
/// <returns>
/// The result of the conversion.
/// </returns>
public static implicit operator PipelineStageDefinition<TInput, TOutput>(BsonDocument document)
{
if (document == null)
{
return null;
}
return new BsonDocumentPipelineStageDefinition<TInput, TOutput>(document);
}
/// <summary>
/// Performs an implicit conversion from <see cref="System.String" /> to <see cref="PipelineStageDefinition{TInput, TOutput}" />.
/// </summary>
/// <param name="json">The JSON string.</param>
/// <returns>
/// The result of the conversion.
/// </returns>
public static implicit operator PipelineStageDefinition<TInput, TOutput>(string json)
{
if (json == null)
{
return null;
}
return new JsonPipelineStageDefinition<TInput, TOutput>(json);
}
/// <inheritdoc />
IRenderedPipelineStageDefinition IPipelineStageDefinition.Render(IBsonSerializer inputSerializer, IBsonSerializerRegistry serializerRegistry)
{
return Render(new((IBsonSerializer<TInput>)inputSerializer, serializerRegistry, translationOptions: null));
}
/// <inheritdoc />
IRenderedPipelineStageDefinition IPipelineStageDefinition.Render(IBsonSerializer inputSerializer, IBsonSerializerRegistry serializerRegistry, ExpressionTranslationOptions translationOptions)
{
return Render(new((IBsonSerializer<TInput>)inputSerializer, serializerRegistry, translationOptions: translationOptions));
}
}
/// <summary>
/// A <see cref="BsonDocument"/> based stage.
/// </summary>
/// <typeparam name="TInput">The type of the input.</typeparam>
/// <typeparam name="TOutput">The type of the output.</typeparam>
public sealed class BsonDocumentPipelineStageDefinition<TInput, TOutput> : PipelineStageDefinition<TInput, TOutput>
{
private readonly BsonDocument _document;
private readonly IBsonSerializer<TOutput> _outputSerializer;
/// <summary>
/// Initializes a new instance of the <see cref="BsonDocumentPipelineStageDefinition{TInput, TOutput}"/> class.
/// </summary>
/// <param name="document">The document.</param>
/// <param name="outputSerializer">The output serializer.</param>
public BsonDocumentPipelineStageDefinition(BsonDocument document, IBsonSerializer<TOutput> outputSerializer = null)
{
_document = Ensure.IsNotNull(document, nameof(document));
_outputSerializer = outputSerializer;
}
/// <inheritdoc />
public override string OperatorName
{
get { return _document.GetElement(0).Name; }
}
/// <inheritdoc />
public override RenderedPipelineStageDefinition<TOutput> Render(RenderArgs<TInput> args)
{
return new RenderedPipelineStageDefinition<TOutput>(
OperatorName,
_document,
_outputSerializer ?? args.GetSerializer<TOutput>());
}
}
/// <summary>
/// A JSON <see cref="String"/> based pipeline stage.
/// </summary>
/// <typeparam name="TInput">The type of the input.</typeparam>
/// <typeparam name="TOutput">The type of the output.</typeparam>
public sealed class JsonPipelineStageDefinition<TInput, TOutput> : PipelineStageDefinition<TInput, TOutput>
{
private readonly BsonDocument _document;
private readonly string _json;
private readonly IBsonSerializer<TOutput> _outputSerializer;
/// <summary>
/// Initializes a new instance of the <see cref="JsonPipelineStageDefinition{TInput, TOutput}" /> class.
/// </summary>
/// <param name="json">The json.</param>
/// <param name="outputSerializer">The output serializer.</param>
public JsonPipelineStageDefinition(string json, IBsonSerializer<TOutput> outputSerializer = null)
{
_json = Ensure.IsNotNullOrEmpty(json, nameof(json));
_outputSerializer = outputSerializer;
_document = BsonDocument.Parse(json);
}
/// <summary>
/// Gets the json.
/// </summary>
public string Json
{
get { return _json; }
}
/// <inheritdoc />
public override string OperatorName
{
get { return _document.GetElement(0).Name; }
}
/// <summary>
/// Gets the output serializer.
/// </summary>
public IBsonSerializer<TOutput> OutputSerializer
{
get { return _outputSerializer; }
}
/// <inheritdoc />
public override RenderedPipelineStageDefinition<TOutput> Render(RenderArgs<TInput> args)
{
return new RenderedPipelineStageDefinition<TOutput>(
OperatorName,
BsonDocument.Parse(_json),
_outputSerializer ?? args.GetSerializer<TOutput>());
}
}
internal sealed class DelegatedPipelineStageDefinition<TInput, TOutput> : PipelineStageDefinition<TInput, TOutput>
{
private readonly string _operatorName;
private readonly Func<RenderArgs<TInput>, RenderedPipelineStageDefinition<TOutput>> _renderer;
public DelegatedPipelineStageDefinition(string operatorName, Func<RenderArgs<TInput>, RenderedPipelineStageDefinition<TOutput>> renderer)
{
_operatorName = operatorName;
_renderer = renderer;
}
public override string OperatorName
{
get { return _operatorName; }
}
public override RenderedPipelineStageDefinition<TOutput> Render(RenderArgs<TInput> args)
{
return _renderer(args);
}
}
}