116 lines
4.8 KiB
C#
116 lines
4.8 KiB
C#
/*******************************************************************************
|
||
* Copyright © 2016 WaterCloud.Framework 版权所有
|
||
* Author: WaterCloud
|
||
* Description: WaterCloud快速开发平台
|
||
* Website:
|
||
*********************************************************************************/
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Linq.Expressions;
|
||
using System.Reflection;
|
||
|
||
namespace WaterCloud.Code
|
||
{
|
||
public static partial class ExtLinq
|
||
{
|
||
public static Expression Property(this Expression expression, string propertyName)
|
||
{
|
||
return Expression.Property(expression, propertyName);
|
||
}
|
||
public static Expression AndAlso(this Expression left, Expression right)
|
||
{
|
||
return Expression.AndAlso(left, right);
|
||
}
|
||
public static Expression Call(this Expression instance, string methodName, params Expression[] arguments)
|
||
{
|
||
return Expression.Call(instance, instance.Type.GetMethod(methodName), arguments);
|
||
}
|
||
public static Expression GreaterThan(this Expression left, Expression right)
|
||
{
|
||
return Expression.GreaterThan(left, right);
|
||
}
|
||
public static Expression<T> ToLambda<T>(this Expression body, params ParameterExpression[] parameters)
|
||
{
|
||
return Expression.Lambda<T>(body, parameters);
|
||
}
|
||
public static Expression<Func<T, bool>> True<T>() { return param => true; }
|
||
public static Expression<Func<T, bool>> False<T>() { return param => false; }
|
||
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);
|
||
}
|
||
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);
|
||
}
|
||
public static Expression<T> Compose<T>(this Expression<T> first, Expression<T> second, Func<Expression, Expression, Expression> merge)
|
||
{
|
||
var map = first.Parameters
|
||
.Select((f, i) => new { f, s = second.Parameters[i] })
|
||
.ToDictionary(p => p.s, p => p.f);
|
||
var secondBody = ParameterRebinder.ReplaceParameters(map, second.Body);
|
||
return Expression.Lambda<T>(merge(first.Body, secondBody), first.Parameters);
|
||
}
|
||
private class ParameterRebinder : ExpressionVisitor
|
||
{
|
||
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);
|
||
}
|
||
protected override Expression VisitParameter(ParameterExpression p)
|
||
{
|
||
ParameterExpression replacement;
|
||
|
||
if (map.TryGetValue(p, out replacement))
|
||
{
|
||
p = replacement;
|
||
}
|
||
return base.VisitParameter(p);
|
||
}
|
||
}
|
||
public static ParameterExpression CreateLambdaParam<T>(string name)
|
||
{
|
||
return Expression.Parameter(typeof(T), name);
|
||
}
|
||
/// <summary>
|
||
/// 创建完整的lambda
|
||
/// </summary>
|
||
public static LambdaExpression GenerateLambda(this ParameterExpression param, Expression body)
|
||
{
|
||
//c=>c.XXX=="XXX"
|
||
return Expression.Lambda(body, param);
|
||
}
|
||
|
||
public static Expression<Func<T, bool>> GenerateTypeLambda<T>(this ParameterExpression param, Expression body)
|
||
{
|
||
return (Expression<Func<T, bool>>)(param.GenerateLambda(body));
|
||
}
|
||
public static Expression Or(this Expression expression, Expression expressionRight)
|
||
{
|
||
return Expression.Or(expression, expressionRight);
|
||
}
|
||
|
||
public static Expression And(this Expression expression, Expression expressionRight)
|
||
{
|
||
return Expression.And(expression, expressionRight);
|
||
}
|
||
}
|
||
|
||
}
|