1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
/*=============================================================================
Copyright (c) 2001-2010 Joel de Guzman
Copyright (c) 2001-2010 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 reverse polish notation afterwards.
//
// [ JDG April 28, 2008 ]
// [ HK April 28, 2008 ]
//
///////////////////////////////////////////////////////////////////////////////
#include <boost/config/warning_disable.hpp>
#include <iostream>
#include <vector>
#include <string>
#include "calc2_ast.hpp"
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/karma.hpp>
#include <boost/fusion/include/adapt_struct.hpp>
using namespace boost::spirit;
using namespace boost::spirit::ascii;
///////////////////////////////////////////////////////////////////////////////
// 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;
};
// We need to tell fusion about our binary_op and unary_op structs
// to make them a first-class fusion citizen
//
// Note: we register the members exactly in the same sequence as we need them
// in the grammar
BOOST_FUSION_ADAPT_STRUCT(
binary_op,
(expression_ast, left)
(expression_ast, right)
(char, op)
)
BOOST_FUSION_ADAPT_STRUCT(
unary_op,
(expression_ast, right)
(char, op)
)
///////////////////////////////////////////////////////////////////////////////
// Our AST grammar for the generator, this prints the AST in reverse polish
// notation
///////////////////////////////////////////////////////////////////////////////
template <typename OuputIterator>
struct ast_rpn
: karma::grammar<OuputIterator, expression_ast(), space_type>
{
ast_rpn() : ast_rpn::base_type(ast_node)
{
ast_node %= int_ | binary_node | unary_node;
binary_node %= ast_node << ast_node << char_;
unary_node %= '(' << ast_node << char_ << ')';
}
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
///////////////////////////////////////////////////////////////////////////////
int
main()
{
std::cout << "/////////////////////////////////////////////////////////\n\n";
std::cout << "RPN generator 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 ast_rpn<output_iterator_type> ast_rpn;
ast_rpn ast_grammar;
std::string str;
while (std::getline(std::cin, str))
{
if (str.empty() || str[0] == 'q' || str[0] == 'Q')
break;
expression_ast ast; // this will hold the generated AST
std::string::const_iterator iter = str.begin();
std::string::const_iterator end = str.end();
bool r = qi::phrase_parse(iter, end, calc, space, ast);
if (r && iter == end)
{
std::string generated;
output_iterator_type outit(generated);
r = karma::generate_delimited(outit, ast_grammar, space, ast);
if (r)
{
std::cout << "RPN for '" << str << "': \n" << generated
<< std::endl;
std::cout << "-------------------------\n";
}
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;
}
|