gpt4 book ai didi

c++ - 将文件路径字符串传递给 Boost.Spirit 中的语义操作

转载 作者:太空宇宙 更新时间:2023-11-04 12:20:52 25 4
gpt4 key购买 nike

我是 Boost.Spirit 的新手,我有一个与迷你解释器相关的问题,我正尝试使用该库来实现。作为解析我的语言的子任务,我需要从以下形式的输入中提取文件路径:

"path = \"/path/to/file\""

并将其作为字符串(不带引号)传递给语义操作。

我写了一些代码可以解析这种类型的输入,但传递解析后的字符串并没有按预期工作,这可能是因为我缺乏使用 Boost.Spirit 的经验。

有人能帮忙吗?

实际上,我的语法更复杂,但我将问题隔离为:

#include <string>
#include "boost/spirit/include/qi.hpp"
#include "boost/spirit/include/phoenix_core.hpp"
#include "boost/spirit/include/phoenix_operator.hpp"
namespace qi = boost::spirit::qi;
namespace ascii = boost::spirit::ascii;
namespace phoenix = boost::phoenix;

namespace parser {
// Semantic action (note: in reality, this would use file_path_string in non-trivial way)
void display_path(std::string file_path_string) {
std::cout << "Detected file-path: " << file_path_string << std::endl;
}

// Grammar
template <typename Iterator>
struct path_command : qi::grammar<Iterator, ascii::space_type> {
path_command() : path_command::base_type(path_specifier) {
using qi::string;
using qi::lit;

path = +(qi::char_("/") >> *qi::char_("a-zA-Z_0-9"));
quoted_path_string = lit('"') >> (path- lit('"')) >> lit('"');
path_specifier = lit("path") >> qi::lit("=")
>> quoted_path_string[&display_path];
}

qi::rule<Iterator, ascii::space_type> path_specifier;
qi::rule<Iterator, std::string()> path, quoted_path_string;
};
}

int main() {
using ascii::space;
typedef std::string::const_iterator iterator_type;
typedef parser::path_command<iterator_type> path_command;

bool parse_res;
path_command command_instance; // Instance of our Grammar
iterator_type iter, end;

std::string test_command1 = "path = \"/file1\"";
std::string test_command2 = "path = \"/dirname1/dirname2/file2\"";

// Testing example command 1
iter = test_command1.begin();
end = test_command1.end();
parse_res = phrase_parse(iter, end, command_instance, space);
std::cout << "Parse result for test 1: " << parse_res << std::endl;

// Testing example command 2
iter = test_command2.begin();
end = test_command2.end();
parse_res = phrase_parse(iter, end, command_instance, space);
std::cout << "Parse result for test 2: " << parse_res << std::endl;

return EXIT_SUCCESS;
}

输出是:

Detected file-path: /
Parse result for test 1: 1
Detected file-path: ///
Parse result for test 2: 1

但我想获得:

Detected file-path: /file1
Parse result for test 1: 1
Detected file-path: /dirname1/dirname2/file2
Parse result for test 2: 1

最佳答案

您的解析器几乎一切正常。问题是 Spirit 中的一个错误(直到 Boost V1.46)阻止在这种情况下正确处理属性。这最近已在 SVN 中修复,并将在 Boost V1.47 中可用(我尝试使用此版本运行您未更改的程序,一切正常)。

目前,您可以使用 raw[] 指令(见下文)解决此问题。

我在上面说“几乎”,因为你可以 a) 简化你拥有的东西,b) 你应该使用 no_skip[] 来避免在 qutoes 之间调用跳过解析器。

path = raw[+(qi::char_("/") >> *qi::char_("a-zA-Z_0-9"))];
quoted_path_string = no_skip['"' >> path >> '"'];
path_specifier = lit("path") >> qi::lit("=")
>> quoted_path_string[&display_path];

您可以省略 - lit('"') 部分,因为您的 path 解析器首先不识别引号。

关于c++ - 将文件路径字符串传递给 Boost.Spirit 中的语义操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5167575/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com