あなたは二レクサーの状態を作成し、それを呼び出したことがありません。
簡素化し、利益:
this->self += identifier
| white_space [ lex::_pass = lex::pass_flags::pass_ignore ];
:
ほとんどの場合は、所望の効果を持っている最も簡単な方法は、スキップ可能なトークンにpass_ignore
フラグで単一状態字句使用することであろう
セマンティックアクションを可能にするには、これにはactor_lexer
が必要であることに注意してください。
typedef lex::lexertl::actor_lexer<token_type> lexer_type;
全サンプル:
#include <boost/spirit/include/lex_lexertl.hpp>
#include <boost/spirit/include/lex_lexertl.hpp>
namespace lex = boost::spirit::lex;
template <typename Lexer>
struct lexer_identifier : lex::lexer<Lexer>
{
lexer_identifier()
: identifier("[a-zA-Z_][a-zA-Z0-9_]*")
, white_space("[ \\t\\n]+")
{
using boost::spirit::lex::_start;
using boost::spirit::lex::_end;
this->self += identifier
| white_space [ lex::_pass = lex::pass_flags::pass_ignore ];
}
lex::token_def<> identifier;
lex::token_def<> white_space;
std::string identifier_name;
};
int main(int argc, const char *argv[])
{
typedef lex::lexertl::token<char const*,lex::omit, boost::mpl::false_> token_type;
typedef lex::lexertl::actor_lexer<token_type> lexer_type;
typedef lexer_identifier<lexer_type>::iterator_type iterator_type;
lexer_identifier<lexer_type> my_lexer;
std::string test("adedvied das934adf dfklj_03245");
char const* first = test.c_str();
char const* last = &first[test.size()];
lexer_type::iterator_type iter = my_lexer.begin(first, last);
lexer_type::iterator_type end = my_lexer.end();
while (iter != end && token_is_valid(*iter))
{
++iter;
}
bool r = (iter == end);
std::cout << std::boolalpha << r << "\n";
}
プリント
true
"WS" スキッパー状態として
ことも可能であるあなたがのために二パーサ状態を使用するサンプルに出くわしましたスキッパー(lex::tokenize_and_phrase_parse
)。そのためのサンプルを作成するのに1〜10分かかります。
更新は10分(waaaah)よりも少しかかりました:)ここレクサーの状態がどのように相互作用するかを示す、比較試験だし、どのように第二のパーサーの状態を呼び出すための構文解析スピリットスキッパーを使用するには:
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/lex_lexertl.hpp>
namespace lex = boost::spirit::lex;
namespace qi = boost::spirit::qi;
template <typename Lexer>
struct lexer_identifier : lex::lexer<Lexer>
{
lexer_identifier()
: identifier("[a-zA-Z_][a-zA-Z0-9_]*")
, white_space("[ \\t\\n]+")
{
this->self = identifier;
this->self("WS") = white_space;
}
lex::token_def<> identifier;
lex::token_def<lex::omit> white_space;
};
int main()
{
typedef lex::lexertl::token<char const*, lex::omit, boost::mpl::true_> token_type;
typedef lex::lexertl::lexer<token_type> lexer_type;
typedef lexer_identifier<lexer_type>::iterator_type iterator_type;
lexer_identifier<lexer_type> my_lexer;
std::string test("adedvied das934adf dfklj_03245");
{
char const* first = test.c_str();
char const* last = &first[test.size()];
// cannot lex in just default WS state:
bool ok = lex::tokenize(first, last, my_lexer, "WS");
std::cout << "Starting state WS:\t" << std::boolalpha << ok << "\n";
}
{
char const* first = test.c_str();
char const* last = &first[test.size()];
// cannot lex in just default state either:
bool ok = lex::tokenize(first, last, my_lexer, "INITIAL");
std::cout << "Starting state INITIAL:\t" << std::boolalpha << ok << "\n";
}
{
char const* first = test.c_str();
char const* last = &first[test.size()];
bool ok = lex::tokenize_and_phrase_parse(first, last, my_lexer, *my_lexer.self, qi::in_state("WS")[my_lexer.self]);
ok = ok && (first == last); // verify full input consumed
std::cout << std::boolalpha << ok << "\n";
}
}
出力
Starting state WS: false
Starting state INITIAL: false
true
は**スキッパーstate'として ' "WS" **下のデモと "WS" 状態のアプローチを追加されます。乾杯。 – sehe
間違ったtoken_type宣言をコピーしました。 ['HasState']に' mpl :: true_'が必要です(http://www.boost.org/doc/libs/1_49_0/libs/spirit/doc/html/spirit/lex/abstracts/lexer_primitives/lexer_token_values.html)。 #spirit.lex.abstracts.lexer_primitives.lexer_token_values.the_anatomy_of_a_token)、ステートフルなレクサーを扱う場合 - 明らかに! ***固定*** – sehe
まず、あなたの広範な例に感謝します。私はまだいくつかの質問があります:lex :: what is do do? tokenize_and_parse呼び出しに関して:my_lexer.selfとqi :: in_state( "WS")[my_lexer.self]は何ですか? –