จะแปลงสตริงเป็น LINQ Expression Tree ได้อย่างไร


173

นี่เป็นเวอร์ชันดั้งเดิมของปัญหาดั้งเดิม

ฉันมีชั้นเรียนที่เรียกว่าบุคคล:

public class Person {
  public string Name { get; set; }
  public int Age { get; set; }
  public int Weight { get; set; }
  public DateTime FavouriteDay { get; set; }
}

... และให้พูดตัวอย่าง:

var bob = new Person {
  Name = "Bob",
  Age = 30,
  Weight = 213,
  FavouriteDay = '1/1/2000'
}

ฉันต้องการเขียนข้อความต่อไปนี้เป็นสตริงในโปรแกรมแก้ไขข้อความที่ชื่นชอบ ....

(Person.Age > 3 AND Person.Weight > 50) OR Person.Age < 3

ฉันต้องการใช้สตริงนี้และอินสแตนซ์ของวัตถุและประเมินค่า TRUE หรือ FALSE - เช่นการประเมิน Func <Person, bool> บนอินสแตนซ์ของวัตถุ

นี่คือความคิดปัจจุบันของฉัน:

  1. ใช้ไวยากรณ์พื้นฐานใน ANTLR เพื่อสนับสนุนการเปรียบเทียบและผู้ประกอบการทางตรรกะขั้นพื้นฐาน ฉันกำลังคิดว่าจะคัดลอกลำดับความสำคัญของ Visual Basic และชุดฟีเจอร์บางส่วนที่นี่: http://msdn.microsoft.com/en-us/library/fw84t893(VS.80).aspx
  2. ให้ ANTLR สร้าง AST ที่เหมาะสมจากสตริงที่จัดเตรียม
  3. เดิน AST และใช้เฟรมเวิร์กPredicate Builderเพื่อสร้าง Func <Person, bool> แบบไดนามิก
  4. ประเมินเพรดิเคตกับอินสแตนซ์ของบุคคลตามที่ต้องการ

คำถามของฉันคือฉัน overbaked ทั้งหมดนี้หรือไม่ ทางเลือกใด ๆ


แก้ไข: Chosen Solution

ฉันตัดสินใจใช้ Dynamic Linq Library โดยเฉพาะคลาส Dynamic Query ที่ให้ไว้ใน LINQSamples

รหัสด้านล่าง:

using System;
using System.Linq.Expressions;
using System.Linq.Dynamic;

namespace ExpressionParser
{
  class Program
  {
    public class Person
    {
      public string Name { get; set; }
      public int Age { get; set; }
      public int Weight { get; set; }
      public DateTime FavouriteDay { get; set; }
    }

    static void Main()
    {
      const string exp = @"(Person.Age > 3 AND Person.Weight > 50) OR Person.Age < 3";
      var p = Expression.Parameter(typeof(Person), "Person");
      var e = System.Linq.Dynamic.DynamicExpression.ParseLambda(new[] { p }, null, exp);
      var bob = new Person
      {
        Name = "Bob",
        Age = 30,
        Weight = 213,
        FavouriteDay = new DateTime(2000,1,1)
      };

      var result = e.Compile().DynamicInvoke(bob);
      Console.WriteLine(result);
      Console.ReadKey();
    }
  }
}

ผลลัพธ์เป็นชนิด System.Boolean และในกรณีนี้คือ TRUE

ขอบคุณ Marc Gravell

รวมSystem.Linq.Dynamicแพ็คเกจแพคเกจเอกสารที่นี่


33
ขอขอบคุณที่โพสต์รหัสโซลูชั่นแบบเต็มพร้อมกับคำถามของคุณ ชื่นชมมาก
Adrian Grigore

ถ้าคุณมีคอลเล็กชั่นหรือคนและต้องการกรององค์ประกอบบางอย่าง? บุคคลอายุ> 3 และคนน้ำหนัก> 50
serhio

ขอบคุณ ฉันไม่พบ DynamicExpression.ParseLambda () เนมสเปซและชุดประกอบใดอยู่
Matt Fitzmaurice

ดีทั้งหมด .. มีความกำกวมระหว่างเนมสเปซ จำเป็น - ใช้ E = System.Linq. expressions; ใช้ System.Linq.Dynamic;
Matt Fitzmaurice

เหตุใดจึงใช้ 'และ' แทน '&&' มันควรจะเป็นรหัส C # หรือไม่?
Triynko

คำตอบ:


65

จะแบบไดนามิก LINQ ห้องสมุดความช่วยเหลือที่นี่? โดยเฉพาะอย่างยิ่งฉันคิดว่าเป็นWhereประโยค หากจำเป็นให้วางไว้ในรายการ / อาร์เรย์เพื่อโทรหา.Where(string)! กล่าวคือ

var people = new List<Person> { person };
int match = people.Where(filter).Any();

ถ้าไม่ใช่การเขียนโปรแกรมแยกวิเคราะห์ (ใช้Expressionใต้กระโปรงหน้ารถ) ไม่ใช่การเก็บภาษีอย่างมหาศาล - ฉันเขียนสิ่งที่คล้ายกัน (แม้ว่าฉันไม่คิดว่าฉันมีแหล่งที่มา) ในการเดินทางรถไฟของฉันก่อนวันคริสต์มาส ...


ทำเครื่องหมายว่าคุณหมายถึงอะไรโดย "การเขียนโปรแกรมแยกวิเคราะห์ (โดยใช้ Expression ใต้ฝากระโปรง)" การแยกวิเคราะห์แล้วสร้างทรีนิพจน์หรือ System.Linq. Expressions มีกลไกการแยกวิเคราะห์หรือไม่
AK_

ฉันค่อนข้างมั่นใจว่าเขาต้องการที่จะอ่านในไฟล์ที่มีการแสดงออกที่เกิดขึ้นเช่นนั้นแล้วมันจะถูกแปลเป็นคำกริยาและรวบรวม คำถามดูเหมือนว่าจะทำให้ไวยากรณ์ของคุณเปลี่ยนจาก 'string' เป็น 'predicate' // Lambda expression as data in the form of an expression tree. System.Linq.Expressions.Expression<Func<int, bool>> expr = i => i < 5; // Compile the expression tree into executable code. Func<int, bool> deleg = expr.Compile(); // Invoke the method and print the output. Console.WriteLine("deleg(4) = {0}", deleg(4)); ParseLambda ดีมาก!
Latency

31

อีกห้องสมุดหนึ่งคือหนี

ฉันทำการเปรียบเทียบDynamic Linq LibraryกับFlee and Flee เร็วกว่าการแสดงออก 10 เท่า"(Name == \"Johan\" AND Salary > 500) OR (Name != \"Johan\" AND Salary > 300)"

นี่เป็นวิธีที่คุณสามารถเขียนรหัสโดยใช้ Flee

static void Main(string[] args)
{
  var context = new ExpressionContext();
  const string exp = @"(Person.Age > 3 AND Person.Weight > 50) OR Person.Age < 3";
  context.Variables.DefineVariable("Person", typeof(Person));
  var e = context.CompileDynamic(exp);

  var bob = new Person
  {
    Name = "Bob",
    Age = 30,
    Weight = 213,
    FavouriteDay = new DateTime(2000, 1, 1)
  };

  context.Variables["Person"] = bob;
  var result = e.Evaluate();
  Console.WriteLine(result);
  Console.ReadKey();
}

บางทีฉันอาจจะพลาดบางอย่าง แต่ 'หนี' ช่วยในการสร้างทรีนิพจน์ linq ได้อย่างไร
Michael B Hildebrand

9
void Main()
{
    var testdata = new List<Ownr> {
        //new Ownr{Name = "abc", Qty = 20}, // uncomment this to see it getting filtered out
        new Ownr{Name = "abc", Qty = 2},
        new Ownr{Name = "abcd", Qty = 11},
        new Ownr{Name = "xyz", Qty = 40},
        new Ownr{Name = "ok", Qty = 5},
    };

    Expression<Func<Ownr, bool>> func = Extentions.strToFunc<Ownr>("Qty", "<=", "10");
    func = Extentions.strToFunc<Ownr>("Name", "==", "abc", func);

    var result = testdata.Where(func.ExpressionToFunc()).ToList();

    result.Dump();
}

public class Ownr
{
    public string Name { get; set; }
    public int Qty { get; set; }
}

public static class Extentions
{
    public static Expression<Func<T, bool>> strToFunc<T>(string propName, string opr, string value, Expression<Func<T, bool>> expr = null)
    {
        Expression<Func<T, bool>> func = null;
        try
        {
            var type = typeof(T);
            var prop = type.GetProperty(propName);
            ParameterExpression tpe = Expression.Parameter(typeof(T));
            Expression left = Expression.Property(tpe, prop);
            Expression right = Expression.Convert(ToExprConstant(prop, value), prop.PropertyType);
            Expression<Func<T, bool>> innerExpr = Expression.Lambda<Func<T, bool>>(ApplyFilter(opr, left, right), tpe);
            if (expr != null)
                innerExpr = innerExpr.And(expr);
            func = innerExpr;
        }
        catch (Exception ex)
        {
            ex.Dump();
        }

        return func;
    }
    private static Expression ToExprConstant(PropertyInfo prop, string value)
    {
        object val = null;

        try
        {
            switch (prop.Name)
            {
                case "System.Guid":
                    val = Guid.NewGuid();
                    break;
                default:
                    {
                        val = Convert.ChangeType(value, prop.PropertyType);
                        break;
                    }
            }
        }
        catch (Exception ex)
        {
            ex.Dump();
        }

        return Expression.Constant(val);
    }
    private static BinaryExpression ApplyFilter(string opr, Expression left, Expression right)
    {
        BinaryExpression InnerLambda = null;
        switch (opr)
        {
            case "==":
            case "=":
                InnerLambda = Expression.Equal(left, right);
                break;
            case "<":
                InnerLambda = Expression.LessThan(left, right);
                break;
            case ">":
                InnerLambda = Expression.GreaterThan(left, right);
                break;
            case ">=":
                InnerLambda = Expression.GreaterThanOrEqual(left, right);
                break;
            case "<=":
                InnerLambda = Expression.LessThanOrEqual(left, right);
                break;
            case "!=":
                InnerLambda = Expression.NotEqual(left, right);
                break;
            case "&&":
                InnerLambda = Expression.And(left, right);
                break;
            case "||":
                InnerLambda = Expression.Or(left, right);
                break;
        }
        return InnerLambda;
    }

    public static Expression<Func<T, TResult>> And<T, TResult>(this Expression<Func<T, TResult>> expr1, Expression<Func<T, TResult>> expr2)
    {
        var invokedExpr = Expression.Invoke(expr2, expr1.Parameters.Cast<Expression>());
        return Expression.Lambda<Func<T, TResult>>(Expression.AndAlso(expr1.Body, invokedExpr), expr1.Parameters);
    }

    public static Func<T, TResult> ExpressionToFunc<T, TResult>(this Expression<Func<T, TResult>> expr)
    {
        var res = expr.Compile();
        return res;
    }
}

LinqPadมีDump()วิธีการ


GetProperty อยู่ที่ไหน
Alen.Toma

@ Alen.Toma ฉันต้องเปลี่ยนรหัสเพื่อvar type = typeof(T); var prop = type.GetProperty(propName);ให้มันรวบรวม
Giles Roberts

ทำให้มันรวบรวมและทิ้งเอาท์พุท
Amit

5

คุณอาจจะดูที่การDLR อนุญาตให้คุณประเมินและดำเนินการสคริปต์ภายในแอปพลิเคชัน. NET 2.0 นี่คือตัวอย่างของIronRuby :

using System;
using IronRuby;
using IronRuby.Runtime;
using Microsoft.Scripting.Hosting;

class App
{
    static void Main()
    {
        var setup = new ScriptRuntimeSetup();
        setup.LanguageSetups.Add(
            new LanguageSetup(
                typeof(RubyContext).AssemblyQualifiedName,
                "IronRuby",
                new[] { "IronRuby" },
                new[] { ".rb" }
            )
        );
        var runtime = new ScriptRuntime(setup);
        var engine = runtime.GetEngine("IronRuby");
        var ec = Ruby.GetExecutionContext(runtime);
        ec.DefineGlobalVariable("bob", new Person
        {
            Name = "Bob",
            Age = 30,
            Weight = 213,
            FavouriteDay = "1/1/2000"
        });
        var eval = engine.Execute<bool>(
            "return ($bob.Age > 3 && $bob.Weight > 50) || $bob.Age < 3"
        );
        Console.WriteLine(eval);

    }
}

public class Person
{
    public string Name { get; set; }
    public int Age { get; set; }
    public int Weight { get; set; }
    public string FavouriteDay { get; set; }
}

แน่นอนว่าเทคนิคนี้ใช้การประเมินแบบรันไทม์และไม่สามารถตรวจสอบรหัสได้ในเวลารวบรวม


1
ฉันต้องการที่จะป้องกันการดำเนินการของ 'รหัสไม่ดี' ... นี่จะเป็นแบบที่ดีหรือไม่?
Codebrain

'รหัสไม่ดี' หมายถึงอะไร มีคนพิมพ์นิพจน์ที่ไม่ถูกต้องหรือไม่ ในกรณีนี้คุณจะได้รับข้อยกเว้นรันไทม์เมื่อพยายามประเมินสคริปต์
ดาริน Dimitrov

@darin สิ่งที่ต้องการเริ่มต้นกระบวนการเปลี่ยนข้อมูลและอื่น ๆ
sisve

2
'bad code' = สิ่งที่ไม่ใช่การแสดงออกของประเภท Func <Person, bool> (เช่นการลบไฟล์จากดิสก์การหมุนกระบวนการ ฯลฯ ... )
Codebrain

1

นี่คือตัวอย่างของตัวรวมตัวแยกวิเคราะห์ Scala DSL สำหรับการแยกวิเคราะห์และประเมินผลนิพจน์ทางคณิตศาสตร์

import scala.util.parsing.combinator._
/** 
* @author Nicolae Caralicea
* @version 1.0, 04/01/2013
*/
class Arithm extends JavaTokenParsers {
  def expr: Parser[List[String]] = term ~ rep(addTerm | minusTerm) ^^
    { case termValue ~ repValue => termValue ::: repValue.flatten }

  def addTerm: Parser[List[String]] = "+" ~ term ^^
    { case "+" ~ termValue => termValue ::: List("+") }

  def minusTerm: Parser[List[String]] = "-" ~ term ^^
    { case "-" ~ termValue => termValue ::: List("-") }

  def term: Parser[List[String]] = factor ~ rep(multiplyFactor | divideFactor) ^^
    {
      case factorValue1 ~ repfactor => factorValue1 ::: repfactor.flatten
    }

  def multiplyFactor: Parser[List[String]] = "*" ~ factor ^^
    { case "*" ~ factorValue => factorValue ::: List("*") }

  def divideFactor: Parser[List[String]] = "/" ~ factor ^^
    { case "/" ~ factorValue => factorValue ::: List("/") }

  def factor: Parser[List[String]] = floatingPointConstant | parantExpr

  def floatingPointConstant: Parser[List[String]] = floatingPointNumber ^^
    {
      case value => List[String](value)
    }

  def parantExpr: Parser[List[String]] = "(" ~ expr ~ ")" ^^
    {
      case "(" ~ exprValue ~ ")" => exprValue
    }

  def evaluateExpr(expression: String): Double = {
    val parseRes = parseAll(expr, expression)
    if (parseRes.successful) evaluatePostfix(parseRes.get)
    else throw new RuntimeException(parseRes.toString())
  }
  private def evaluatePostfix(postfixExpressionList: List[String]): Double = {
    import scala.collection.immutable.Stack

    def multiply(a: Double, b: Double) = a * b
    def divide(a: Double, b: Double) = a / b
    def add(a: Double, b: Double) = a + b
    def subtract(a: Double, b: Double) = a - b

    def executeOpOnStack(stack: Stack[Any], operation: (Double, Double) => Double): (Stack[Any], Double) = {
      val el1 = stack.top
      val updatedStack1 = stack.pop
      val el2 = updatedStack1.top
      val updatedStack2 = updatedStack1.pop
      val value = operation(el2.toString.toDouble, el1.toString.toDouble)
      (updatedStack2.push(operation(el2.toString.toDouble, el1.toString.toDouble)), value)
    }
    val initial: (Stack[Any], Double) = (Stack(), null.asInstanceOf[Double])
    val res = postfixExpressionList.foldLeft(initial)((computed, item) =>
      item match {
        case "*" => executeOpOnStack(computed._1, multiply)
        case "/" => executeOpOnStack(computed._1, divide)
        case "+" => executeOpOnStack(computed._1, add)
        case "-" => executeOpOnStack(computed._1, subtract)
        case other => (computed._1.push(other), computed._2)
      })
    res._2
  }
}

object TestArithmDSL {
  def main(args: Array[String]): Unit = {
    val arithm = new Arithm
    val actual = arithm.evaluateExpr("(12 + 4 * 6) * ((2 + 3 * ( 4 + 2 ) ) * ( 5 + 12 ))")
    val expected: Double = (12 + 4 * 6) * ((2 + 3 * ( 4 + 2 ) ) * ( 5 + 12 ))
    assert(actual == expected)
  }
}

ต้นไม้นิพจน์ที่เทียบเท่าหรือต้นไม้ในการแยกวิเคราะห์ของการแสดงออกทางคณิตศาสตร์ที่ระบุจะเป็นประเภท Parser [List [String]]

รายละเอียดเพิ่มเติมอยู่ที่ลิงค์ต่อไปนี้:

http://nicolaecaralicea.blogspot.ca/2013/04/scala-dsl-for-parsing-and-evaluating-of.html


0

นอกเหนือจาก Dynamic Linq Library (ซึ่งสร้างการแสดงออกที่พิมพ์อย่างยิ่งและต้องการตัวแปรที่พิมพ์อย่างมาก) ฉันขอแนะนำทางเลือกที่ดีกว่า: linq parser ซึ่งเป็นส่วนหนึ่งของNReco Commons Library (โอเพ่นซอร์ส) มันจัดเรียงทุกประเภทและทำการร้องขอทั้งหมดที่รันไทม์และทำงานเหมือนภาษาแบบไดนามิก:

var lambdaParser = new NReco.LambdaParser();
var varContext = new Dictionary<string,object>();
varContext["one"] = 1M;
varContext["two"] = "2";

Console.WriteLine( lambdaParser.Eval("two>one && 0<one ? (1+8)/3+1*two : 0", varContext) ); // --> 5

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.