neotoma 0.1.0

A flexible, cached parser combinator framework for Rust.
Documentation
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
use std::io::Cursor;

use neotoma::{
    cache::ParsingCache,
    literal::Literal,
    optional::Optional,
    parser::{Parser, Source, parse},
    recursive::Recursive,
    result::{Error, ParseResult},
    utf8class::Utf8Class,
};

// Arithmetic expression AST
#[derive(Debug, Clone, PartialEq)]
enum ArithmeticExpr {
    Number(String),
    Variable(String),
    Real(String, String), // integer part, fractional part
    BinaryOp {
        left: Box<ArithmeticExpr>,
        op: String,
        right: Box<ArithmeticExpr>,
    },
    Parenthesized(Box<ArithmeticExpr>),
}

// Number parser
#[derive(Clone)]
struct NumberParser;

impl<Ctx> Parser<Ctx> for NumberParser {
    type Output = ArithmeticExpr;

    fn read<S>(
        &self,
        source: &mut Source<S>,
        cache: &mut impl ParsingCache,
        _context: &mut Ctx,
    ) -> ParseResult<Self::Output>
    where
        S: neotoma::parser::Parsable,
    {
        let integer = Utf8Class::with_min("0123456789", 1);
        if let Ok(digits) = integer.parse(source, cache, _context) {
            return Ok(ArithmeticExpr::Number(digits));
        }
        Err(Error::NoMatch)
    }
}

// Variable parser
#[derive(Clone)]
struct VariableParser;

impl<Ctx> Parser<Ctx> for VariableParser {
    type Output = ArithmeticExpr;

    fn read<S>(
        &self,
        source: &mut Source<S>,
        cache: &mut impl ParsingCache,
        _context: &mut Ctx,
    ) -> ParseResult<Self::Output>
    where
        S: neotoma::parser::Parsable,
    {
        let alpha = Utf8Class::from_predicate_min(|c| c.is_ascii_alphabetic(), 1);
        if let Ok(var) = alpha.parse(source, cache, _context) {
            return Ok(ArithmeticExpr::Variable(var));
        }
        Err(Error::NoMatch)
    }
}

// Real number parser (integer.integer)
#[derive(Clone)]
struct RealParser;

impl<Ctx> Parser<Ctx> for RealParser {
    type Output = ArithmeticExpr;

    fn read<S>(
        &self,
        source: &mut Source<S>,
        cache: &mut impl ParsingCache,
        _context: &mut Ctx,
    ) -> ParseResult<Self::Output>
    where
        S: neotoma::parser::Parsable,
    {
        let integer = Utf8Class::with_min("0123456789", 1);
        let point = Literal::from_bytes_const(b".");

        if let Ok(int_part) = integer.parse(source, cache, _context) {
            if point.parse(source, cache, _context).is_ok() {
                if let Ok(frac_part) = integer.parse(source, cache, _context) {
                    return Ok(ArithmeticExpr::Real(int_part, frac_part));
                }
            }
        }
        Err(Error::NoMatch)
    }
}

// Factor parser - handles numbers, variables, reals, and parenthesized expressions
struct FactorParser {
    expr_parser: Recursive<ArithmeticExpression>,
}

impl FactorParser {
    fn new() -> Self {
        Self {
            expr_parser: Recursive::new(),
        }
    }
}

impl<Ctx> Parser<Ctx> for FactorParser {
    type Output = ArithmeticExpr;

    fn read<S>(
        &self,
        source: &mut Source<S>,
        cache: &mut impl ParsingCache,
        _context: &mut Ctx,
    ) -> ParseResult<Self::Output>
    where
        S: neotoma::parser::Parsable,
    {
        let whitespace = Optional::new(Utf8Class::whitespace());

        let oparen = Literal::from_bytes_const(b"(");
        if oparen.parse(source, cache, _context).is_ok() {
            let _ = whitespace.parse(source, cache, _context);
            if let Ok(inner_expr) = self.expr_parser.parse(source, cache, _context) {
                let _ = whitespace.parse(source, cache, _context);
                let cparen = Literal::from_bytes_const(b")");
                if cparen.parse(source, cache, _context).is_ok() {
                    return Ok(ArithmeticExpr::Parenthesized(Box::new(inner_expr)));
                }
            }
        }

        // Try real number first (more specific than integer)
        let real_parser = RealParser;
        if let Ok(real_expr) = real_parser.parse(source, cache, _context) {
            return Ok(real_expr);
        }

        // Try variable
        let var_parser = VariableParser;
        if let Ok(var_expr) = var_parser.parse(source, cache, _context) {
            return Ok(var_expr);
        }

        // Try integer
        let num_parser = NumberParser;
        if let Ok(num_expr) = num_parser.parse(source, cache, _context) {
            return Ok(num_expr);
        }

        Err(Error::NoMatch)
    }
}

// Term parser - handles multiplication and division
struct TermParser {
    factor_parser: FactorParser,
}

impl TermParser {
    fn new() -> Self {
        Self {
            factor_parser: FactorParser::new(),
        }
    }
}

impl<Ctx> Parser<Ctx> for TermParser {
    type Output = ArithmeticExpr;

    fn read<S>(
        &self,
        source: &mut Source<S>,
        cache: &mut impl ParsingCache,
        _context: &mut Ctx,
    ) -> ParseResult<Self::Output>
    where
        S: neotoma::parser::Parsable,
    {
        let whitespace = Optional::new(Utf8Class::whitespace());
        let multiply = Literal::from_bytes_const(b"*");
        let divide = Literal::from_bytes_const(b"/");

        // Parse first factor
        if let Ok(mut left) = self.factor_parser.parse(source, cache, _context) {
            // Try to parse operator and second factor
            let _ = whitespace.parse(source, cache, _context);

            // Check for multiply
            if multiply.parse(source, cache, _context).is_ok() {
                let _ = whitespace.parse(source, cache, _context);
                if let Ok(right) = self.factor_parser.parse(source, cache, _context) {
                    left = ArithmeticExpr::BinaryOp {
                        left: Box::new(left),
                        op: "*".to_string(),
                        right: Box::new(right),
                    };
                }
            }
            // Check for divide (if multiply didn't match)
            else if divide.parse(source, cache, _context).is_ok() {
                let _ = whitespace.parse(source, cache, _context);
                if let Ok(right) = self.factor_parser.parse(source, cache, _context) {
                    left = ArithmeticExpr::BinaryOp {
                        left: Box::new(left),
                        op: "/".to_string(),
                        right: Box::new(right),
                    };
                }
            }

            return Ok(left);
        }

        Err(Error::NoMatch)
    }
}

// Main expression parser - handles addition and subtraction
struct ArithmeticExpression {
    term_parser: TermParser,
}

impl ArithmeticExpression {
    fn new() -> Self {
        ArithmeticExpression {
            term_parser: TermParser::new(),
        }
    }
}

impl Default for ArithmeticExpression {
    fn default() -> Self {
        Self::new()
    }
}

impl<Ctx> Parser<Ctx> for ArithmeticExpression {
    type Output = ArithmeticExpr;

    fn read<S>(
        &self,
        source: &mut Source<S>,
        cache: &mut impl ParsingCache,
        _context: &mut Ctx,
    ) -> ParseResult<Self::Output>
    where
        S: neotoma::parser::Parsable,
    {
        let whitespace = Optional::new(Utf8Class::whitespace());
        let plus = Literal::from_bytes_const(b"+");
        let minus = Literal::from_bytes_const(b"-");

        // Parse first term
        if let Ok(mut left) = self.term_parser.parse(source, cache, _context) {
            // Try to parse operator and second term
            let _ = whitespace.parse(source, cache, _context);

            // Check for plus
            if plus.parse(source, cache, _context).is_ok() {
                let _ = whitespace.parse(source, cache, _context);
                if let Ok(right) = self.term_parser.parse(source, cache, _context) {
                    left = ArithmeticExpr::BinaryOp {
                        left: Box::new(left),
                        op: "+".to_string(),
                        right: Box::new(right),
                    };
                }
            }
            // Check for minus (if plus didn't match)
            else if minus.parse(source, cache, _context).is_ok() {
                let _ = whitespace.parse(source, cache, _context);
                if let Ok(right) = self.term_parser.parse(source, cache, _context) {
                    left = ArithmeticExpr::BinaryOp {
                        left: Box::new(left),
                        op: "-".to_string(),
                        right: Box::new(right),
                    };
                }
            }

            return Ok(left);
        }

        Err(Error::NoMatch)
    }
}

#[test]
fn hardcoded_arithmetic_parser() {
    let expression = ArithmeticExpression::new();

    let cursor = Cursor::new(br#"1 + 2 * 3"#);
    let mut source = Source::new(cursor);

    let result = parse(expression, &mut source);

    // Just verify it parses without error for now
    assert!(result.is_ok());

    // We can also check the structure
    if let Ok(expr) = result {
        match expr {
            ArithmeticExpr::BinaryOp { left, op, right } => {
                assert_eq!(op, "+");
                // Left should be "1"
                if let ArithmeticExpr::Number(n) = *left {
                    assert_eq!(n, "1");
                }
                // Right should be "2 * 3"
                if let ArithmeticExpr::BinaryOp {
                    left: l2,
                    op: op2,
                    right: r2,
                } = *right
                {
                    assert_eq!(op2, "*");
                    if let (ArithmeticExpr::Number(n2), ArithmeticExpr::Number(n3)) = (*l2, *r2) {
                        assert_eq!(n2, "2");
                        assert_eq!(n3, "3");
                    }
                }
            }
            _ => panic!("Expected binary operation"),
        }
    }
}

#[test]
fn arithmetic_with_parentheses() {
    let expression = ArithmeticExpression::new();
    let cursor = Cursor::new(br#"(1 + 2) * 3"#);
    let mut source = Source::new(cursor);

    let result = parse(expression, &mut source);
    assert!(result.is_ok());
}

#[test]
fn arithmetic_with_variables() {
    let expression = ArithmeticExpression::new();
    let cursor = Cursor::new(br#"x + y * z"#);
    let mut source = Source::new(cursor);

    let result = parse(expression, &mut source);
    assert!(result.is_ok());
}

#[test]
fn complex_expression() {
    let expression = ArithmeticExpression::new();
    let cursor = Cursor::new(br#"1 + 2 + 3 * 3"#);
    let mut source = Source::new(cursor);

    let result = parse(expression, &mut source);
    assert!(
        result.is_ok(),
        "Complex expression should parse successfully"
    );
}

#[test]
fn two_levels_of_nesting() {
    let expression = ArithmeticExpression::new();
    let cursor = Cursor::new(br#"((1 + 2))"#);
    let mut source = Source::new(cursor);

    let result = parse(expression, &mut source);
    println!("Two levels result: {result:?}");
    assert!(
        result.is_ok(),
        "Two levels of nesting should parse successfully"
    );
}

#[test]
fn three_levels_of_nesting() {
    let expression = ArithmeticExpression::new();
    let cursor = Cursor::new(br#"(((1 + 2)))"#);
    let mut source = Source::new(cursor);

    let result = parse(expression, &mut source);
    assert!(
        result.is_ok(),
        "Three levels of nesting should parse successfully"
    );
}

#[test]
fn five_levels_of_nesting() {
    let expression = ArithmeticExpression::new();
    let cursor = Cursor::new(br#"((((1 + 2))))"#);
    let mut source = Source::new(cursor);

    let result = parse(expression, &mut source);
    assert!(
        result.is_ok(),
        "Five levels of nesting should parse successfully"
    );

    // Verify the structure has the right nesting
    if let Ok(expr) = result {
        let mut current = &expr;
        let mut depth = 0;

        // Count how deep the parentheses nesting goes
        while let ArithmeticExpr::Parenthesized(inner) = current {
            depth += 1;
            current = inner;
        }

        assert_eq!(depth, 4, "Should have 4 levels of parentheses nesting");
    }
}

#[test]
fn ten_levels_of_nesting() {
    let expression = ArithmeticExpression::new();
    let cursor = Cursor::new(br#"(((((((((1 + 2)))))))))"#);
    let mut source = Source::new(cursor);

    let result = parse(expression, &mut source);
    assert!(
        result.is_ok(),
        "Ten levels of nesting should parse successfully"
    );

    // Verify the structure has the right nesting
    if let Ok(expr) = result {
        let mut current = &expr;
        let mut depth = 0;

        // Count how deep the parentheses nesting goes
        while let ArithmeticExpr::Parenthesized(inner) = current {
            depth += 1;
            current = inner;
        }

        assert_eq!(depth, 9, "Should have 9 levels of parentheses nesting");
    }
}