calc2_ast_dump.cpp

来自「Boost provides free peer-reviewed portab」· C++ 代码 · 共 166 行

CPP
166
字号
/*=============================================================================    Copyright (c) 2001-2008 Joel de Guzman    Copyright (c) 2001-2008 Hartmut Kaiser    Distributed under the Boost Software License, Version 1.0. (See accompanying    file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)=============================================================================*////////////////////////////////////////////////////////////////////////////////////  A Calculator example demonstrating generation of AST which gets dumped into//  a human readable format afterwards.////  [ JDG April 28, 2008 ]//  [ HK April 28, 2008 ]/////////////////////////////////////////////////////////////////////////////////#include <boost/config/warning_disable.hpp>#include <boost/spirit/include/qi.hpp>#include <boost/spirit/include/karma.hpp>#include <iostream>#include <vector>#include <string>#include "calc2_ast.hpp"using namespace boost::spirit;using namespace boost::spirit::ascii;using namespace boost::spirit::arg_names;/////////////////////////////////////////////////////////////////////////////////  Our calculator parser grammar///////////////////////////////////////////////////////////////////////////////template <typename Iterator>struct calculator : qi::grammar<Iterator, expression_ast(), space_type>{    calculator() : calculator::base_type(expression)    {        expression =            term                            [_val = _1]            >> *(   ('+' >> term            [_val += _1])                |   ('-' >> term            [_val -= _1])                )            ;        term =            factor                          [_val = _1]            >> *(   ('*' >> factor          [_val *= _1])                |   ('/' >> factor          [_val /= _1])                )            ;        factor =            uint_                           [_val = _1]            |   '(' >> expression           [_val = _1] >> ')'            |   ('-' >> factor              [_val = neg(_1)])            |   ('+' >> factor              [_val = pos(_1)])            ;    }    qi::rule<Iterator, expression_ast(), space_type> expression, term, factor;};/////////////////////////////////////////////////////////////////////////////////  Our AST grammar for the generator, this just dumps the AST as a expression///////////////////////////////////////////////////////////////////////////////template <typename OuputIterator>struct dump_ast  : karma::grammar<OuputIterator, expression_ast(), space_type>{    dump_ast() : dump_ast::base_type(ast_node)    {        ast_node %=                 int_        [_1 = _int(_val)]            |   binary_node [_1 = _bin_op(_val)]            |   unary_node  [_1 = _unary_op(_val)]            ;                    binary_node =                 ('(' << ast_node << char_ << ast_node << ')')                [                     _1 = _left(_val), _2 = _op(_val), _3 = _right(_val)                ]            ;        unary_node =                ('(' << char_ << ast_node << ')')                [                    _1 = _op(_val), _2 = _right(_val)                ]            ;    }    karma::rule<OuputIterator, expression_ast(), space_type> ast_node;    karma::rule<OuputIterator, binary_op(), space_type> binary_node;    karma::rule<OuputIterator, unary_op(), space_type> unary_node;};/////////////////////////////////////////////////////////////////////////////////  Main program///////////////////////////////////////////////////////////////////////////////intmain(){    std::cout << "/////////////////////////////////////////////////////////\n\n";    std::cout << "Dump AST's for simple expressions...\n\n";    std::cout << "/////////////////////////////////////////////////////////\n\n";    std::cout << "Type an expression...or [q or Q] to quit\n\n";    //  Our parser grammar definitions    typedef std::string::const_iterator iterator_type;    typedef calculator<iterator_type> calculator;    calculator calc;     // Our generator grammar definitions    typedef std::back_insert_iterator<std::string> output_iterator_type;    typedef dump_ast<output_iterator_type> dump_ast;    dump_ast ast_grammar;    std::string str;    while (std::getline(std::cin, str))    {        if (str.empty() || str[0] == 'q' || str[0] == 'Q')            break;        expression_ast ast;        std::string::const_iterator iter = str.begin();        std::string::const_iterator end = str.end();        bool r = qi::phrase_parse(iter, end, calc, ast, space);        if (r && iter == end)        {            std::string generated;            r = karma::generate_delimited(                std::back_inserter(generated), ast_grammar, ast, space);                        if (r)            {                std::cout << "AST for '" << str << "': " << generated                           << std::endl;            }            else            {                std::cout << "-------------------------\n";                std::cout << "Generating failed\n";                std::cout << "-------------------------\n";            }        }        else        {            std::string rest(iter, end);            std::cout << "-------------------------\n";            std::cout << "Parsing failed\n";            std::cout << "stopped at: \": " << rest << "\"\n";            std::cout << "-------------------------\n";        }    }    std::cout << "Bye... :-) \n\n";    return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?