繁体   English   中英

用于评估 Java 对象上的逻辑表达式的库

[英]Library for evaluating logical expressions on Java objects

假设我有以下课程:

class Person {
    int age;
    String city;
    Collection<Person> friends;
    Person spouse;
}

我需要一个库,它可以让我评估给定 Person 对象上的逻辑表达式是否为真。 表达式看起来像这样:

((age>25 OR spouse.age>27) AND city=="New-York" AND size(friends)>100)

所以,要求是:

  1. 能够使用基本的逻辑运算符
  2. 访问给定对象的属性
  3. 访问内部对象的属性
  4. 使用简单的数学\类似 sql 的函数,例如 size、max、sum

建议?

您可以使用ScriptEngine + 反射:

  • 访问对象中的所有字段并创建具有这些值的变量
  • 评估表达式

这是一个人为的例子,它输出:

age = 35
city = "London"
age > 32 && city == "London" => true
age > 32 && city == "Paris" => false
age < 32 && city == "London" => false

如果您想处理非原始类型(例如集合),它可能会变得非常混乱。

public class Test1 {

    public static void main(String[] args) throws Exception{
        Person p = new Person();
        p.age = 35;
        p.city = "London";

        ScriptEngineManager factory = new ScriptEngineManager();
        ScriptEngine engine = factory.getEngineByName("JavaScript");

        Class<Person> c = Person.class;
        for (Field f : c.getDeclaredFields()) {
            Object o = f.get(p);
            String assignement = null;
            if (o instanceof String) {
                assignement = f.getName() + " = \"" + String.valueOf(o) + "\"";
            } else {
                assignement = f.getName() + " = " + String.valueOf(o);
            }
            engine.eval(assignement);
            System.out.println(assignement);
        }

        String condition = "age > 32 && city == \"London\"";
        System.out.println(condition + " => " + engine.eval(condition));

        condition = "age > 32 && city == \"Paris\"";
        System.out.println(condition + " => " + engine.eval(condition));

        condition = "age < 32 && city == \"London\"";
        System.out.println(condition + " => " + engine.eval(condition));
    }

    public static class Person {

        int age;
        String city;
    }
}

好的,我想我找到了我想要的,这是 assylias 答案的变体,但我更喜欢它,因为它更标准化(不想专门依赖 Javascript 表达式,或者根本不想运行 Javascript)。

显然有一个统一的表达式语言来评估表达式,它最初是为 JSP 设计的,但也可以用于其他东西。 有几种解析器实现,我可能会使用Spring ELJUEL

您可以使用Mozilla 的 rhino 库 https://github.com/mozilla/rhino

例子 :

@Test
public void shouldCheckLogicalOperations(){
    Context cx = Context.enter();
    try {
        Scriptable scope = cx.initStandardObjects();
        ScriptableObject.putProperty(scope, "form_admin_checked", true);
        ScriptableObject.putProperty(scope, "form_limit_value", 50000);

        String script = "((form_admin_checked && form_limit_value<2000) || (form_admin_checked && !form_admin_checked) || form_admin_checked && form_limit_value==50000)";
        String expectedResponse = "true";

        Object result = cx.evaluateString(scope, script, "<cmd>", 1, null);

        Assert.assertEquals(expectedResponse, result.toString());

    } finally {
        // Exit from the context.
        Context.exit();
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM