如果我用大括号包围我的程序,它工作得很好[...],但program %= *(function | globalDeclaration);
不编译...
Boost Spirit 中有什么东西可以阻止使用这种简单的规则吗?
function
首先,如果没有and的定义,我们真的无法分辨globalDeclaration
。
其次,我尝试将我的 PoC 线路更改为
static const qi::rule<It, Program(), space_type> program = *(function | global);
Program d = test("void test(); int abc; int xyz; void last();" , program);
瞧,我得到了你的编译器错误!现在我当然同意这看起来很像一个属性转换错误。此外,这是一个初步的解决方法:
program %= eps >> *(function | global);
如您所见,qi::eps
救援
嗯。我认为您需要发布一个最小的工作样本。这是从您的问题开始的概念证明,并且效果很好。
请注意,我使用编译g++ -std=c++0x
以获取函数的默认Attr
参数参数test
。
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/karma.hpp>
#include <boost/fusion/adapted.hpp>
#include <boost/strong_typedef.hpp>
// added missing bits
namespace eddic
{
typedef std::string FunctionDeclaration;
typedef std::string GlobalVariableDeclaration;
typedef boost::variant<FunctionDeclaration, GlobalVariableDeclaration> FirstLevelBlock;
}
using namespace eddic;
// end missing bits
struct Program {
std::vector<FirstLevelBlock> blocks;
};
BOOST_FUSION_ADAPT_STRUCT(
::Program,
(std::vector<eddic::FirstLevelBlock>, blocks)
)
namespace /*anon*/
{
using namespace boost::spirit::karma;
struct dumpvariant : boost::static_visitor<std::ostream&>
{
dumpvariant(std::ostream& os) : _os(os) {}
template <typename T> std::ostream& operator ()(const T& t) const
{ return _os << format(stream, t); }
private: std::ostream& _os;
};
std::ostream& operator<<(std::ostream& os, const FirstLevelBlock& block)
{
os << "variant[" << block.which() << ", ";
boost::apply_visitor(dumpvariant(os), block);
return os << "]";
}
std::ostream& operator<<(std::ostream& os, const std::vector<FirstLevelBlock>& blocks)
{ return os << format(-(stream % eol), blocks); }
std::ostream& operator<<(std::ostream& os, const Program& program)
{ return os << "BEGIN\n" << program.blocks << "\nEND"; }
}
namespace qi = boost::spirit::qi;
template <typename Rule, typename Attr = typename Rule::attr_type>
Attr test(const std::string& input, const Rule& rule)
{
typedef std::string::const_iterator It;
It f(input.begin()), l(input.end());
Attr result;
try
{
bool ok = qi::phrase_parse(f, l, rule, qi::space, result);
if (!ok)
std::cerr << " -- ERR: parse failed" << std::endl;
} catch(qi::expectation_failure<It>& e)
{
std::cerr << " -- ERR: expectation failure at '" << std::string(e.first, e.last) << "'" << std::endl;
}
if (f!=l)
std::cerr << " -- WARN: remaing input '" << std::string(f,l) << "'" << std::endl;
return result;
}
int main()
{
typedef std::string::const_iterator It;
static const qi::rule<It, FunctionDeclaration(), space_type> function = "void " > +~qi::char_("()") > "();";
static const qi::rule<It, GlobalVariableDeclaration(), space_type> global = "int " > +~qi::char_(";") > ";";
static const qi::rule<It, FirstLevelBlock(), space_type> block = function | global;
static const qi::rule<It, Program(), space_type> program = '{' >> *(function | global) >> '}';
FunctionDeclaration a = test("void test();", function);
std::cout << "FunctionDeclaration a : " << a << std::endl;
GlobalVariableDeclaration b = test("int abc;", global);
std::cout << "GlobalVariableDeclaration b : " << b << std::endl;
FirstLevelBlock c = test("void more();", block);
std::cout << "FirstLevelBlock c : " << c << std::endl;
/*FirstLevelBlock*/ c = test("int bcd;", block);
std::cout << "FirstLevelBlock c : " << c << std::endl;
Program d = test("{"
"void test();"
"int abc"
";"
"int xyz; void last();"
"}", program);
std::cout << "Program d : " << d << std::endl;
}
输出:
FunctionDeclaration a : test
GlobalVariableDeclaration b : abc
FirstLevelBlock c : variant[1, more]
FirstLevelBlock c : variant[1, bcd]
Program d : BEGIN
test
abc
xyz
last
END