提升精神如何从父节点访问子节点(叶子)

时间:2013-10-18 06:55:06

标签: c++ boost boost-spirit-qi

我想评估一个布尔表达式,例如a = b& s< 9或仅仅a = b,只有比较运算符(不包括逻辑运算符,如|,&和!)。我们可以有以下AST:

            =
           / \
          /   \
          a    b 

               &
              / \  
             /   \
            =     <
           / \    /\
          /   \  /  \
          a    b s   9   

叶子节点是值。离开节点的父节点始终是比较运算符,例如=,!=,&lt;,&gt;,&gt; =,&lt; =。比较节点的父节点是逻辑运算符|,&amp;和!。我想从父节点访问值节点(叶子),然后将这些值传递给另一个函数(稍后将实现)。解析步骤没问题。

如何从父节点访问值节点(叶子)。 我在以下的例子中使用: How to calculate boolean expression in Spirit

Boolean expression (grammar) parser in c++ 这是从这些链接中获取的评估代码:


    struct eval : boost::static_visitor<bool>
{
    eval() {}

    //
    bool operator()(const var& v) const
    {
        std::cout<<"feuille:\n"<<v<<std::endl;
        return true;
    }

    bool operator()(const binop<op_and>& b) const
    {
        recurse(b.oper1) && recurse(b.oper2);
    }
    bool operator()(const binop<op_or>& b) const
    {
        recurse(b.oper1) || recurse(b.oper2);
    }
    bool operator()(const unop<op_not>& u) const
    {
        return !recurse(u.oper1);
    }

    //------------adding others operators----------------------------
    bool operator()(const binop<op_equal>& u) const
    {
        // will be implemented later
        return true;
    }

    bool operator()(const binop<op_not_equal>& u) const
    {
       // will be implemented later
        return true;
    }

    bool operator()(const binop<op_less>& u) const
    {
        // will be implemented later
        return true;
    }

    bool operator()(const binop<op_less_equal>& u) const
    {
        // will be implemented later
        return true;
    }

    bool operator()(const binop<op_greater>& u) const
    {
        // will be implemented later
        return true;
    }
    bool operator()(const binop<op_greater_equal>& u) const
    {
        // will be implemented later
        return true;
    }


谢谢。欢迎提出任何建议。

1 个答案:

答案 0 :(得分:0)

您是否查看了现有运营商的其他评估重载?您是否注意到他们如何获得其操作数的值(实际上可能是子表达式)?

让我以二进制为例:

bool operator()(const binop<op_or>& b) const
{
    return recurse(b.oper1) || recurse(b.oper2);
}

如您所见,它只是将||应用于两个操作数的值。该值未在AST [1] 中找到。因此,我们将每个操作数视为一个表达式,并以递归方式在其上调用eval方法。

由于表达式类型是变体,因此调用eval实际上是将访问者应用于变体,而我had already written the helpful wrapper that does this so it's easy to recurse

private:
template<typename T>
    bool recurse(T const& v) const 
    { return boost::apply_visitor(*this, v); }

所以,不知道你的其余语法,但假设你以与现有语法相同的方式扩展它:

bool operator()(const binop<op_equal>& u) const {
    return recurse(b.oper1) == recurse(b.oper2);
}

是对的。请注意,使用聪明的宏,您可以非常快速地完成:

struct eval : boost::static_visitor<value> {

    // terminal
    value operator()(const var& v) const {
        std::cout<<"feuille:\n"<<v<<std::endl;
        return true; // TODO get value from var
    }

    // unary operator
    value operator()(const unop<op_not>& u) const { return !recurse(u.oper1); }

    /*
     * binary operators
     */
#define EXPR_DEF_BINOP(tag, op) \
    value operator()(const binop<tag>& u) const { \
        return recurse(b.oper1) op recurse(b.oper2); \
    }

    EXPR_DEF_BINOP(op_and,           &&)
    EXPR_DEF_BINOP(op_equal,         ==)
    EXPR_DEF_BINOP(op_greater,       >)
    EXPR_DEF_BINOP(op_greater_equal, >=)
    EXPR_DEF_BINOP(op_less,          <)
    EXPR_DEF_BINOP(op_less_equal,    <=)
    EXPR_DEF_BINOP(op_not_equal,     !=)
    EXPR_DEF_BINOP(op_or,            ||)

#undef EXPR_DEF_BINOP

  private:
    template<typename T>
        value recurse(T const& v) const 
        { return boost::apply_visitor(*this, v); }
};

更多说明:

  • 我在叶节点评估函数
  • 中添加了一个TODO
  • 我将类型更改为value(来自bool)。这是因为你的语法支持非布尔表达式,否则运算符<=>=没有意义。 [2] ,所以你会有不同类型的值(也是):

    using value = variant<bool, int32_t>;
    

    我将为你留下其余的


[1] 记住AST =抽象语法树:它是源的1:1表示。 (“半异常”将是文字,但您仍需要告诉评估者如何使用文字的值。)

[2] 可以说是

  • a<b可能暗示!a && b
  • a>b可能暗示!b && a
  • a!=b可能暗示a XOR b
  • a==b可能暗示!(a XOR b)