私は現在、いくつかの作業を完了しようとしていますboost::spirit::qi::phrase_parse
が、自分でこれを理解することはできません.
言及する価値があります:私はブーストするのがまったく新しいので、ブースト::精神です。
フォームの入力を取得しています"{A [B C] -> F [D E], C ->E,B->Z}"
このタイプの入力を解析してstd::map<std::string, std::string>
. キーは、が発生するまで、すべての前と値を保持する必要がstd::string
あり"->"
ます。std::string
"->"
','
さらに、'['
and']'
は保存しないでください。
したがって、std::map
解析が成功した後の の内容は次のようになります。
{
("A", "F"),
("A", "D E"),
("B C", "F"),
("B C", "D E"),
("C", "E"),
("B", "Z")
}
私の最初のアプローチは、すべてのキー/値をstd::vector<std::string>
.
#include <boost/spirit/include/qi.hpp>
#include <iostream>
#include <string>
#include <vector>
int main()
{
using boost::spirit::qi::phrase_parse;
using boost::spirit::qi::char_;
using boost::spirit::qi::lexeme;
std::string input = "{A [B C] -> F [D E], C ->E,B->Z}";
std::string::const_iterator beg = input.begin(), end = input.end();
std::vector<std::string> sdvec;
bool r = phrase_parse( beg,
end,
'{' >> (+(+char_("a-zA-Z0-9") | lexeme[('[' >> +char_("a-zA-Z0-9 ") >> ']')]) >> '-' >> '>' >> +(+char_("a-zA-Z0-9") | lexeme[('[' >> +char_("a-zA-Z0-9 ") >> ']')])) % ',' >> '}',
boost::spirit::ascii::space,
sdvec
);
if(beg != end) {
std::cout << "Parsing failed!" << std::endl;
} else {
std::cout << "Parsing succeeded!" << std::endl;
}
for(int i=0; i<sdvec.size(); i++) {
std::cout << i << ": " << sdvec[i] << std::endl;
}
return 0;
}
これを実行すると、次std::string
のエントリとして見つかったそれぞれが得られstd::vector
ます:
Parsing 2 succeeded!
0: A
1: B C
2: F
3: D E
4: C
5: E
6: B
7: Z
std::map<std::string, std::string>
しかし、これらの値を解析して使用する方法がわかりませんboost::spirit::qi::phrase_parse
。単純に置き換えるとコンパイルエラーがスローされるためです。
編集:
実際、私が必要としているものを見つけました: http://boost-spirit.com/home/articles/qi-example/parsing-a-list-of-key-value-pairs-using-spirit-qi/
私の問題に応じて、この記事のコードを採用しました。
#include <boost/spirit/include/qi.hpp>
#include <boost/fusion/include/std_pair.hpp>
#include <iostream>
#include <string>
#include <vector>
#include <map>
namespace qi = boost::spirit::qi;
template <typename Iterator>
struct keys_and_values
: qi::grammar<Iterator, std::map<std::string, std::string>()>
{
keys_and_values()
: keys_and_values::base_type(query)
{
query = '{' >> *qi::lit(' ') >> pair >> *(qi::lit(',') >> *qi::lit(' ') >> pair) >> *qi::lit(' ') >> '}';
pair = key >> -(*qi::lit(' ') >> "->" >> *qi::lit(' ') >> value);
key = +qi::char_("a-zA-Z0-9") | qi::lexeme[('[' >> +qi::char_("a-zA-Z0-9 ") >> ']')];
value = +qi::char_("a-zA-Z0-9") | qi::lexeme[('[' >> +qi::char_("a-zA-Z0-9 ") >> ']')];
}
qi::rule<Iterator, std::map<std::string, std::string>()> query;
qi::rule<Iterator, std::pair<std::string, std::string>()> pair;
qi::rule<Iterator, std::string()> key, value;
};
int main()
{
std::string input = "{AB -> CD, E -> F, G -> HI, [J K L] -> [M N O] }";
std::string::iterator begin = input.begin();
std::string::iterator end = input.end();
keys_and_values<std::string::iterator> p; // create instance of parser
std::map<std::string, std::string> m; // map to receive results
bool result = qi::phrase_parse(begin, end, p, boost::spirit::ascii::space, m); // returns true if successful
if(begin != end) {
std::cout << "Parsing failed!" << std::endl;
} else {
std::cout << "Parsing succeeded!" << std::endl;
}
std::cout << m["AB"] << "\t" << m["E"] << "\t" << m["G"] << "\t" << m["J K L"] << std::endl;
return 0;
}
この結果は多かれ少なかれ私が必要とするものです:
Parsing succeeded!
CD F HI M N O
解決する私の最後の問題は、のようなケースですA [B C] -> F [D E]
。
それらを 4 つの個別のキーと値のペアとして("A", "F"), ("A", "D E"), ("B C", "F"), ("B C", "D E")
myに取得する方法はありstd::map<std::string, std::string> m
ますか?
それとも、それぞれがすべてのキー/値を保持するstd::map<std::vector<std::string>, std::vector<std::string> >
場所に解析する方が簡単ですか?std::vector<std::string>
例えば:
in: "{A [B C] -> F [D E], C ->E,B->Z}"
out: { ({"A", "B C"}, {"F", "D E"}), ({"C"}, {"E"}), ({"B"}, {"Z"}) }
助けてくれてありがとう!