boost :: spirit绑定函数,将参数设置为spirit:qi :: _ val [英] boost::spirit binding function providing parameteres as spirit:qi::_val

查看:48
本文介绍了boost :: spirit绑定函数,将参数设置为spirit:qi :: _ val的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

需要为std :: pair对象提供类型为boost :: variant的对象的值.您将如何使用其他资源来实现这个想法?除此以外,还有其他方法吗?

There is a need of providing the values from an object of type boost::variant for an std::pair object. How would you implement this idea using other resources? Any other way than this is done below?

    struct aggr_pair_visitor : public ::boost::static_visitor<void>
    {
    public:
        explicit aggr_pair_visitor( column_and_aggregate & pair_ ) : pair(pair_)
        {
        }
        void operator()(column_name_t const & column)
        {
            pair.first = column;
        }
        void operator()(unsigned const & faggr)
        {
            if ( faggr > static_cast<unsigned>(sql_faggregate::SUM) || faggr < static_cast<unsigned>(sql_faggregate::AVG) )
                throw std::runtime_error("Failed to parse aggregate type : Not valid integer");
            else pair.second = static_cast<sql_faggregate>(faggr);
        }
    private:
        column_and_aggregate & pair;
    };
    void apply_col_and_aggr_visitor( column_and_aggregate & col_and_aggr_pair, ::boost::variant< column_name_t, unsigned > const & val )
    {
        aggr_pair_visitor pair_visitor( col_and_aggr_pair );
        ::boost::apply_visitor( pair_visitor, val ); // N.B.!!! Runtime execution of operator()!
    }
    spirit::qi::rule< iterator, column_and_aggregate(), ascii::space_type > agg_pair =
        quoted_string[::boost::bind( &apply_col_and_aggr_visitor, spirit::qi::_val, spirit::qi::_1 )]
        > ':'
        > spirit::int_[::boost::bind( &apply_col_and_aggr_visitor, spirit::qi::_val, spirit::qi::_1 )];
    spirit::qi::rule< iterator, column_and_aggregate_container(), ascii::space_type > aggregates_parser =
          '{'
        > agg_pair[phoenix::push_back(spirit::qi::_val, spirit::qi::_1)] % ',' // N.B.!!! list-redux technic
        > '}';

推荐答案

好的,乍一看,我认为您只是错过了融合适应 std :: pair:

Okay, on second glance I think you just missed the ability to fusion adapt std::pair:

#include <boost/fusion/adapted/std_pair.hpp>
// Or:
#include <boost/fusion/adapted.hpp>

使用此方法,整个复杂性消失了,并且不需要任何涉及此变体的事情.让我们假设以下类型:

Using this, the whole complexity vanishes and there is no need for anything involving the variant. Let's assume the following types:

typedef std::string column_name_t;

enum sql_faggregate
{
    SUM,
    // ....
    AVG,
};

typedef std::pair<column_name_t, sql_faggregate> column_and_aggregate;
typedef std::vector<column_and_aggregate> column_and_aggregate_container;

一个简单的语法是:

template <typename It, typename Skipper = qi::space_type>
    struct parser : qi::grammar<It, column_and_aggregate_container(), Skipper>
{
    parser() : parser::base_type(aggregates_parser)
    {
        using namespace qi;
        // using phx::bind; using phx::ref; using phx::val;

        quoted_string = lexeme [ "'" >> *~qi::char_("'") >> "'" ];
        faggr = int_;
        agg_pair = quoted_string > ':' > faggr;
        aggregates_parser = '{' > agg_pair % ',' > '}';
    }

  private:
    qi::rule<It, std::string(), qi::space_type>           quoted_string;
    qi::rule<It, sql_faggregate(), qi::space_type>        faggr;
    qi::rule<It, column_and_aggregate(), qi::space_type>   agg_pair;
    qi::rule<It, column_and_aggregate_container(), qi::space_type> aggregates_parser;
};

您也可以添加输入验证:

You could add the input validation too:

faggr %= int_ [ qi::_pass = (qi::_1 >=SUM and qi::_1<=AVG) ];

注意 %=以确保属性传播.

程序代码:

#include <boost/fusion/adapted/std_pair.hpp>
#include <boost/spirit/include/qi.hpp>
// #include <boost/spirit/include/phoenix.hpp>

namespace qi    = boost::spirit::qi;
namespace phx   = boost::phoenix;

typedef std::string column_name_t;

enum sql_faggregate
{
    SUM,
    // ....
    AVG,
};

typedef std::pair<column_name_t, sql_faggregate> column_and_aggregate;
typedef std::vector<column_and_aggregate> column_and_aggregate_container;

template <typename It, typename Skipper = qi::space_type>
    struct parser : qi::grammar<It, column_and_aggregate_container(), Skipper>
{
    parser() : parser::base_type(aggregates_parser)
    {
        using namespace qi;
        // using phx::bind; using phx::ref; using phx::val;

        quoted_string = lexeme [ "'" >> *~qi::char_("'") >> "'" ];
        faggr = int_;
        agg_pair = quoted_string > ':' > faggr;
        aggregates_parser = '{' > agg_pair % ',' > '}';

        BOOST_SPIRIT_DEBUG_NODE(aggregates_parser);
    }

  private:
    qi::rule<It, std::string(), qi::space_type>           quoted_string;
    qi::rule<It, sql_faggregate(), qi::space_type>        faggr;
    qi::rule<It, column_and_aggregate(), qi::space_type>           agg_pair;
    qi::rule<It, column_and_aggregate_container(), qi::space_type> aggregates_parser;
};

bool doParse(const std::string& input)
{
    typedef std::string::const_iterator It;
    auto f(begin(input)), l(end(input));

    parser<It, qi::space_type> p;
    column_and_aggregate_container data;

    try
    {
        bool ok = qi::phrase_parse(f,l,p,qi::space,data);
        if (ok)   
        {
            std::cout << "parse success\n";
            for (auto& pair : data)
                std::cout << "result: '" << pair.first << "' : " << (int) pair.second << "\n";
        }
        else      std::cerr << "parse failed: '" << std::string(f,l) << "'\n";

        if (f!=l) std::cerr << "trailing unparsed: '" << std::string(f,l) << "'\n";
        return ok;
    } catch(const qi::expectation_failure<It>& e)
    {
        std::string frag(e.first, e.last);
        std::cerr << e.what() << "'" << frag << "'\n";
    }

    return false;
}

int main()
{
    bool ok = doParse("{ 'column 1' : 1, 'column 2' : 0, 'column 3' : 1 }");
    return ok? 0 : 255;
}

打印输出:

parse success
result: 'column 1' : 1
result: 'column 2' : 0
result: 'column 3' : 1

PS :如果您希望在语义动作中执行相同的操作,则可能需要这样写:

PS: If you wanted to do the same in semantic actions, you'd probably want to write it like:

agg_pair = 
      quoted_string [ phx::bind(&column_and_aggregate::first, _val)  = _1 ]
    > ':'
    > faggr         [ phx::bind(&column_and_aggregate::second, _val) = _1 ];

您会看到您可以将其放在上面的示例中,并且其工作原理完全相同.对于这种特殊的语法,它只是更详细,所以我不推荐它:)

You'll see that you can just drop it in the above sample and it works exactly the same. For this particular grammar, it's just more verbose, so I don't recommend it :)

这篇关于boost :: spirit绑定函数,将参数设置为spirit:qi :: _ val的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆