Boost spirit x3:複合属性のコンパイル時エラー(列挙型クラス)
私は最近、ブーストスピリットx3を使用して可能な限り単純なパーサーを作成していました。これには、識別子と1文字の演算子の2つのルールが含まれています。当然、演算子タイプを生成するシンボルテーブルを使用して演算子を実装しましたenum class
。識別子はstd::string
sとして解析されます。ただし、識別子と演算子を1つのパーサーに結合すると、コードはコンパイルを拒否します(質問の最後にあるコード部分を参照してください)。
演算子タイプの列挙型を整数に変更すると、すべてが正常に機能することに注意してください。演算子と識別子は、分離されている場合にも適切に解析されます。
テンプレートのエラーメッセージは添付するには非常に大きく、わかりにくいですが、の構築/移動セマンティクスと関係があると思われstd::variant<std::string, OperType>
ます。ただし、enum class
プレーンと大幅に異なるべきではありませんint
。enum class
デフォルトのコンストラクターと関係がありますか?これをどのように回避できますか?
これがコッドピースです
#include <variant>
#include <string>
#include <boost/spirit/home/x3.hpp>
namespace x3 = boost::spirit::x3;
auto addCharacter = [](auto &context) {
x3::_val(context).push_back(x3::_attr(context));
};
x3::rule<class IdentifierTag, std::string> identifier{"identifier"};
const auto identifier_def = x3::lexeme[x3::char_("a-zA-Z")[addCharacter] >> *(x3::char_("a-zA-Z0-9")[addCharacter])];
BOOST_SPIRIT_DEFINE(identifier);
enum class OperType
{
plus,
minus
};
struct Opers_ : x3::symbols<OperType>
{
Opers_()
{
add("+", OperType::plus)("-", OperType::minus);
}
} opers_;
x3::rule<class OperTypeTag, OperType> oper{"operator"};
const auto oper_def = x3::lexeme[opers_];
BOOST_SPIRIT_DEFINE(oper);
int main()
{
std::string input{"iden1 + - iden2"};
std::vector<std::variant<std::string, OperType>> tokens;
auto start = input.cbegin();
auto result = x3::phrase_parse(start, input.cend(), (+(identifier | oper)), x3::space, tokens);
return 0;
}
複合パーサーを作成する際の落とし穴はありますか?何が足りないのですか?御時間ありがとうございます。
回答
std::variant
属性の互換性のためにまだサポートされていません。
に変更boost::variant
するとコンパイルされます:Compiler Explorer
または、std :: variantが必要な場合に実際に機能させる方法は次のとおりです。BoostSpiritパーサーをboost :: variantからstd :: variantに移行する
#include <boost/spirit/home/x3.hpp>
#include <variant>
#include <fmt/ranges.h>
#include <fmt/ostream.h>
namespace x3 = boost::spirit::x3;
auto addCharacter = [](auto& context) {
x3::_val(context).push_back(x3::_attr(context));
};
x3::rule<class IdentifierTag, std::string> identifier{"identifier"};
const auto identifier_def =
x3::lexeme[x3::char_("a-zA-Z")[addCharacter] >> *(x3::char_("a-zA-Z0-9")[addCharacter])];
BOOST_SPIRIT_DEFINE(identifier)
enum class OperType
{
plus,
minus
};
static inline std::ostream& operator<<(std::ostream& os, OperType ot) {
switch(ot) {
case OperType::plus: return os << "plus";
case OperType::minus: return os << "minus";
}
return os << "?";
}
struct Opers_ : x3::symbols<OperType>
{
Opers_()
{
add("+", OperType::plus)
("-", OperType::minus);
}
} opers_;
x3::rule<class OperTypeTag, OperType> oper{"operator"};
const auto oper_def = x3::lexeme[opers_];
BOOST_SPIRIT_DEFINE(oper)
int main() {
std::string const input{"iden1 + - iden2"};
std::vector<boost::variant<std::string, OperType>> tokens;
auto f = input.begin(), l = input.end();
auto result = x3::phrase_parse(
f, l,
+(identifier | oper),
x3::space,
tokens);
if (result) {
fmt::print("Parsed: {}\n", tokens);
} else {
fmt::print("Parse failed\n");
}
if (f!=l) {
fmt::print("Remaining: '{}'\n", std::string(f,l));
}
}
プリント
Parsed: {iden1, plus, minus, iden2}