dotnet-dynamic-linq/PoweredSoft.DynamicLinq/Helpers/QueryableHelpers.cs

339 lines
16 KiB
C#
Raw Normal View History

2018-02-11 20:55:29 -05:00
using System;
2018-03-06 22:04:54 -05:00
using System.Collections;
2018-02-11 20:55:29 -05:00
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
2018-02-11 20:55:29 -05:00
using System.Text;
using System.Threading.Tasks;
2018-03-09 00:22:12 -05:00
2018-02-11 20:55:29 -05:00
namespace PoweredSoft.DynamicLinq.Helpers
{
public static class QueryableHelpers
{
2018-03-06 20:43:49 -05:00
public static Expression GetConditionExpressionForMember(ParameterExpression parameter, Expression member, ConditionOperators conditionOperator, ConstantExpression constant, StringComparison? stringComparision)
2018-02-11 20:55:29 -05:00
{
if (parameter == null)
throw new ArgumentNullException("parameter");
if (member == null)
throw new ArgumentNullException("member");
if (constant == null)
throw new ArgumentNullException("constant");
2018-03-06 20:43:49 -05:00
Type stringType = typeof(string);
2018-02-11 20:55:29 -05:00
Expression ret = null;
if (conditionOperator == ConditionOperators.Equal)
2018-03-06 20:43:49 -05:00
{
if (member.Type == stringType && stringComparision.HasValue)
ret = Expression.Call(member, Constants.StringEqualWithComparisation, constant, Expression.Constant(stringComparision.Value));
else
ret = Expression.Equal(member, constant);
}
else if (conditionOperator == ConditionOperators.NotEqual)
2018-03-06 20:43:49 -05:00
{
if (member.Type == stringType && stringComparision.HasValue)
ret = Expression.Not(Expression.Call(member, Constants.StringEqualWithComparisation, constant, Expression.Constant(stringComparision.Value)));
else
ret = Expression.NotEqual(member, constant);
}
2018-02-11 20:55:29 -05:00
else if (conditionOperator == ConditionOperators.GreaterThan)
ret = Expression.GreaterThan(member, constant);
else if (conditionOperator == ConditionOperators.GreaterThanOrEqual)
ret = Expression.GreaterThanOrEqual(member, constant);
else if (conditionOperator == ConditionOperators.LessThan)
ret = Expression.LessThan(member, constant);
else if (conditionOperator == ConditionOperators.LessThanOrEqual)
ret = Expression.LessThanOrEqual(member, constant);
else if (conditionOperator == ConditionOperators.Contains)
2018-03-06 20:43:49 -05:00
{
if (member.Type == stringType && stringComparision.HasValue)
ret = Expression.GreaterThan(Expression.Call(member, Constants.IndexOfMethod, constant, Expression.Constant(stringComparision.Value)), Expression.Constant(-1));
else
ret = Expression.Call(member, Constants.ContainsMethod, constant);
}
2018-02-11 20:55:29 -05:00
else if (conditionOperator == ConditionOperators.StartsWith)
2018-03-06 20:43:49 -05:00
{
if (member.Type == stringType && stringComparision.HasValue)
ret = Expression.Call(member, Constants.StartsWithMethodWithComparisation, constant, Expression.Constant(stringComparision.Value));
else
ret = Expression.Call(member, Constants.StartsWithMethod, constant);
}
2018-02-11 20:55:29 -05:00
else if (conditionOperator == ConditionOperators.EndsWith)
2018-03-06 20:43:49 -05:00
{
if (member.Type == stringType && stringComparision.HasValue)
ret = Expression.Call(member, Constants.EndsWithMethodWithComparisation, constant, Expression.Constant(stringComparision.Value));
else
ret = Expression.Call(member, Constants.EndsWithMethod, constant);
}
2018-02-11 20:55:29 -05:00
else
throw new ArgumentException("conditionOperator", "Must supply a known condition operator");
return ret;
}
2018-03-09 00:22:12 -05:00
internal static IQueryable GroupBy(IQueryable query, Type type, List<(string path, string propertyName)> parts)
2018-03-08 22:59:18 -05:00
{
2018-03-09 00:22:12 -05:00
// EXPRESSION
2018-03-08 22:59:18 -05:00
var parameter = Expression.Parameter(type, "t");
2018-03-09 00:22:12 -05:00
var partExpressions = new List<Expression>();
2018-03-08 22:59:18 -05:00
2018-03-09 00:22:12 -05:00
var fields = new List<(Type type, string propertyName)>();
2018-03-08 22:59:18 -05:00
2018-03-09 00:22:12 -05:00
// resolve part expression and create the fields inside the anonymous type.
parts.ForEach(part =>
2018-03-08 22:59:18 -05:00
{
2018-03-09 00:22:12 -05:00
var partExpression = ResolvePathForExpression(parameter, part.path);
fields.Add((partExpression.Type, part.propertyName));
partExpressions.Add(partExpression);
2018-03-08 22:59:18 -05:00
});
2018-03-09 00:22:12 -05:00
var anonymousType = TypeHelpers.CreateSimpleAnonymousType(fields);
2018-03-08 22:59:18 -05:00
2018-03-09 00:22:12 -05:00
return query;
}
public static IQueryable GroupBy(IQueryable query, Type type, string path)
{
var parameter = Expression.Parameter(type, "t");
var field = QueryableHelpers.ResolvePathForExpression(parameter, path);
var lambda = Expression.Lambda(field, parameter);
var genericMethod = Constants.GroupByMethod.MakeGenericMethod(type, field.Type);
var groupByEpression = Expression.Call(genericMethod, query.Expression, lambda);
var result = query.Provider.CreateQuery(groupByEpression);
return result;
2018-03-08 22:59:18 -05:00
}
2018-02-11 20:55:29 -05:00
/// <summary>
/// Returns the right expression for a path supplied.
/// </summary>
/// <param name="param">Expression.Parameter(typeOfClassOrInterface)</param>
/// <param name="path">the path you wish to resolve example Contact.Profile.FirstName</param>
/// <returns></returns>
public static Expression ResolvePathForExpression(ParameterExpression param, string path)
{
Expression body = param;
foreach (var member in path.Split('.'))
{
body = Expression.PropertyOrField(body, member);
}
return body;
}
public static ConstantExpression GetConstantSameAsLeftOperator(Expression member, object value)
{
if (member == null)
throw new ArgumentNullException("member");
if (value == null)
return Expression.Constant(null);
// the types.
var valueType = value.GetType();
var memberType = member.Type;
// if match.
if (valueType == memberType)
return Expression.Constant(value);
// attempt a conversion.
object convertedValue = TypeHelpers.ConvertFrom(memberType, value);
2018-03-06 19:34:28 -05:00
return Expression.Constant(convertedValue, memberType);
2018-02-11 20:55:29 -05:00
}
2018-02-12 04:30:55 -05:00
public static ConstantExpression ResolveConstant(Expression member, object value, QueryConvertStrategy convertStrategy)
{
if (convertStrategy == QueryConvertStrategy.LeaveAsIs)
return Expression.Constant(value);
2018-03-06 19:34:28 -05:00
if (convertStrategy == QueryConvertStrategy.SpecifyType)
return Expression.Constant(value, member.Type);
2018-02-12 04:30:55 -05:00
if (convertStrategy == QueryConvertStrategy.ConvertConstantToComparedPropertyOrField)
return QueryableHelpers.GetConstantSameAsLeftOperator(member, value);
throw new NotSupportedException($"{convertStrategy} supplied is not recognized");
}
2018-02-12 05:18:44 -05:00
2018-02-20 22:21:23 -05:00
public static IQueryable<T> CreateSortExpression<T>(IQueryable<T> query, string sortPath, QuerySortDirection sortDirection, bool appendSort = true)
2018-02-12 05:18:44 -05:00
{
var parameter = Expression.Parameter(typeof(T), "t");
var member = QueryableHelpers.ResolvePathForExpression(parameter, sortPath);
string sortCommand = null;
2018-02-20 22:21:23 -05:00
if (sortDirection == QuerySortDirection.Descending)
2018-02-12 05:18:44 -05:00
sortCommand = appendSort == false ? "OrderByDescending" : "ThenByDescending";
else
sortCommand = appendSort == false ? "OrderBy" : "ThenBy";
var expression = Expression.Lambda(member, parameter);
var resultExpression = Expression.Call
(typeof(Queryable),
sortCommand,
new Type[] { typeof(T), member.Type },
query.Expression,
Expression.Quote(expression)
);
query = query.Provider.CreateQuery<T>(resultExpression);
return query;
}
2018-03-06 22:04:54 -05:00
/*
* var methodInfo = typeof(List<Guid>).GetMethod("Contains", new Type[] { typeof(Guid) });
var list = Expression.Constant(ids);
var param = Expression.Parameter(typeof(T), "t");
var value = Expression.PropertyOrField(param, idField);
var body = Expression.Call(list, methodInfo, value);
var lambda = Expression.Lambda<Func<T, bool>>(body, param);
query = query.Where(lambda);
*/
internal static Expression InternalCreateFilterExpression(int recursionStep, Type type, ParameterExpression parameter, Expression current, List<string> parts,
2018-03-06 20:43:49 -05:00
ConditionOperators condition, object value, QueryConvertStrategy convertStrategy, QueryCollectionHandling collectionHandling, bool nullChecking, StringComparison? stringComparison)
{
var partStr = parts.First();
var isLast = parts.Count == 1;
// the member expression.
var memberExpression = Expression.PropertyOrField(current, partStr);
// TODO : maybe support that last part is collection but what do we do?
// not supported yet.
if (isLast && IsEnumerable(memberExpression) && value != null)
throw new NotSupportedException("Can only compare collection to null");
// create the expression and return it.
if (isLast)
{
2018-03-06 22:04:54 -05:00
if (condition == ConditionOperators.In || condition == ConditionOperators.NotIn)
{
return InAndNotIn(parameter, condition, value, convertStrategy, memberExpression);
}
else
{
var constant = QueryableHelpers.ResolveConstant(memberExpression, value, convertStrategy);
var filterExpression = QueryableHelpers.GetConditionExpressionForMember(parameter, memberExpression, condition, constant, stringComparison);
var lambda = Expression.Lambda(filterExpression, parameter);
return lambda;
}
}
// null check.
Expression nullCheckExpression = null;
if (nullChecking)
nullCheckExpression = Expression.NotEqual(memberExpression, Expression.Constant(null));
if (IsEnumerable(memberExpression))
{
var listGenericArgumentType = memberExpression.Type.GetGenericArguments().First();
var innerParameter = Expression.Parameter(listGenericArgumentType, $"t{++recursionStep}");
2018-03-06 20:43:49 -05:00
var innerLambda = InternalCreateFilterExpression(recursionStep, listGenericArgumentType, innerParameter, innerParameter, parts.Skip(1).ToList(), condition, value, convertStrategy, collectionHandling, nullChecking, stringComparison);
// the collection method.
var collectionMethod = GetCollectionMethod(collectionHandling);
var genericMethod = collectionMethod.MakeGenericMethod(listGenericArgumentType);
var callResult = Expression.Call(genericMethod, memberExpression, innerLambda);
if (nullCheckExpression != null)
{
var nullCheckResult = Expression.AndAlso(nullCheckExpression, callResult);
return Expression.Lambda(nullCheckResult, parameter);
}
return Expression.Lambda(callResult, parameter);
}
else
{
if (nullCheckExpression != null)
{
2018-03-06 20:43:49 -05:00
var pathExpr = InternalCreateFilterExpression(recursionStep, type, parameter, memberExpression, parts.Skip(1).ToList(), condition, value, convertStrategy, collectionHandling, nullChecking, stringComparison);
var nullCheckResult = Expression.AndAlso(nullCheckExpression, pathExpr);
return nullCheckResult;
}
2018-03-06 20:43:49 -05:00
return InternalCreateFilterExpression(recursionStep, type, parameter, memberExpression, parts.Skip(1).ToList(), condition, value, convertStrategy, collectionHandling, nullChecking, stringComparison);
}
}
2018-03-06 22:04:54 -05:00
public static Expression InAndNotIn(ParameterExpression parameter, ConditionOperators condition, object value, QueryConvertStrategy convertStrategy, MemberExpression memberExpression)
{
var enumerableValue = value as IEnumerable;
if (enumerableValue == null)
throw new Exception($"to use {ConditionOperators.In} your value must at least be IEnumerable");
var enumerableType = GetEnumerableType(enumerableValue);
var finalType = convertStrategy == QueryConvertStrategy.ConvertConstantToComparedPropertyOrField ? memberExpression.Type : enumerableType;
var genericListOfEnumerableType = typeof(List<>).MakeGenericType(memberExpression.Type);
var containsMethod = genericListOfEnumerableType.GetMethod("Contains", new Type[] { finalType });
var list = Activator.CreateInstance(genericListOfEnumerableType) as IList;
foreach (var o in enumerableValue)
{
if (convertStrategy == QueryConvertStrategy.ConvertConstantToComparedPropertyOrField)
list.Add(TypeHelpers.ConvertFrom(memberExpression.Type, o));
else
list.Add(o);
}
var body = Expression.Call(Expression.Constant(list), containsMethod, memberExpression) as Expression;
if (condition == ConditionOperators.NotIn)
body = Expression.Not(body);
var lambda = Expression.Lambda(body, parameter);
return lambda;
}
private static Type GetEnumerableType(IEnumerable enumerableValue)
{
foreach (var o in enumerableValue)
return o.GetType();
return null;
}
public static MethodInfo GetCollectionMethod(QueryCollectionHandling collectionHandling)
{
if (collectionHandling == QueryCollectionHandling.All)
return Constants.AllMethod;
else if (collectionHandling == QueryCollectionHandling.Any)
return Constants.AnyMethod;
throw new NotSupportedException($"{collectionHandling} is not supported");
}
public static Expression<Func<T, bool>> CreateFilterExpression<T>(string path,
ConditionOperators condition,
object value,
QueryConvertStrategy convertStrategy,
QueryCollectionHandling collectionHandling = QueryCollectionHandling.Any,
ParameterExpression parameter = null,
2018-03-06 20:43:49 -05:00
bool nullChecking = false,
StringComparison? stringComparision = null)
{
if (parameter == null)
parameter = Expression.Parameter(typeof(T), "t");
var parts = path.Split('.').ToList();
2018-03-06 20:43:49 -05:00
var result = InternalCreateFilterExpression(1, typeof(T), parameter, parameter, parts, condition, value, convertStrategy, collectionHandling, nullChecking, stringComparision);
var ret = result as Expression<Func<T, bool>>;
return ret;
}
public static bool IsEnumerable(MemberExpression member)
{
var ret = member.Type.FullName.StartsWith("System.Collection");
return ret;
}
2018-02-11 20:55:29 -05:00
}
}