using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
namespace ZeroLevel.Specification
{
///
/// Enables the efficient, dynamic composition of query predicates.
///
public static class PredicateBuilder
{
///
/// Creates a predicate that evaluates to true.
///
public static Expression> True() { return param => true; }
///
/// Creates a predicate that evaluates to false.
///
public static Expression> False() { return param => false; }
#region Creates a predicate expression from the specified lambda expression.
///
/// Creates a predicate expression from the specified lambda expression.
///
public static Expression> Create(Expression> predicate)
{ return predicate; }
///
/// Creates a predicate expression from the specified lambda expression.
///
public static Expression> CreateFromFunc(Func predicate)
{
if (predicate == null) throw new ArgumentNullException(nameof(predicate));
var method = predicate.Method;
var parameters = method.GetParameters().Select(p => Expression.Variable(p.ParameterType)).ToArray();
var target = predicate.Target;
var call = Expression.Call(method.IsStatic ? null : Expression.New(target.GetType()),
method,
parameters);
return Expression.Lambda>(call, parameters);
}
#endregion Creates a predicate expression from the specified lambda expression.
#region Combines the first predicate with the second using the logical "and".
///
/// Combines the first predicate with the second using the logical "or".
///
public static Expression> And(this Expression> first, Expression> second)
{
return first.Compose(second, Expression.AndAlso);
}
///
/// Combines the first predicate with the second using the logical "or".
///
public static Expression> AndFunc(this Expression> first, Func second)
{
return first.Compose(CreateFromFunc(second), Expression.AndAlso);
}
///
/// Combines the first predicate with the second using the logical "or".
///
public static Expression> And(this Func first, Expression> second)
{
return CreateFromFunc(first).Compose(second, Expression.AndAlso);
}
///
/// Combines the first predicate with the second using the logical "or".
///
public static Expression> AndFunc(this Func first, Func second)
{
return CreateFromFunc(first).Compose(CreateFromFunc(second), Expression.AndAlso);
}
#endregion Combines the first predicate with the second using the logical "and".
#region Combines the first predicate with the second using the logical "or".
///
/// Combines the first predicate with the second using the logical "or".
///
public static Expression> Or(this Expression> first, Expression> second)
{
return first.Compose(second, Expression.OrElse);
}
///
/// Combines the first predicate with the second using the logical "or".
///
public static Expression> OrFunc(this Expression> first, Func second)
{
return first.Compose(CreateFromFunc(second), Expression.OrElse);
}
///
/// Combines the first predicate with the second using the logical "or".
///
public static Expression> Or(this Func first, Expression> second)
{
return CreateFromFunc(first).Compose(second, Expression.OrElse);
}
///
/// Combines the first predicate with the second using the logical "or".
///
public static Expression> OrFunc(this Func first, Func second)
{
return CreateFromFunc(first).Compose(CreateFromFunc(second), Expression.OrElse);
}
#endregion Combines the first predicate with the second using the logical "or".
#region Negates the predicate.
///
/// Negates the predicate.
///
public static Expression> Not(this Expression> expression)
{
var negated = Expression.Not(expression.Body);
return Expression.Lambda>(negated, expression.Parameters);
}
///
/// Negates the predicate.
///
public static Expression> Not(this Func predicate)
{
var expression = CreateFromFunc(predicate);
var negated = Expression.Not(expression.Body);
return Expression.Lambda>(negated, expression.Parameters);
}
#endregion Negates the predicate.
#region Helpers
///
/// Combines the first expression with the second using the specified merge function.
///
private static Expression Compose(this Expression first, Expression second, Func 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(merge(first.Body, secondBody), first.Parameters);
}
private class ParameterRebinder : ExpressionVisitor
{
private readonly Dictionary map;
private ParameterRebinder(Dictionary map)
{
this.map = map ?? new Dictionary();
}
public static Expression ReplaceParameters(Dictionary map, Expression exp)
{
return new ParameterRebinder(map).Visit(exp);
}
protected override Expression VisitParameter(ParameterExpression p)
{
ParameterExpression replacement;
if (map.TryGetValue(p, out replacement))
{
p = replacement;
}
return base.VisitParameter(p);
}
}
#endregion Helpers
}
}