use core::fmt::Debug;
use core::marker::PhantomData;
use crate::ctor::Ctor;
use crate::ctor::Handler;
use crate::ctx::Match;
use crate::ctx::new_span_inc;
use crate::err::Error;
use crate::neu::EmptyCond;
use crate::neu::calc_length;
use crate::regex::Regex;
use crate::span::Span;
use super::Condition;
use super::Neu;
use super::NeuCond;
pub struct Once<C, U, T, I = EmptyCond>
where
U: Neu<T>,
{
unit: U,
cond: I,
marker: PhantomData<(C, T)>,
}
impl<C, U, T, I> core::ops::Not for Once<C, U, T, I>
where
U: Neu<T>,
{
type Output = crate::regex::Assert<Self>;
fn not(self) -> Self::Output {
crate::regex::not(self)
}
}
impl<C, U, T, I> Debug for Once<C, U, T, I>
where
I: Debug,
U: Neu<T> + Debug,
{
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("Once")
.field("unit", &self.unit)
.field("cond", &self.cond)
.finish()
}
}
impl<C, U, T, I> Default for Once<C, U, T, I>
where
I: Default,
U: Neu<T> + Default,
{
fn default() -> Self {
Self {
unit: Default::default(),
cond: Default::default(),
marker: Default::default(),
}
}
}
impl<C, U, T, I> Clone for Once<C, U, T, I>
where
I: Clone,
U: Neu<T> + Clone,
{
fn clone(&self) -> Self {
Self {
unit: self.unit.clone(),
cond: self.cond.clone(),
marker: self.marker,
}
}
}
impl<C, U, T, I> Copy for Once<C, U, T, I>
where
I: Copy,
U: Neu<T> + Copy,
{
}
impl<C, U, T, I> Once<C, U, T, I>
where
U: Neu<T>,
{
pub const fn new(unit: U, cond: I) -> Self {
Self {
unit,
cond,
marker: PhantomData,
}
}
pub const fn unit(&self) -> &U {
&self.unit
}
pub const fn unit_mut(&mut self) -> &mut U {
&mut self.unit
}
pub fn set_unit(&mut self, unit: U) -> &mut Self {
self.unit = unit;
self
}
}
impl<'a, C, U, I> Condition<'a, C> for Once<C, U, C::Item, I>
where
U: Neu<C::Item>,
C: Match<'a>,
{
type Out<F> = Once<C, U, C::Item, F>;
fn set_cond<F>(self, cond: F) -> Self::Out<F>
where
F: NeuCond<'a, C>,
{
Once::new(self.unit, cond)
}
}
impl<'a, U, C, O, I, H> Ctor<C, O, H> for Once<C, U, C::Item, I>
where
U: Neu<C::Item>,
I: NeuCond<'a, C>,
C: Match<'a>,
H: Handler<C, Out = O>,
{
#[inline(always)]
fn construct(&self, ctx: &mut C, func: &mut H) -> Result<O, Error> {
let ret = ctx.try_mat(self);
func.invoke(ctx, &ret?).map_err(Into::into)
}
}
impl<'a, U, C, I> Regex<C> for Once<C, U, C::Item, I>
where
C: Match<'a>,
U: Neu<C::Item>,
I: NeuCond<'a, C>,
{
#[inline(always)]
fn try_parse(&self, ctx: &mut C) -> Result<Span, crate::err::Error> {
let mut ret = Err(Error::Once);
let mut iter = ctx.peek()?;
let remaining_len = ctx.len() - ctx.offset();
crate::debug_regex_beg!("Once", ctx.offset());
if let Some((offset, item)) = iter.next()
&& self.unit.is_match(&item)
&& self.cond.check(ctx, &(offset, item))?
{
let len = calc_length(Some(offset), iter.next().map(|v| v.0), remaining_len);
ret = Ok(new_span_inc(ctx, len));
}
crate::debug_regex_reval!("Once", ret)
}
}
pub struct Many1<C, U, T, I = EmptyCond>
where
U: Neu<T>,
{
unit: U,
cond: I,
marker: PhantomData<(C, T)>,
}
impl<C, U, T, I> core::ops::Not for Many1<C, U, T, I>
where
U: Neu<T>,
{
type Output = crate::regex::Assert<Self>;
fn not(self) -> Self::Output {
crate::regex::not(self)
}
}
impl<C, U, T, I> Debug for Many1<C, U, T, I>
where
I: Debug,
U: Neu<T> + Debug,
{
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("Many1")
.field("unit", &self.unit)
.field("cond", &self.cond)
.finish()
}
}
impl<C, U, T, I> Default for Many1<C, U, T, I>
where
I: Default,
U: Neu<T> + Default,
{
fn default() -> Self {
Self {
unit: Default::default(),
cond: Default::default(),
marker: Default::default(),
}
}
}
impl<C, U, T, I> Clone for Many1<C, U, T, I>
where
I: Clone,
U: Neu<T> + Clone,
{
fn clone(&self) -> Self {
Self {
unit: self.unit.clone(),
cond: self.cond.clone(),
marker: self.marker,
}
}
}
impl<C, U, T, I> Copy for Many1<C, U, T, I>
where
I: Copy,
U: Neu<T> + Copy,
{
}
impl<C, U, T, I> Many1<C, U, T, I>
where
U: Neu<T>,
{
pub const fn new(unit: U, cond: I) -> Self {
Self {
unit,
cond,
marker: PhantomData,
}
}
pub const fn unit(&self) -> &U {
&self.unit
}
pub const fn unit_mut(&mut self) -> &mut U {
&mut self.unit
}
pub fn set_unit(&mut self, unit: U) -> &mut Self {
self.unit = unit;
self
}
}
impl<'a, C, U, I> Condition<'a, C> for Many1<C, U, C::Item, I>
where
U: Neu<C::Item>,
C: Match<'a>,
{
type Out<F> = Many1<C, U, C::Item, F>;
fn set_cond<F>(self, cond: F) -> Self::Out<F>
where
F: NeuCond<'a, C>,
{
Many1::new(self.unit, cond)
}
}
impl<'a, U, C, O, I, H> Ctor<C, O, H> for Many1<C, U, C::Item, I>
where
U: Neu<C::Item>,
I: NeuCond<'a, C>,
C: Match<'a>,
H: Handler<C, Out = O>,
{
#[inline(always)]
fn construct(&self, ctx: &mut C, func: &mut H) -> Result<O, Error> {
let ret = ctx.try_mat(self);
func.invoke(ctx, &ret?).map_err(Into::into)
}
}
impl<'a, U, C, I> Regex<C> for Many1<C, U, C::Item, I>
where
C: Match<'a>,
U: Neu<C::Item>,
I: NeuCond<'a, C>,
{
#[inline(always)]
fn try_parse(&self, ctx: &mut C) -> Result<Span, crate::err::Error> {
let mut beg = None;
let mut end = None;
let mut ret = Err(Error::Many1);
let mut iter = ctx.peek()?;
let remaining_len = ctx.len() - ctx.offset();
crate::debug_regex_beg!("Many1", ctx.offset());
for pair in iter.by_ref() {
if !self.unit.is_match(&pair.1) || !self.cond.check(ctx, &pair)? {
end = Some(pair);
break;
}
if beg.is_none() {
beg = Some(pair.0);
}
}
if let Some(start) = beg {
let len = calc_length(Some(start), end.map(|v| v.0), remaining_len);
ret = Ok(new_span_inc(ctx, len));
}
crate::debug_regex_reval!("Many1", ret)
}
}