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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
//! Lexer and tokens for Box language.

use super::Str;
use crate::Error;
use std::{borrow::Cow, rc::Rc};

/// Box language lexer.
pub struct Lexer<'a> {
    /// The full source file being lexed.
    s: &'a str,
    /// Inclusive lower bound on the part of the file being lexed by this lexer.
    l: usize,
    /// Exclusive upper bound on the part of the file being lexed by this lexer.
    u: usize,
    /// Opening parens.
    op: Rc<[Option<ClosingParen>]>,
    /// Index of the next opening paren that is expected.
    op_i: usize,
    /// Error accumulator.
    errs: super::ErrorAccumulator<'a>,
}

/// Opaque marker of a closing parenthesis.
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct ClosingParen {
    /// Index of the closing parenthesis in the source.
    /// Because this closing paren matches an opening paren,
    /// it cannot come at the start of the file and thus the index
    /// is strictly bigger than 0.
    source_idx: std::num::NonZeroUsize,
    /// Starting index of parens after this closing paren in the parens array.
    op_i: usize,
}

impl ClosingParen {
    fn str<'a>(&self, source: &'a str) -> Str<'a> {
        Str {
            value: source,
            start: self.source_idx.get(),
            end: self.source_idx.get() + 1,
        }
    }
}

impl<'a> Lexer<'a> {
    /// Create a new Box language lexer.
    pub fn new(source: &'a str, errs: super::ErrorAccumulator<'a>) -> Self {
        Self {
            s: source,
            l: 0,
            u: source.len(),
            op: Self::build(source),
            op_i: 0,
            errs,
        }
    }

    /// Splits off a nested lexer.
    pub fn split_nested(&mut self, closing_paren: Option<ClosingParen>) -> Self {
        let inner = Self {
            s: self.s,
            l: self.l,
            u: match closing_paren {
                Some(c) => c.source_idx.get(),
                None => self.u,
            },
            op: self.op.clone(),
            op_i: self.op_i,
            errs: self.errs.clone(),
        };
        (self.l, self.op_i) = match closing_paren {
            Some(c) => (c.source_idx.get() + 1, c.op_i),
            None => (self.u, self.op.len()),
        };
        inner
    }

    pub fn remaining_source(&self) -> Str<'a> {
        Str {
            value: self.s,
            start: self.l,
            end: self.u,
        }
    }
    fn build(source: &'a str) -> Rc<[Option<ClosingParen>]> {
        #[derive(Clone, Copy)]
        enum State {
            Regular,
            Comment,
            String,
        }
        struct Stack {
            i: usize,
        }
        let mut v: Vec<Option<ClosingParen>> = vec![];
        let mut stack = vec![];
        let mut state = State::Regular;
        let mut i = 0;
        for c in source.chars() {
            match (c, state) {
                ('(' | '[', State::Regular) => {
                    stack.push(Stack { i: v.len() });
                    v.push(None);
                }
                (')' | ']', State::Regular) => {
                    if let Some(s) = stack.pop() {
                        v[s.i] = Some(ClosingParen {
                            source_idx: i.try_into().expect("i>0 because this character is preceded by a [ or ( that pushed to the stack"),
                            op_i: v.len(),
                        });
                    }
                }
                ('\n', State::Comment) => {
                    state = State::Regular;
                }
                ('#', State::Regular) => {
                    state = State::Comment;
                }
                ('"', State::Regular) => {
                    state = State::String;
                }
                ('"', State::String) => {
                    state = State::Regular;
                }
                _ => {}
            }
            i += c.len_utf8();
        }
        v.into()
    }
}

/// A token in the Box language.
#[derive(Clone, Debug)]
pub struct Token<'a> {
    pub value: TokenValue<'a>,
    pub source: Str<'a>,
}

/// Value of a token in the Box language.
#[derive(Clone, Debug, PartialEq)]
pub enum TokenValue<'a> {
    SquareOpen {
        /// The closing bracket that matches this opening bracket.
        ///
        /// If `None`, this opening bracket is not matched.
        /// If provided, the closing bracket may be either `)` or `]`.
        closing: Option<ClosingParen>,
    },
    SquareClose,
    /// Opening round bracket `(`.
    RoundOpen {
        /// The closing bracket that matches this opening bracket.
        ///
        /// If `None`, this opening bracket is not matched.
        /// If provided, the closing bracket may be either `)` or `]`.
        closing: Option<ClosingParen>,
    },
    RoundClose,
    Comma,
    Equal,
    Keyword,
    String(Cow<'a, str>),
    Integer(i32),
    Scaled(core::Scaled),
    InfiniteGlue(core::Scaled, core::GlueOrder),
    Comment,
}

impl<'a> Iterator for Lexer<'a> {
    type Item = Token<'a>;

    fn next(&mut self) -> Option<Token<'a>> {
        // Consume whitespace and comments
        let mut comment_start: Option<usize> = None;
        while let Some(c) = self.s[self.l..self.u].chars().next() {
            let should_skip = match c {
                '\n' => {
                    if let Some(comment_start) = comment_start.take() {
                        return Some(Token {
                            value: TokenValue::Comment,
                            source: Str {
                                value: self.s,
                                start: comment_start,
                                end: self.l,
                            },
                        });
                    }
                    true
                }
                '#' => {
                    if comment_start.is_none() {
                        comment_start = Some(self.l + 1);
                    }
                    true
                }
                c => comment_start.is_some() || c.is_whitespace(),
            };
            if !should_skip {
                break;
            }
            self.l += c.len_utf8();
        }
        // Now look at the token
        let mut iter = self.s[self.l..self.u].chars();
        let c = iter.next()?;
        let start = self.l;
        self.l += c.len_utf8();
        use TokenValue::*;
        let value = match c {
            '[' | '(' => {
                let closing = self.op.get(self.op_i).cloned().flatten();
                let open = Str {
                    value: self.s,
                    start,
                    end: start + 1,
                };
                match &closing {
                    Some(closing) => {
                        let close = closing.str(self.s);
                        let want = if c == '[' { "]" } else { ")" };
                        if close.str() != want {
                            self.errs.add(Error::MismatchedBraces { open, close });
                        }
                    }
                    None => {
                        self.errs.add(Error::UnmatchedOpeningBracket { open });
                    }
                };
                self.op_i += 1;
                if c == '[' {
                    SquareOpen { closing }
                } else {
                    RoundOpen { closing }
                }
            }
            ']' => SquareClose,
            ')' => RoundClose,
            '=' => Equal,
            ',' => Comma,
            'a'..='z' | 'A'..='Z' => {
                while let Some(n @ 'a'..='z' | n @ 'A'..='Z' | n @ '_') = iter.next() {
                    self.l += n.len_utf8();
                }
                Keyword
            }
            '"' => {
                loop {
                    match iter.next() {
                        None => return None,
                        Some(n @ '"') => {
                            self.l += n.len_utf8();
                            break;
                        }
                        Some(n) => {
                            self.l += n.len_utf8();
                        }
                    }
                }
                String(Cow::Borrowed(&self.s[start + 1..self.l - 1]))
            }
            '0'..='9' => {
                let initial_value = (c as i32) - ('0' as i32);
                self.parse_number(false, initial_value, start)
            }
            '-' => self.parse_number(true, 0, start),
            _ => {
                self.errs.add(Error::InvalidCharacter {
                    char: Str {
                        value: self.s,
                        start,
                        end: self.l,
                    },
                });
                return self.next();
            }
        };
        Some(Token {
            value,
            source: Str {
                value: self.s,
                start,
                end: self.l,
            },
        })
    }
}

impl<'a> Lexer<'a> {
    fn parse_number(
        &mut self,
        negative: bool,
        initial_value: i32,
        start_idx: usize,
    ) -> TokenValue<'a> {
        let mut iter = self.s[self.l..self.u].chars();
        let mut n = initial_value;
        let mut parsing_n = true;
        let mut d = [0_u8; 17];
        let mut next_d = 0_usize;
        loop {
            match iter.next() {
                Some(c @ '0'..='9') => {
                    let i = (c as i32) - ('0' as i32);
                    if parsing_n {
                        n = n.checked_mul(10).unwrap();
                        n = n.checked_add(i).unwrap();
                    } else {
                        if let Some(d) = d.get_mut(next_d) {
                            *d = i.try_into().expect("i in [0,9]")
                        }
                        next_d += 1;
                    }
                    self.l += c.len_utf8();
                }
                Some(d @ '.') => {
                    if !parsing_n {
                        self.errs.add(Error::MultipleDecimalPoints {
                            point: Str {
                                value: self.s,
                                start: self.l,
                                end: self.l + d.len_utf8(),
                            },
                        });
                    }
                    parsing_n = false;
                    self.l += d.len_utf8();
                }
                Some(c @ 'a'..='z' | c @ 'A'..='Z') => {
                    let u = self.l;
                    self.l += c.len_utf8();
                    while let Some(n @ 'a'..='z' | n @ 'A'..='Z' | n @ '_') = iter.next() {
                        self.l += n.len_utf8();
                    }

                    let mut s = core::Scaled::from_decimal_digits(&d) + core::Scaled::ONE * n;
                    if negative {
                        s.0 *= -1;
                    }
                    let raw_unit = &self.s[u..self.l];
                    if let Some(unit) = core::ScaledUnit::parse(raw_unit) {
                        let mut s =
                            core::Scaled::new(n, core::Scaled::from_decimal_digits(&d), unit)
                                .unwrap();
                        if negative {
                            s = -s;
                        }
                        return TokenValue::Scaled(s);
                    }
                    if let Some(glue_order) = core::GlueOrder::parse(raw_unit) {
                        return TokenValue::InfiniteGlue(s, glue_order);
                    }
                    self.errs.add(Error::InvalidDimensionUnit {
                        dimension: Str {
                            value: self.s,
                            start: start_idx,
                            end: self.l,
                        },
                        unit: Str {
                            value: self.s,
                            start: u,
                            end: self.l,
                        },
                    });
                    return TokenValue::Scaled(core::Scaled::ZERO);
                }
                d => {
                    if !parsing_n {
                        self.errs.add(Error::NumberWithoutUnits {
                            number: Str {
                                value: self.s,
                                start: self.l,
                                end: self.l + d.map(|c| c.len_utf8()).unwrap_or(0),
                            },
                        });
                        return TokenValue::Scaled(core::Scaled::ZERO);
                    }
                    if negative {
                        n *= -1;
                    }
                    return TokenValue::Integer(n);
                }
            }
        }
    }
}