Question

I have the following code I need to parse a string and move it to a struct defined as follows:

#include "boost\spirit\include\classic.hpp"
#include "boost\spirit\include\qi.hpp"
#include <boost/config/warning_disable.hpp>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/spirit/include/phoenix_object.hpp>
#include <boost/fusion/include/adapt_struct.hpp>
#include <boost/fusion/include/io.hpp>
#include <boost/filesystem.hpp>
#include <boost/format.hpp>
#include <regex>
#include <string>
#include <boost\chrono.hpp>
#include <ctype.h>
#include <iostream>

struct my_struct
{
   std::string s1;
   std::string s2;
   std::string s3;
   std::string s4;
   std::string s5;
   std::string s6;
   std::string s7;
   std::string s8;
   std::string s9;
   std::string s10;
   std::string s11;
};

BOOST_FUSION_ADAPT_STRUCT(
    my_struct,
    (std::string, s1 )
    (std::string, s2 )
    (std::string, s3 )
    (std::string, s4 )
    (std::string, s5 )
    (std::string, s6 )
    (std::string, s7 )
    (std::string, s8 )
    (std::string, s9 )
    (std::string, s10)
    (std::string, s11) 
)

an my grammar is this:

template <typename Iterator>
struct my_struct_parser : qi::grammar<Iterator, my_struct(), ascii::space_type>
{
    my_struct_parser() : my_struct_parser::base_type(start)
    {
        using ascii::char_;
        using qi::digit;
        using qi::alpha;

        start %=
            qi::alpha>>"-"
            >>qi::repeat(9)[digit]>>"-"
            >>+(digit)>>"-"
            >>+(digit)>>"-"
            >>+(digit)>>"-"
            >>qi::repeat(5)[digit]>>"-"
            >>+char_("a-zA-Z")>>"-"
            >>qi::repeat(2)[digit]>>"-"
            >>+(digit)>>"-"
            >>+(digit)>>"-"
           >>+(qi::alpha)

           >>-('-'>>+(char_("a-zA-Z0-9@$")));
    }
    qi::rule<Iterator, my_struct(), ascii::space_type> start;
};

and then I parse my strings using these lines of code:

       my_struct & emp;//this is passed as an argument to a function
       typedef my_struct_parser<iterator_type> my_struct_parser_type;
       my_struct_parser_type parser;
       std::string::const_iterator iter = filename.begin();
       std::string::const_iterator end = filename.end();
       bool r =
       boost::spirit::qi::phrase_parse(iter, end,parser,boost::spirit::ascii::space ,emp);

Ok,the problem is my code compiles just fine when my struct has 10 fields or less but it give errors when I have more fields in the struct , so I guessed it was because of the parameter SPIRIT_ARGUMENTS_LIMIT because its default value is 10.

I tried defining this parameter to the size I desire before I include the spirit header files but I still get compile errors

How should I solve this problem?

Was it helpful?

Solution

If you check what compiler complains about, you will see something like this:

....
/usr/include/boost/fusion/container/vector/convert.hpp:26:13: error: invalid use of incomplete type ‘struct boost::fusion::detail::as_vector<12>’
....
/usr/include/boost/fusion/container/vector/detail/as_vector.hpp:26:12: error: declaration of ‘struct boost::fusion::detail::as_vector<12>’

I ran into this problem some time ago as well. If your struct contains more than 10 fields you need to redefine FUSION_MAX_VECTOR_SIZE as well since fusion container(s) aggregates the matched attributes.

http://www.boost.org/doc/libs/1_52_0/libs/fusion/doc/html/fusion/container/vector.html http://www.boost.org/doc/libs/1_52_0/libs/spirit/doc/html/spirit/qi/quick_reference/compound_attribute_rules.html

I would use these two defines before all other include files to override their default values:

#define FUSION_MAX_VECTOR_SIZE      20
#define SPIRIT_ARGUMENTS_LIMIT      20
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top