#[cfg(feature = "compile-with-external-structures")]
use crate::containers::ExternalPtr;
#[cfg(feature = "compile-with-external-structures")]
type Ptr<T> = ExternalPtr<T>;
#[cfg(not(feature = "compile-with-external-structures"))]
type Ptr<T> = Box<T>;
#[cfg(feature = "compile-with-external-structures")]
use crate::containers::ExternalSharedByteList;
#[cfg(feature = "compile-with-external-structures")]
type SharedByteList = ExternalSharedByteList;
#[cfg(not(feature = "compile-with-external-structures"))]
type SharedByteList<'a> = &'a [u8];
use crate::Token;
#[derive(Debug)]
#[repr(C)]
pub enum RewriteAction {
Drop,
Keep,
}
#[derive(Debug)]
#[repr(C)]
pub enum LexStateAction {
Set(i32),
Keep,
}
#[derive(Debug)]
#[repr(C)]
pub struct TokenRewriterResult {
pub rewritten_token: Ptr<Token>,
pub token_action: RewriteAction,
pub lex_state_action: LexStateAction,
}
pub type TokenRewriterFn = dyn Fn(Ptr<Token>, SharedByteList) -> TokenRewriterResult;
pub struct TokenRewriter {
f: Option<Box<TokenRewriterFn>>,
}
impl TokenRewriter {
pub fn new(f: Box<TokenRewriterFn>) -> Self {
Self { f: Some(f) }
}
pub fn none() -> Self {
Self { f: None }
}
pub fn as_option(&self) -> Option<&TokenRewriterFn> {
if let Some(f) = &self.f {
Some(&**f)
} else {
None
}
}
}
impl std::fmt::Debug for TokenRewriter {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("TokenRewriter")
.field("f", &self.as_option().map(|_| "function"))
.finish()
}
}