use core::fmt::Debug;
use core::marker::PhantomData;
use crate::ctor::Ctor;
use crate::ctor::Handler;
use crate::ctx::Context;
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 Opt<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 Opt<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 Opt<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("Opt")
.field("unit", &self.unit)
.field("cond", &self.cond)
.finish()
}
}
impl<C, U, T, I> Default for Opt<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 Opt<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 Opt<C, U, T, I>
where
I: Copy,
U: Neu<T> + Copy,
{
}
impl<C, U, T, I> Opt<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 Opt<C, U, C::Item, I>
where
U: Neu<C::Item>,
C: Context<'a>,
{
type Out<F> = Opt<C, U, C::Item, F>;
fn set_cond<F>(self, cond: F) -> Self::Out<F>
where
F: NeuCond<'a, C>,
{
Opt::new(self.unit, cond)
}
}
impl<'a, U, C, O, I, H> Ctor<C, O, H> for Opt<C, U, C::Item, I>
where
C: Match<'a>,
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 Opt<C, U, C::Item, I>
where
C: Context<'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 = Ok(Span::new(ctx.offset(), 0));
let remaining_len = ctx.len() - ctx.offset();
crate::debug_regex_beg!("Opt", ctx.offset());
if let Ok(mut iter) = ctx.peek()
&& 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!("Opt", ret)
}
}
pub struct Many0<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 Many0<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 Many0<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("Many0")
.field("unit", &self.unit)
.field("cond", &self.cond)
.finish()
}
}
impl<C, U, T, I> Default for Many0<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 Many0<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 Many0<C, U, T, I>
where
I: Copy,
U: Neu<T> + Copy,
{
}
impl<C, U, T, I> Many0<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 Many0<C, U, C::Item, I>
where
U: Neu<C::Item>,
C: Context<'a>,
{
type Out<F> = Many0<C, U, C::Item, F>;
fn set_cond<F>(self, cond: F) -> Self::Out<F>
where
F: NeuCond<'a, C>,
{
Many0::new(self.unit, cond)
}
}
impl<'a, U, C, O, I, H> Ctor<C, O, H> for Many0<C, U, C::Item, I>
where
C: Match<'a>,
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 Many0<C, U, C::Item, I>
where
C: Context<'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 = Ok(Span::new(ctx.offset(), 0));
let remaining_len = ctx.len() - ctx.offset();
crate::debug_regex_beg!("Many0", ctx.offset());
if let Ok(mut iter) = ctx.peek() {
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!("Many0", ret)
}
}