// Copyright (c) 2001-2011 Hartmut Kaiser // Copyright (c) 2010 Mathias Gaunard // // 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) #define BOOST_SPIRIT_DEBUG 1 // required for token streaming // #define BOOST_SPIRIT_LEXERTL_DEBUG 1 #include #include #include #include #include #include #include #include #include namespace spirit = boost::spirit; namespace lex = spirit::lex; namespace phoenix = boost::phoenix; typedef spirit::classic::position_iterator2< spirit::multi_pass > > file_iterator; typedef boost::iterator_range file_range; inline file_iterator make_file_iterator(std::istream& input, const std::string& filename) { return file_iterator( spirit::make_default_multi_pass( std::istreambuf_iterator(input)), spirit::multi_pass >(), filename); } struct string_literal { string_literal(file_iterator, file_iterator) { } }; typedef lex::lexertl::token< file_iterator, boost::mpl::vector > token_type; struct lexer : lex::lexer > { lexer() : st("'[^'\\n]*'", 1) { lex::token_def<> string_lookahead('\''); self("LA") = string_lookahead; // make sure lookahead is implicitly evaluated using the lexer state // the token_def has been associated with self = st [ phoenix::if_(lex::lookahead(string_lookahead)) [ lex::more() ] ] ; } lex::token_def st; }; typedef lexer::iterator_type token_iterator; int main() { std::stringstream ss; ss << "'foo''bar'"; file_iterator begin = make_file_iterator(ss, "SS"); file_iterator end; lexer l; token_iterator begin2 = l.begin(begin, end); token_iterator end2 = l.end(); char const* test_data[] = { "1,'foo'", "1,'foo''bar'" }; std::size_t const test_data_size = sizeof(test_data)/sizeof(test_data[0]); token_iterator it = begin2; std::size_t i = 0; for (/**/; it != end2 && i < test_data_size; ++it, ++i) { std::stringstream ss; ss << it->id() << "," << *it; BOOST_TEST(ss.str() == test_data[i]); } BOOST_TEST(it == end2); BOOST_TEST(i == test_data_size); return boost::report_errors(); }