use std::hash::Hash;
use crate::lexer::Lexer;
pub(crate) const LEXER_ACTION_TYPE_CHANNEL: i32 = 0;
pub(crate) const LEXER_ACTION_TYPE_CUSTOM: i32 = 1;
pub(crate) const LEXER_ACTION_TYPE_MODE: i32 = 2;
pub(crate) const LEXER_ACTION_TYPE_MORE: i32 = 3;
pub(crate) const LEXER_ACTION_TYPE_POP_MODE: i32 = 4;
pub(crate) const LEXER_ACTION_TYPE_PUSH_MODE: i32 = 5;
pub(crate) const LEXER_ACTION_TYPE_SKIP: i32 = 6;
pub(crate) const LEXER_ACTION_TYPE_TYPE: i32 = 7;
#[derive(Clone, Eq, PartialEq, Debug, Hash)]
pub(crate) enum LexerAction {
LexerChannelAction(i32),
LexerCustomAction {
rule_index: i32,
action_index: i32,
},
LexerModeAction(i32),
LexerMoreAction,
LexerPopModeAction,
LexerPushModeAction(i32),
LexerSkipAction,
LexerTypeAction(i32),
LexerIndexedCustomAction {
offset: isize,
action: Box<LexerAction>,
},
}
impl LexerAction {
pub fn is_position_dependent(&self) -> bool {
match self {
LexerAction::LexerCustomAction { .. }
| LexerAction::LexerIndexedCustomAction { .. } => true,
_ => false,
}
}
pub(crate) fn execute<'input, T: Lexer<'input>>(&self, lexer: &mut T) {
match self {
&LexerAction::LexerChannelAction(channel) => lexer.set_channel(channel),
&LexerAction::LexerCustomAction {
rule_index,
action_index,
} => {
lexer.action(None, rule_index, action_index);
}
&LexerAction::LexerModeAction(mode) => lexer.set_mode(mode as usize),
&LexerAction::LexerMoreAction => lexer.more(),
&LexerAction::LexerPopModeAction => {
lexer.pop_mode();
}
&LexerAction::LexerPushModeAction(mode) => lexer.push_mode(mode as usize),
&LexerAction::LexerSkipAction => lexer.skip(),
&LexerAction::LexerTypeAction(ty) => lexer.set_type(ty),
LexerAction::LexerIndexedCustomAction { action, .. } => action.execute(lexer),
}
}
}