1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
use super::ast;
use displaydoc::Display;
#[derive(Debug, PartialEq)]
pub enum Token {
Operand(ast::Operand),
Operator(ast::Operator),
Number(u32),
Zero,
Dot,
DotDot,
Comma,
Or,
And,
Modulo,
Junk,
At,
Decimal,
Integer,
Ellipsis,
Tilde,
E,
}
#[derive(Display, Debug)]
#[non_exhaustive]
pub enum LexerError {
#[displaydoc("Expected byte: {0}")]
ExpectedByte(u8),
#[displaydoc("Unknown token: {0}")]
UnknownToken(u8),
}
#[cfg(feature = "std")]
impl std::error::Error for LexerError {}
/// Unicode Plural Rule lexer is an iterator
/// over tokens produced from an input string.
///
/// # Examples
///
/// ```
/// use icu::plurals::rules::reference::Lexer;
///
/// let input = b"i = 5";
/// let lexer = Lexer::new(input);
/// assert_eq!(lexer.count(), 3);
/// ```
#[derive(Debug)]
pub struct Lexer<'l> {
chars: &'l [u8],
ptr: usize,
}
impl<'l> Lexer<'l> {
/// Constructs a new [`Lexer`] for a given input.
///
/// # Examples
///
/// ```
/// use icu::plurals::rules::reference::Lexer;
///
/// Lexer::new(b"n = 1");
/// ```
pub fn new(input: &'l [u8]) -> Self {
Self {
chars: input,
ptr: 0,
}
}
fn bump(&mut self) -> Option<&u8> {
let ret = self.chars.get(self.ptr);
self.ptr += 1;
ret
}
fn take_if(&mut self, c: u8) -> bool {
if self.chars.get(self.ptr) == Some(&c) {
self.ptr += 1;
true
} else {
false
}
}
fn expect(&mut self, expected: u8) -> Result<(), LexerError> {
if self.bump() == Some(&expected) {
Ok(())
} else {
Err(LexerError::ExpectedByte(expected))
}
}
fn advance_token(&mut self) -> Result<Option<Token>, LexerError> {
loop {
if let Some(c) = self.bump() {
let token = match c {
b' ' => continue,
b'n' => Token::Operand(ast::Operand::N),
b'i' => {
if self.take_if(b'n') {
self.expect(b't')?;
self.expect(b'e')?;
self.expect(b'g')?;
self.expect(b'e')?;
self.expect(b'r')?;
Token::Integer
} else {
Token::Operand(ast::Operand::I)
}
}
b'f' => Token::Operand(ast::Operand::F),
b't' => Token::Operand(ast::Operand::T),
b'v' => Token::Operand(ast::Operand::V),
b'w' => Token::Operand(ast::Operand::W),
b'=' => Token::Operator(ast::Operator::Eq),
// Zero is special, because we need to preserve it for Samples.
b'0' => Token::Zero,
b'1'..=b'9' => {
let start = self.ptr - 1;
while let Some(b'0'..=b'9') = self.chars.get(self.ptr) {
self.ptr += 1;
}
let end = self.ptr;
let mut value = 0;
#[allow(clippy::indexing_slicing)]
// start..end are calculated to be within bounds.
for ptr in start..end {
let mul = 10_u32.pow((end - ptr - 1) as u32);
value += ((self.chars[ptr] - b'0') as u32) * mul;
}
Token::Number(value)
}
b'a' => {
self.expect(b'n')?;
self.expect(b'd')?;
Token::And
}
b'o' => {
self.expect(b'r')?;
Token::Or
}
b'!' => {
self.expect(b'=')?;
Token::Operator(ast::Operator::NotEq)
}
b'.' => {
if self.take_if(b'.') {
Token::DotDot
} else {
Token::Dot
}
}
b'd' => {
self.expect(b'e')?;
self.expect(b'c')?;
self.expect(b'i')?;
self.expect(b'm')?;
self.expect(b'a')?;
self.expect(b'l')?;
Token::Decimal
}
b',' => Token::Comma,
b'%' => Token::Modulo,
b'@' => Token::At,
226 => {
// Ellipsis
self.expect(128)?;
self.expect(166)?;
Token::Ellipsis
}
b'~' => Token::Tilde,
b'e' => Token::E,
b'c' => Token::Operand(ast::Operand::C),
b => return Err(LexerError::UnknownToken(*b)),
};
return Ok(Some(token));
} else {
return Ok(None);
}
}
}
fn next(&mut self) -> Option<Token> {
self.advance_token().unwrap_or(Some(Token::Junk))
}
}
impl<'l> Iterator for Lexer<'l> {
type Item = Token;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
self.next()
}
}