/*============================================================================= Copyright (c) 2003 Hartmut Kaiser http://spirit.sourceforge.net/ Use, modification and distribution is subject to 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) =============================================================================*/ #include #include using namespace std; #define BOOST_SPIRIT_SWITCH_CASE_LIMIT 6 #define BOOST_SPIRIT_SELECT_LIMIT 6 #define PHOENIX_LIMIT 6 //#define BOOST_SPIRIT_DEBUG #include #include #include #include #include #include #include #include #include #include #include using namespace boost::spirit; namespace test_grammars { /////////////////////////////////////////////////////////////////////////////// // Test the direct switch_p usage struct switch_grammar_direct : public grammar { template struct definition { definition(switch_grammar_direct const& /*self*/) { r = switch_p [ case_p<'a'>(int_p), case_p<'b'>(ch_p(',')), case_p<'c'>(str_p("bcd")), case_p<'d'>(eps_p) ]; } rule r; rule const& start() const { return r; } }; }; /////////////////////////////////////////////////////////////////////////////// // Test the switch_p usage given a parser as the switch condition struct switch_grammar_parser : public grammar { template struct definition { definition(switch_grammar_parser const& /*self*/) { r = switch_p(anychar_p) [ case_p<'a'>(int_p), case_p<'b'>(ch_p(',')), case_p<'c'>(str_p("bcd")), case_p<'d'>(eps_p) ]; } rule r; rule const& start() const { return r; } }; }; /////////////////////////////////////////////////////////////////////////////// // Test the switch_p usage given an actor as the switch condition struct select_result : public boost::spirit::closure { member1 val; }; struct switch_grammar_actor : public grammar { template struct definition { definition(switch_grammar_actor const& /*self*/) { using phoenix::arg1; r = select_p('a', 'b', 'c', 'd')[r.val = arg1] >> switch_p(r.val) [ case_p<0>(int_p), case_p<1>(ch_p(',')), case_p<2>(str_p("bcd")), case_p<3>(eps_p) ]; } rule r; rule const& start() const { return r; } }; }; } // namespace test_grammars /////////////////////////////////////////////////////////////////////////////// namespace tests { // Tests for known (to the grammars) sequences struct check_grammar_known { template void operator()(GrammarT) { GrammarT g; BOOST_TEST(parse("a1", g).full); BOOST_TEST(!parse("a,", g).hit); BOOST_TEST(!parse("abcd", g).hit); BOOST_TEST(!parse("a", g).hit); BOOST_TEST(parse("a 1", g, space_p).full); BOOST_TEST(!parse("a ,", g, space_p).hit); BOOST_TEST(!parse("a bcd", g, space_p).hit); BOOST_TEST(!parse("a ", g, space_p).hit); BOOST_TEST(!parse("b1", g).hit); BOOST_TEST(parse("b,", g).full); BOOST_TEST(!parse("bbcd", g).hit); BOOST_TEST(!parse("b", g).hit); BOOST_TEST(!parse("b 1", g, space_p).hit); BOOST_TEST(parse("b ,", g, space_p).full); BOOST_TEST(!parse("b bcd", g, space_p).hit); BOOST_TEST(!parse("b ", g, space_p).hit); BOOST_TEST(!parse("c1", g).hit); BOOST_TEST(!parse("c,", g).hit); BOOST_TEST(parse("cbcd", g).full); BOOST_TEST(!parse("c", g).hit); BOOST_TEST(!parse("c 1", g, space_p).hit); BOOST_TEST(!parse("c ,", g, space_p).hit); BOOST_TEST(parse("c bcd", g, space_p).full); BOOST_TEST(!parse("c ", g, space_p).hit); BOOST_TEST(parse("d1", g).hit); BOOST_TEST(parse("d,", g).hit); BOOST_TEST(parse("dbcd", g).hit); BOOST_TEST(parse("d", g).full); BOOST_TEST(parse("d 1", g, space_p).hit); BOOST_TEST(parse("d ,", g, space_p).hit); BOOST_TEST(parse("d bcd", g, space_p).hit); BOOST_TEST(parse(" d", g, space_p).full); // JDG 10-18-2005 removed trailing ' ' to // avoid post skip problems BOOST_TEST(parse(" a 1 b , c bcd d", *g, space_p).full); // JDG 10-18-2005 removed trailing ' ' to avoid post skip problems } }; // Tests for unknown (to the grammar) sequences struct check_grammar_unknown_default { template void operator()(GrammarT) { GrammarT g; BOOST_TEST(!parse("x1", g).hit); BOOST_TEST(!parse("x,", g).hit); BOOST_TEST(!parse("xbcd", g).hit); BOOST_TEST(!parse("x 1", g, space_p).hit); BOOST_TEST(!parse("x ,", g, space_p).hit); BOOST_TEST(!parse("x bcd", g, space_p).hit); } }; } // namespace tests int main() { // Test switch_p without any default_p case branches typedef boost::mpl::list< test_grammars::switch_grammar_direct, test_grammars::switch_grammar_parser, test_grammars::switch_grammar_actor > grammar_list_t; boost::mpl::for_each(tests::check_grammar_known()); boost::mpl::for_each(tests::check_grammar_unknown_default()); return boost::report_errors(); }