123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Text;
- using System.Threading.Tasks;
- namespace Utils
- {
- /// <summary>
- /// lambda表达式拼接扩展类
- /// </summary>
- public static class PredicateExtensions
- {
- /// <summary>
- /// Creates a predicate that evaluates to true.
- /// </summary>
- public static Expression<Func<T, bool>> True<T>() { return param => true; }
- /// <summary>
- /// Creates a predicate that evaluates to false.
- /// </summary>
- public static Expression<Func<T, bool>> False<T>() { return param => false; }
- /// <summary>
- /// Creates a predicate expression from the specified lambda expression.
- /// </summary>
- public static Expression<Func<T, bool>> Create<T>(Expression<Func<T, bool>> predicate) { return predicate; }
- /// <summary>
- /// Combines the first predicate with the second using the logical "and".
- /// </summary>
- public static Expression<Func<T, bool>> And<T>(this Expression<Func<T, bool>> first, Expression<Func<T, bool>> second)
- {
- return first.Compose(second, Expression.AndAlso);
- }
- /// <summary>
- /// Combines the first predicate with the second using the logical "or".
- /// </summary>
- public static Expression<Func<T, bool>> Or<T>(this Expression<Func<T, bool>> first, Expression<Func<T, bool>> second)
- {
- return first.Compose(second, Expression.OrElse);
- }
- /// <summary>
- /// Negates the predicate.
- /// </summary>
- public static Expression<Func<T, bool>> Not<T>(this Expression<Func<T, bool>> expression)
- {
- var negated = Expression.Not(expression.Body);
- return Expression.Lambda<Func<T, bool>>(negated, expression.Parameters);
- }
- /// <summary>
- /// Combines the first expression with the second using the specified merge function.
- /// </summary>
- static Expression<T> Compose<T>(this Expression<T> first, Expression<T> second, Func<Expression, Expression, Expression> merge)
- {
- // zip parameters (map from parameters of second to parameters of first)
- var map = first.Parameters
- .Select((f, i) => new { f, s = second.Parameters[i] })
- .ToDictionary(p => p.s, p => p.f);
- // replace parameters in the second lambda expression with the parameters in the first
- var secondBody = ParameterRebinder.ReplaceParameters(map, second.Body);
- // create a merged lambda expression with parameters from the first expression
- return Expression.Lambda<T>(merge(first.Body, secondBody), first.Parameters);
- }
- /// <summary>
- /// ParameterRebinder
- /// </summary>
- class ParameterRebinder : ExpressionVisitor
- {
- /// <summary>
- /// The ParameterExpression map
- /// </summary>
- readonly Dictionary<ParameterExpression, ParameterExpression> map;
- /// <summary>
- /// Initializes a new instance of the <see cref="ParameterRebinder"/> class.
- /// </summary>
- /// <param name="map">The map.</param>
- ParameterRebinder(Dictionary<ParameterExpression, ParameterExpression> map)
- {
- this.map = map ?? new Dictionary<ParameterExpression, ParameterExpression>();
- }
- /// <summary>
- /// Replaces the parameters.
- /// </summary>
- /// <param name="map">The map.</param>
- /// <param name="exp">The exp.</param>
- /// <returns>Expression</returns>
- public static Expression ReplaceParameters(Dictionary<ParameterExpression, ParameterExpression> map, Expression exp)
- {
- return new ParameterRebinder(map).Visit(exp);
- }
- /// <summary>
- /// Visits the parameter.
- /// </summary>
- /// <param name="p">The p.</param>
- /// <returns>Expression</returns>
- protected override Expression VisitParameter(ParameterExpression p)
- {
- ParameterExpression replacement;
- if (map.TryGetValue(p, out replacement))
- {
- p = replacement;
- }
- return base.VisitParameter(p);
- }
- }
- }
- }
|