| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* 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.Linq.Expressions;
- using System.Threading;
- namespace MongoDB.Driver.Linq
- {
- internal static class ExecutionPlanBuilder
- {
- public static Expression BuildPlan(Expression provider, QueryableTranslation translation)
- {
- Expression executor = Expression.Call(
- provider,
- "ExecuteModel",
- null,
- Expression.Constant(translation.Model, typeof(QueryableExecutionModel)));
- executor = Expression.Convert(
- executor,
- typeof(IAsyncCursor<>).MakeGenericType(translation.Model.OutputType));
- // we have an IAsyncCursor at this point... need to change it into an IEnumerable
- executor = Expression.Call(
- typeof(IAsyncCursorExtensions),
- nameof(IAsyncCursorExtensions.ToEnumerable),
- new Type[] { translation.Model.OutputType },
- executor,
- Expression.Constant(CancellationToken.None));
- if (translation.ResultTransformer != null)
- {
- var lambda = translation.ResultTransformer.CreateAggregator(translation.Model.OutputType);
- executor = Expression.Invoke(
- lambda,
- executor);
- }
- return executor;
- }
- public static Expression BuildAsyncPlan(Expression provider, QueryableTranslation translation, Expression cancellationToken)
- {
- Expression executor = Expression.Call(
- provider,
- "ExecuteModelAsync",
- null,
- Expression.Constant(translation.Model, typeof(QueryableExecutionModel)),
- cancellationToken);
- if (translation.ResultTransformer != null)
- {
- var lambda = translation.ResultTransformer.CreateAsyncAggregator(translation.Model.OutputType);
- executor = Expression.Invoke(
- lambda,
- Expression.Convert(executor, lambda.Parameters[0].Type),
- cancellationToken);
- }
- return executor;
- }
- }
- }
|