/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
* Use of this file is governed by the BSD 3-clause license that
* can be found in the LICENSE.txt file in the project root.
*/
#pragma once
#include "atn/LexerAction.h"
#include "atn/LexerActionType.h"
namespace antlr4 {
namespace atn {
///
/// Executes a custom lexer action by calling with the
/// rule and action indexes assigned to the custom action. The implementation of
/// a custom action is added to the generated code for the lexer in an override
/// of when the grammar is compiled.
///
/// This class may represent embedded actions created with the {...}
/// syntax in ANTLR 4, as well as actions created for lexer commands where the
/// command argument could not be evaluated when the grammar was compiled.
///
/// @author Sam Harwell
/// @since 4.2
///
class ANTLR4CPP_PUBLIC LexerCustomAction final : public LexerAction {
public:
static bool is(const LexerAction &lexerAction) { return lexerAction.getActionType() == LexerActionType::CUSTOM; }
static bool is(const LexerAction *lexerAction) { return lexerAction != nullptr && is(*lexerAction); }
///
/// Constructs a custom lexer action with the specified rule and action
/// indexes.
///
/// The rule index to use for calls to
/// .
/// The action index to use for calls to
/// .
LexerCustomAction(size_t ruleIndex, size_t actionIndex);
///
/// Gets the rule index to use for calls to .
///
/// The rule index for the custom action.
size_t getRuleIndex() const { return _ruleIndex; }
///
/// Gets the action index to use for calls to .
///
/// The action index for the custom action.
size_t getActionIndex() const { return _actionIndex; }
///
/// {@inheritDoc}
///
/// Custom actions are implemented by calling with the
/// appropriate rule and action indexes.
///
void execute(Lexer *lexer) const override;
bool equals(const LexerAction &other) const override;
std::string toString() const override;
protected:
size_t hashCodeImpl() const override;
private:
const size_t _ruleIndex;
const size_t _actionIndex;
};
} // namespace atn
} // namespace antlr4