| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* Copyright 2015-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.Text;
- using System.Threading;
- using System.Threading.Tasks;
- using MongoDB.Bson;
- using MongoDB.Bson.Serialization;
- using MongoDB.Driver.Core.Misc;
- namespace MongoDB.Driver.Linq
- {
- /// <summary>
- /// A model for a queryable to be executed using the aggregation framework.
- /// </summary>
- /// <typeparam name="TOutput">The type of the output.</typeparam>
- public sealed class AggregateQueryableExecutionModel<TOutput> : QueryableExecutionModel
- {
- private readonly IReadOnlyList<BsonDocument> _stages;
- private readonly IBsonSerializer<TOutput> _outputSerializer;
- internal AggregateQueryableExecutionModel(IEnumerable<BsonDocument> stages, IBsonSerializer<TOutput> outputSerializer)
- {
- _stages = (Ensure.IsNotNull(stages, nameof(stages)) as IReadOnlyList<BsonDocument>) ?? stages.ToList();
- _outputSerializer = Ensure.IsNotNull(outputSerializer, nameof(outputSerializer));
- }
- /// <summary>
- /// Gets the stages.
- /// </summary>
- public IEnumerable<BsonDocument> Stages
- {
- get { return _stages; }
- }
- /// <summary>
- /// Gets the output serializer.
- /// </summary>
- public IBsonSerializer<TOutput> OutputSerializer
- {
- get { return _outputSerializer; }
- }
- /// <summary>
- /// Gets the type of the output.
- /// </summary>
- public override Type OutputType
- {
- get { return _outputSerializer.ValueType; }
- }
- /// <summary>
- /// Returns a <see cref="System.String" /> that represents this instance.
- /// </summary>
- /// <returns>
- /// A <see cref="System.String" /> that represents this instance.
- /// </returns>
- public override string ToString()
- {
- var sb = new StringBuilder("aggregate([");
- if (_stages.Count > 0)
- {
- sb.Append(string.Join(", ", _stages.Select(x => x.ToString())));
- }
- sb.Append("])");
- return sb.ToString();
- }
- internal override object Execute<TInput>(IMongoCollection<TInput> collection, AggregateOptions options)
- {
- var pipeline = CreatePipeline<TInput>();
- return collection.Aggregate(pipeline, options, CancellationToken.None);
- }
- internal override Task ExecuteAsync<TInput>(IMongoCollection<TInput> collection, AggregateOptions options, CancellationToken cancellationToken)
- {
- var pipeline = CreatePipeline<TInput>();
- return collection.AggregateAsync(pipeline, options, cancellationToken);
- }
- private BsonDocumentStagePipelineDefinition<TInput, TOutput> CreatePipeline<TInput>()
- {
- return new BsonDocumentStagePipelineDefinition<TInput, TOutput>(
- _stages,
- _outputSerializer);
- }
- }
- }
|