Struct icu_pattern::Parser
source · pub struct Parser<'p, P> { /* private fields */ }
Expand description
Placeholder pattern parser.
The parser allows for handling flexible range of generic patterns with placeholders.
The Parser
is generic over any placeholder which implements FromStr
allowing the consumer to parse placeholder patterns such as “{0}, {1}”,
“{date}, {time}” or any other. A placeholder must be enclosed in {
and }
characters in the input pattern string.
At the moment the parser is written as a custom fallible iterator.
✨ Enabled with the alloc
Cargo feature.
§Examples
use icu_pattern::{ParsedPatternItem, Parser, ParserOptions};
let input = "{0}, {1}";
let mut parser = Parser::new(input, ParserOptions::default());
let mut result = vec![];
while let Some(element) =
parser.try_next().expect("Failed to advance iterator")
{
result.push(element);
}
assert_eq!(
result,
&[
ParsedPatternItem::Placeholder(0),
ParsedPatternItem::Literal {
content: ", ".into(),
quoted: false
},
ParsedPatternItem::Placeholder(1),
]
);
§Named placeholders
The parser is also capable of parsing different placeholder types such as strings.
§Examples
use icu_pattern::{ParsedPatternItem, Parser, ParserOptions};
let input = "{start}, {end}";
let mut parser = Parser::new(input, ParserOptions::default());
let mut result = vec![];
while let Some(element) =
parser.try_next().expect("Failed to advance iterator")
{
result.push(element);
}
assert_eq!(
result,
&[
ParsedPatternItem::Placeholder("start".to_owned()),
ParsedPatternItem::Literal {
content: ", ".into(),
quoted: false
},
ParsedPatternItem::Placeholder("end".to_owned()),
]
);
§Type parameters
P
: The type of the placeholder used as a key for thePlaceholderValueProvider
.
§Lifetimes
p
: The life time of an input string slice to be parsed.
§Design Decisions
The parser is written in an intentionally generic way to enable use against wide range of potential placeholder pattern models and use cases.
Serveral design decisions have been made that the reader should be aware of when using the API.
§Zero copy
The parser is intended for runtime use and is optimized for performance and low memory overhad.
Zero copy parsing is a model which allows the parser to produce tokens that are de-facto slices of the input without ever having to modify the input or copy from it.
In case of ICU patterns that decision brings a trade-off around handling of quoted literals. A parser that copies bytes from the input when generating the output can take a pattern literal that contains a quoted portion and concatenace the parts, effectively generating a single literal out of a series of syntactical literal quoted and unquoted nodes. A zero copy parser sacrifices that convenience for marginal performance gains.
The rationale for the decision is that many placeholder patterns do not contain ASCII letters and therefore can benefit from this design decision. Secondly, even in scenarios where ASCII letters, or other quoted literals, are used, the zero-copy design still maintains high performance, only increasing the number of tokens returned by the parser, but without increase to allocations.
§Examples
use icu_pattern::{ParsedPatternItem, Parser, ParserOptions};
let input = "{0} 'and' {1}";
let mut parser = Parser::new(input, ParserOptions::default());
let mut result = vec![];
while let Some(element) =
parser.try_next().expect("Failed to advance iterator")
{
result.push(element);
}
assert_eq!(
result,
&[
ParsedPatternItem::Placeholder(0),
ParsedPatternItem::Literal {
content: " ".into(),
quoted: false
},
ParsedPatternItem::Literal {
content: "and".into(),
quoted: true
},
ParsedPatternItem::Literal {
content: " ".into(),
quoted: false
},
ParsedPatternItem::Placeholder(1),
]
);
§Fallible Iterator
Rust providers a strong support for iterators and iterator combinators, which fits very well into the design of this parser/interpolator model.
Unfortunately, Rust iterators at the moment are infallible, while parsers are inhereantely
fallible. As such, the decision has been made to design the API in line with what
we hope will become a trait signature of a fallible iterator in the future, rather
than implementing a reversed infallible iterator (where the Item
would be
Option<Result<Item>>
).
That decision impacts the ergonomics of operating on the parser, on one hand making the fallible iteration more ergonomic, at a trade-off of losing access to the wide range of Rust iterator traits.
§Generic Placeholder
To handle generic placeholder design, the only constrain necessary in the parser
is that a placeholder must be parsed from a string slice.
At the moment of writing, Rust is preparing to deprecate FromStr
in favor of
TryFrom<&str>
.
Among many benfits of such transition would be the auto-trait behavior of From
and
a TryFrom<&str>
for &str
allowing for placeholders to be &str
themselves.
Unfortunately, at the moment TryFrom<&str>
for usize
is not implemented, which would
impact the core use case of placeholder patterns.
In result, the decision has been made to use FromStr
for the time being, until
TryFrom<&str>
gets implemented on all types that support FromStr
.
Implementations§
source§impl<'p, P> Parser<'p, P>
impl<'p, P> Parser<'p, P>
sourcepub fn new(input: &'p str, options: ParserOptions) -> Self
pub fn new(input: &'p str, options: ParserOptions) -> Self
Creates a new Parser
.
The allow_raw_letters
controls whether the parser will support
ASCII letters without quotes.
§Examples
use icu_pattern::{Parser, ParserOptions};
let mut parser = Parser::<usize>::new("{0}, {1}", ParserOptions::default());
sourcepub fn try_next(
&mut self
) -> Result<Option<ParsedPatternItem<'p, P>>, ParserError<<P as FromStr>::Err>>
pub fn try_next( &mut self ) -> Result<Option<ParsedPatternItem<'p, P>>, ParserError<<P as FromStr>::Err>>
An iterator method that advances the iterator and returns the result of an attempt to parse the next token.
§Examples
use icu_pattern::{ParsedPatternItem, Parser, ParserOptions};
let mut parser = Parser::<usize>::new("{0}, {1}", ParserOptions::default());
// A call to try_next() returns the next value…
assert_eq!(
Ok(Some(ParsedPatternItem::Placeholder(0))),
parser.try_next()
);
assert_eq!(
Ok(Some(ParsedPatternItem::Literal {
content: ", ".into(),
quoted: false
})),
parser.try_next()
);
assert_eq!(
Ok(Some(ParsedPatternItem::Placeholder(1))),
parser.try_next()
);
// … and then `None` once it's over.
assert_eq!(Ok(None), parser.try_next());
sourcepub fn try_collect_into_vec(
self
) -> Result<Vec<ParsedPatternItem<'p, P>>, ParserError<<P as FromStr>::Err>>
pub fn try_collect_into_vec( self ) -> Result<Vec<ParsedPatternItem<'p, P>>, ParserError<<P as FromStr>::Err>>
Mutates this parser and collects all ParsedPatternItem
s into a vector.
Trait Implementations§
source§impl<'a, K> Iterator for Parser<'a, K>
impl<'a, K> Iterator for Parser<'a, K>
§type Item = Result<PatternItemCow<'a, K>, PatternError>
type Item = Result<PatternItemCow<'a, K>, PatternError>
source§fn next(&mut self) -> Option<Self::Item>
fn next(&mut self) -> Option<Self::Item>
source§fn next_chunk<const N: usize>(
&mut self
) -> Result<[Self::Item; N], IntoIter<Self::Item, N>>where
Self: Sized,
fn next_chunk<const N: usize>(
&mut self
) -> Result<[Self::Item; N], IntoIter<Self::Item, N>>where
Self: Sized,
iter_next_chunk
)N
values. Read more1.0.0 · source§fn size_hint(&self) -> (usize, Option<usize>)
fn size_hint(&self) -> (usize, Option<usize>)
1.0.0 · source§fn count(self) -> usizewhere
Self: Sized,
fn count(self) -> usizewhere
Self: Sized,
1.0.0 · source§fn last(self) -> Option<Self::Item>where
Self: Sized,
fn last(self) -> Option<Self::Item>where
Self: Sized,
source§fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>>
fn advance_by(&mut self, n: usize) -> Result<(), NonZero<usize>>
iter_advance_by
)n
elements. Read more1.0.0 · source§fn nth(&mut self, n: usize) -> Option<Self::Item>
fn nth(&mut self, n: usize) -> Option<Self::Item>
n
th element of the iterator. Read more1.28.0 · source§fn step_by(self, step: usize) -> StepBy<Self>where
Self: Sized,
fn step_by(self, step: usize) -> StepBy<Self>where
Self: Sized,
1.0.0 · source§fn chain<U>(self, other: U) -> Chain<Self, <U as IntoIterator>::IntoIter>
fn chain<U>(self, other: U) -> Chain<Self, <U as IntoIterator>::IntoIter>
1.0.0 · source§fn zip<U>(self, other: U) -> Zip<Self, <U as IntoIterator>::IntoIter>where
Self: Sized,
U: IntoIterator,
fn zip<U>(self, other: U) -> Zip<Self, <U as IntoIterator>::IntoIter>where
Self: Sized,
U: IntoIterator,
source§fn intersperse_with<G>(self, separator: G) -> IntersperseWith<Self, G>
fn intersperse_with<G>(self, separator: G) -> IntersperseWith<Self, G>
iter_intersperse
)separator
between adjacent items of the original iterator. Read more1.0.0 · source§fn map<B, F>(self, f: F) -> Map<Self, F>
fn map<B, F>(self, f: F) -> Map<Self, F>
1.0.0 · source§fn filter<P>(self, predicate: P) -> Filter<Self, P>
fn filter<P>(self, predicate: P) -> Filter<Self, P>
1.0.0 · source§fn filter_map<B, F>(self, f: F) -> FilterMap<Self, F>
fn filter_map<B, F>(self, f: F) -> FilterMap<Self, F>
1.0.0 · source§fn enumerate(self) -> Enumerate<Self>where
Self: Sized,
fn enumerate(self) -> Enumerate<Self>where
Self: Sized,
1.0.0 · source§fn skip_while<P>(self, predicate: P) -> SkipWhile<Self, P>
fn skip_while<P>(self, predicate: P) -> SkipWhile<Self, P>
1.0.0 · source§fn take_while<P>(self, predicate: P) -> TakeWhile<Self, P>
fn take_while<P>(self, predicate: P) -> TakeWhile<Self, P>
1.57.0 · source§fn map_while<B, P>(self, predicate: P) -> MapWhile<Self, P>
fn map_while<B, P>(self, predicate: P) -> MapWhile<Self, P>
1.0.0 · source§fn skip(self, n: usize) -> Skip<Self>where
Self: Sized,
fn skip(self, n: usize) -> Skip<Self>where
Self: Sized,
n
elements. Read more1.0.0 · source§fn take(self, n: usize) -> Take<Self>where
Self: Sized,
fn take(self, n: usize) -> Take<Self>where
Self: Sized,
n
elements, or fewer
if the underlying iterator ends sooner. Read more1.0.0 · source§fn flat_map<U, F>(self, f: F) -> FlatMap<Self, U, F>
fn flat_map<U, F>(self, f: F) -> FlatMap<Self, U, F>
source§fn map_windows<F, R, const N: usize>(self, f: F) -> MapWindows<Self, F, N>
fn map_windows<F, R, const N: usize>(self, f: F) -> MapWindows<Self, F, N>
iter_map_windows
)f
for each contiguous window of size N
over
self
and returns an iterator over the outputs of f
. Like slice::windows()
,
the windows during mapping overlap as well. Read more1.0.0 · source§fn inspect<F>(self, f: F) -> Inspect<Self, F>
fn inspect<F>(self, f: F) -> Inspect<Self, F>
1.0.0 · source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
source§fn collect_into<E>(self, collection: &mut E) -> &mut E
fn collect_into<E>(self, collection: &mut E) -> &mut E
iter_collect_into
)1.0.0 · source§fn partition<B, F>(self, f: F) -> (B, B)
fn partition<B, F>(self, f: F) -> (B, B)
source§fn is_partitioned<P>(self, predicate: P) -> bool
fn is_partitioned<P>(self, predicate: P) -> bool
iter_is_partitioned
)true
precede all those that return false
. Read more1.27.0 · source§fn try_fold<B, F, R>(&mut self, init: B, f: F) -> R
fn try_fold<B, F, R>(&mut self, init: B, f: F) -> R
1.27.0 · source§fn try_for_each<F, R>(&mut self, f: F) -> R
fn try_for_each<F, R>(&mut self, f: F) -> R
1.0.0 · source§fn fold<B, F>(self, init: B, f: F) -> B
fn fold<B, F>(self, init: B, f: F) -> B
1.51.0 · source§fn reduce<F>(self, f: F) -> Option<Self::Item>
fn reduce<F>(self, f: F) -> Option<Self::Item>
source§fn try_reduce<F, R>(
&mut self,
f: F
) -> <<R as Try>::Residual as Residual<Option<<R as Try>::Output>>>::TryType
fn try_reduce<F, R>( &mut self, f: F ) -> <<R as Try>::Residual as Residual<Option<<R as Try>::Output>>>::TryType
iterator_try_reduce
)1.0.0 · source§fn all<F>(&mut self, f: F) -> bool
fn all<F>(&mut self, f: F) -> bool
1.0.0 · source§fn any<F>(&mut self, f: F) -> bool
fn any<F>(&mut self, f: F) -> bool
1.0.0 · source§fn find<P>(&mut self, predicate: P) -> Option<Self::Item>
fn find<P>(&mut self, predicate: P) -> Option<Self::Item>
1.30.0 · source§fn find_map<B, F>(&mut self, f: F) -> Option<B>
fn find_map<B, F>(&mut self, f: F) -> Option<B>
source§fn try_find<F, R>(
&mut self,
f: F
) -> <<R as Try>::Residual as Residual<Option<Self::Item>>>::TryType
fn try_find<F, R>( &mut self, f: F ) -> <<R as Try>::Residual as Residual<Option<Self::Item>>>::TryType
try_find
)1.0.0 · source§fn position<P>(&mut self, predicate: P) -> Option<usize>
fn position<P>(&mut self, predicate: P) -> Option<usize>
1.6.0 · source§fn max_by_key<B, F>(self, f: F) -> Option<Self::Item>
fn max_by_key<B, F>(self, f: F) -> Option<Self::Item>
1.15.0 · source§fn max_by<F>(self, compare: F) -> Option<Self::Item>
fn max_by<F>(self, compare: F) -> Option<Self::Item>
1.6.0 · source§fn min_by_key<B, F>(self, f: F) -> Option<Self::Item>
fn min_by_key<B, F>(self, f: F) -> Option<Self::Item>
1.15.0 · source§fn min_by<F>(self, compare: F) -> Option<Self::Item>
fn min_by<F>(self, compare: F) -> Option<Self::Item>
1.0.0 · source§fn unzip<A, B, FromA, FromB>(self) -> (FromA, FromB)
fn unzip<A, B, FromA, FromB>(self) -> (FromA, FromB)
1.36.0 · source§fn copied<'a, T>(self) -> Copied<Self>
fn copied<'a, T>(self) -> Copied<Self>
source§fn array_chunks<const N: usize>(self) -> ArrayChunks<Self, N>where
Self: Sized,
fn array_chunks<const N: usize>(self) -> ArrayChunks<Self, N>where
Self: Sized,
iter_array_chunks
)N
elements of the iterator at a time. Read more1.11.0 · source§fn product<P>(self) -> P
fn product<P>(self) -> P
source§fn cmp_by<I, F>(self, other: I, cmp: F) -> Ordering
fn cmp_by<I, F>(self, other: I, cmp: F) -> Ordering
iter_order_by
)Iterator
with those
of another with respect to the specified comparison function. Read more1.5.0 · source§fn partial_cmp<I>(self, other: I) -> Option<Ordering>
fn partial_cmp<I>(self, other: I) -> Option<Ordering>
PartialOrd
elements of
this Iterator
with those of another. The comparison works like short-circuit
evaluation, returning a result without comparing the remaining elements.
As soon as an order can be determined, the evaluation stops and a result is returned. Read moresource§fn partial_cmp_by<I, F>(self, other: I, partial_cmp: F) -> Option<Ordering>where
Self: Sized,
I: IntoIterator,
F: FnMut(Self::Item, <I as IntoIterator>::Item) -> Option<Ordering>,
fn partial_cmp_by<I, F>(self, other: I, partial_cmp: F) -> Option<Ordering>where
Self: Sized,
I: IntoIterator,
F: FnMut(Self::Item, <I as IntoIterator>::Item) -> Option<Ordering>,
iter_order_by
)Iterator
with those
of another with respect to the specified comparison function. Read moresource§fn eq_by<I, F>(self, other: I, eq: F) -> bool
fn eq_by<I, F>(self, other: I, eq: F) -> bool
iter_order_by
)1.5.0 · source§fn lt<I>(self, other: I) -> bool
fn lt<I>(self, other: I) -> bool
Iterator
are lexicographically
less than those of another. Read more1.5.0 · source§fn le<I>(self, other: I) -> bool
fn le<I>(self, other: I) -> bool
Iterator
are lexicographically
less or equal to those of another. Read more1.5.0 · source§fn gt<I>(self, other: I) -> bool
fn gt<I>(self, other: I) -> bool
Iterator
are lexicographically
greater than those of another. Read more1.5.0 · source§fn ge<I>(self, other: I) -> bool
fn ge<I>(self, other: I) -> bool
Iterator
are lexicographically
greater than or equal to those of another. Read moresource§fn is_sorted_by<F>(self, compare: F) -> bool
fn is_sorted_by<F>(self, compare: F) -> bool
is_sorted
)source§fn is_sorted_by_key<F, K>(self, f: F) -> bool
fn is_sorted_by_key<F, K>(self, f: F) -> bool
is_sorted
)Auto Trait Implementations§
impl<'p, P> Freeze for Parser<'p, P>
impl<'p, P> RefUnwindSafe for Parser<'p, P>where
P: RefUnwindSafe,
impl<'p, P> Send for Parser<'p, P>where
P: Send,
impl<'p, P> Sync for Parser<'p, P>where
P: Sync,
impl<'p, P> Unpin for Parser<'p, P>where
P: Unpin,
impl<'p, P> UnwindSafe for Parser<'p, P>where
P: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more