我对Spirit Qi来说相对较新,并且正在尝试解析类似汇编语言的语言。
例如,我想解析:
Func Ident{
Mov name, "hello"
Push 5
Exit
}
到目前为止,这么好。我可以正确地解析它。 但是,错误处理程序有时会出现奇怪的错误位置。例如,以下错误代码:
Func Ident{
Mov name "hello" ; <-- comma is missing here
Push 5
Exit
}
以下是此解析所涉及的规则:
gr_function = lexeme["Func" >> !(alnum | '_')] // Ensure whole words
> gr_identifier
> "{"
> *( gr_instruction
|gr_label
|gr_vardecl
|gr_paramdecl)
> "}";
gr_instruction = gr_instruction_names
> gr_operands;
gr_operands = -(gr_operand % ',');
解析会发现错误,但在Mov之后抱怨丢失了“}”。 我有一种感觉,问题出在“Func”的定义中,但无法确定它。 我希望解析器抱怨丢失“,” 如果它抱怨重大错误就可以了,但它肯定会找出一个丢失的逗号作为罪魁祸首。
我尝试了以下变体:
gr_operands = -(gr_operand
>> *(','
> gr_operand)
);
和其他人一样,但有其他奇怪的错误。
有没有人知道如何说“好吧,你可能有一个没有操作数的指令,但是如果你找到一个,并且在下一个之前没有逗号,那么在逗号处失败”?
更新
到目前为止,感谢您的回答。 gr_operand定义如下:
gr_operand = ( gr_operand_intlit
|gr_operand_flplit
|gr_operand_strlit
|gr_operand_register
|gr_operand_identifier);
gr_operand_intlit = int_;
gr_operand_flplit = double_;
gr_operand_strlit = '"'
> strlitcont
> '"'
;
gr_operand_register = gr_register_names;
// TODO: Must also not accept the keywords from the statement grammar
gr_operand_identifier = !(gr_instruction_names | gr_register_names)
>> raw[
lexeme[(alpha | '_') >> *(alnum | '_')]
];
escchar.name("\\\"");
escchar = '\\' >> char_("\"");
strlitcont.name("String literal content");
strlitcont = *( escchar | ~char_('"') );
答案 0 :(得分:2)
您希望明确指出什么是操作数。我猜对了:
gr_operand = gr_identifier | gr_string;
gr_string = lexeme [ '"' >> *("\"\"" | ~char_("\"")) >> '"' ];
不相关,但您可能想要明确说明换行符开始一个新语句(使用blank_type作为队长):
>> "{"
>> -(
gr_instruction
| gr_label
| gr_vardecl
| gr_paramdecl
) % eol
> "}";
现在,解析器将能够抱怨它在解析时期望换行失败。
我在原帖中使用你的草图制作了一个完整的样本。
查看 live on Coliru :
#define BOOST_SPIRIT_DEBUG
#include <boost/spirit/include/qi.hpp>
namespace qi = boost::spirit::qi;
template <typename It, typename Skipper = qi::blank_type>
struct parser : qi::grammar<It, Skipper>
{
parser() : parser::base_type(start)
{
using namespace qi;
start = lexeme["Func" >> !(alnum | '_')] > function;
function = gr_identifier
>> "{"
>> -(
gr_instruction
//| gr_label
//| gr_vardecl
//| gr_paramdecl
) % eol
> "}";
gr_instruction_names.add("Mov", unused);
gr_instruction_names.add("Push", unused);
gr_instruction_names.add("Exit", unused);
gr_instruction = lexeme [ gr_instruction_names >> !(alnum|"_") ] > gr_operands;
gr_operands = -(gr_operand % ',');
gr_identifier = lexeme [ alpha >> *(alnum | '_') ];
gr_operand = gr_identifier | gr_string;
gr_string = lexeme [ '"' >> *("\"\"" | ~char_("\"")) >> '"' ];
BOOST_SPIRIT_DEBUG_NODES((start)(function)(gr_instruction)(gr_operands)(gr_identifier)(gr_operand)(gr_string));
}
private:
qi::symbols<char, qi::unused_type> gr_instruction_names;
qi::rule<It, Skipper> start, function, gr_instruction, gr_operands, gr_identifier, gr_operand, gr_string;
};
int main()
{
typedef boost::spirit::istream_iterator It;
std::cin.unsetf(std::ios::skipws);
It f(std::cin), l;
parser<It, qi::blank_type> p;
try
{
bool ok = qi::phrase_parse(f,l,p,qi::blank);
if (ok) std::cout << "parse success\n";
else std::cerr << "parse failed: '" << std::string(f,l) << "'\n";
if (f!=l) std::cerr << "trailing unparsed: '" << std::string(f,l) << "'\n";
return ok;
} catch(const qi::expectation_failure<It>& e)
{
std::string frag(e.first, e.last);
std::cerr << e.what() << "'" << frag << "'\n";
}
return false;
}