mrs-tptp 0.2.2

A robust TPTP parser for Rust using winnow
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
//! Top-level TPTP parser: [`parse_tptp`] and [`TPTPIterator`].
//!
//! Most users only need the re-exports from the crate root — you rarely need
//! to import from this module directly.

use winnow::combinator::{alt, cut_err, delimited, opt, preceded, separated};
use winnow::error::StrContext;
use winnow::prelude::*;

use crate::ast::{
    AnnotatedFormula, CNFAnnotated, FOFAnnotated, Include, TCFAnnotated, TFFAnnotated,
    THFAnnotated, TPIAnnotated, TPTPProblem,
};
use crate::error::ParseError;
use crate::lexer::{PResult, check_cancel, name, single_quoted, ws};
use crate::parser::cnf::cnf_statement;
use crate::parser::common::{annotations, formula_role};
use crate::parser::fof::fof_statement;
use crate::parser::tcf::tcf_statement;
use crate::parser::tff::tff_statement;
use crate::parser::thf::thf_statement;

/// Parse a complete TPTP problem file.
///
/// # Example
///
/// ```
/// use mrs_tptp::parse_tptp;
///
/// let input = "fof(ax1, axiom, ![X]: (human(X) => mortal(X))).";
/// let result = parse_tptp(input);
/// assert!(result.is_ok());
/// ```
pub fn parse_tptp(input: &str) -> Result<TPTPProblem<'_>, ParseError> {
    let original = input;
    let mut remaining = input;

    match tptp_file(&mut remaining) {
        Ok(problem) => Ok(problem),
        Err(e) => {
            let offset = original.len().saturating_sub(remaining.len());
            Err(ParseError::new(format!("{e:?}"), offset))
        }
    }
}

/// Parse a TPTP file
fn tptp_file<'a>(input: &mut &'a str) -> PResult<TPTPProblem<'a>> {
    ws.parse_next(input)?;

    let mut problem = TPTPProblem::new();

    // Parse inputs one at a time with cancellation checks
    loop {
        // Check for cancellation at each iteration
        check_cancel(input)?;

        ws.parse_next(input)?;

        // Check if we're at the end
        if input.is_empty() {
            break;
        }

        // Try to parse a single input
        match tptp_input.parse_next(input) {
            Ok(item) => match item {
                TPTPInput::Include(inc) => problem.includes.push(inc),
                TPTPInput::Formula(f) => problem.formulas.push(f),
            },
            Err(winnow::error::ErrMode::Backtrack(_)) => {
                // No more valid inputs, check if we're at the end
                break;
            }
            Err(e) => return Err(e),
        }
    }

    // Check for remaining input
    if !input.is_empty() {
        return Err(winnow::error::ErrMode::Cut(
            winnow::error::ContextError::new(),
        ));
    }

    Ok(problem)
}

/// A single item parsed from a TPTP file: either an include directive or an
/// annotated formula.
///
/// Produced by [`TPTPIterator`].
pub enum TPTPInput<'a> {
    /// An `include('file', [selection]).` directive.
    Include(Include<'a>),
    /// An annotated formula (`fof(…)`, `cnf(…)`, `tff(…)`, etc.).
    Formula(AnnotatedFormula<'a>),
}

/// Streaming iterator that yields one TPTP input at a time.
///
/// This avoids building a complete `TPTPProblem` with all formulas collected
/// into vectors, yielding each parsed item as it is encountered instead.
///
/// # Example
///
/// ```
/// use mrs_tptp::TPTPIterator;
///
/// let input = "fof(ax1, axiom, p). fof(ax2, axiom, q).";
/// let mut iter = TPTPIterator::new(input);
/// let mut count = 0;
/// for item in &mut iter {
///     item.expect("parse error");
///     count += 1;
/// }
/// assert_eq!(count, 2);
/// assert!(iter.remaining().is_empty());
/// ```
pub struct TPTPIterator<'a> {
    original: &'a str,
    input: &'a str,
    done: bool,
}

impl<'a> TPTPIterator<'a> {
    /// Create a new streaming TPTP parser over the given input.
    pub fn new(input: &'a str) -> Self {
        let mut s = input;
        let _ = ws.parse_next(&mut s);
        TPTPIterator {
            original: input,
            input: s,
            done: false,
        }
    }

    /// Return the remaining unparsed input.
    pub fn remaining(&self) -> &'a str {
        self.input
    }
}

impl<'a> Iterator for TPTPIterator<'a> {
    type Item = Result<TPTPInput<'a>, ParseError>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.done || self.input.is_empty() {
            return None;
        }
        let _ = ws.parse_next(&mut self.input);
        if self.input.is_empty() {
            return None;
        }
        let before = self.input;
        match tptp_input.parse_next(&mut self.input) {
            Ok(item) => Some(Ok(item)),
            Err(e) => {
                self.done = true;
                // Compute byte offset from the start of the original input.
                let offset = before.as_ptr() as usize - self.original.as_ptr() as usize;
                Some(Err(ParseError::new(format!("{e:?}"), offset)))
            }
        }
    }
}

/// Parse a single TPTP input
fn tptp_input<'a>(input: &mut &'a str) -> PResult<TPTPInput<'a>> {
    alt((
        include_directive.map(TPTPInput::Include),
        annotated_formula.map(TPTPInput::Formula),
    ))
    .context(StrContext::Label("tptp_input"))
    .parse_next(input)
}

/// Parse an include directive: include('filename', [selection]).
fn include_directive<'a>(input: &mut &'a str) -> PResult<Include<'a>> {
    "include".parse_next(input)?;
    ws.parse_next(input)?;
    '('.parse_next(input)?;
    ws.parse_next(input)?;

    let file_name = single_quoted
        .context(StrContext::Label("include filename"))
        .parse_next(input)?;

    ws.parse_next(input)?;

    // Optional selection list
    let selection = opt(preceded(
        (',', ws),
        delimited(
            ('[', ws),
            separated(
                0..,
                |i: &mut &'a str| {
                    let n = name(i)?;
                    ws.parse_next(i)?;
                    Ok(n)
                },
                (ws, ',', ws),
            ),
            (ws, ']'),
        ),
    ))
    .parse_next(input)?;

    ws.parse_next(input)?;
    ')'.parse_next(input)?;
    ws.parse_next(input)?;
    '.'.parse_next(input)?;

    Ok(Include {
        file_name,
        selection,
    })
}

/// Parse an annotated formula
fn annotated_formula<'a>(input: &mut &'a str) -> PResult<AnnotatedFormula<'a>> {
    alt((
        thf_annotated.map(AnnotatedFormula::THF),
        tff_annotated.map(AnnotatedFormula::TFF),
        tcf_annotated.map(AnnotatedFormula::TCF),
        fof_annotated.map(AnnotatedFormula::FOF),
        cnf_annotated.map(AnnotatedFormula::CNF),
        tpi_annotated.map(AnnotatedFormula::TPI),
    ))
    .context(StrContext::Label("annotated_formula"))
    .parse_next(input)
}

/// Parse a THF annotated formula
fn thf_annotated<'a>(input: &mut &'a str) -> PResult<THFAnnotated<'a>> {
    "thf".parse_next(input)?;
    ws.parse_next(input)?;
    '('.parse_next(input)?;
    ws.parse_next(input)?;

    let formula_name = name
        .context(StrContext::Label("formula name"))
        .parse_next(input)?;

    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let role = formula_role
        .context(StrContext::Label("formula role"))
        .parse_next(input)?;

    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let formula = cut_err(thf_statement)
        .context(StrContext::Label("THF formula"))
        .parse_next(input)?;

    ws.parse_next(input)?;

    let annot = annotations.parse_next(input)?;

    ws.parse_next(input)?;
    ')'.parse_next(input)?;
    ws.parse_next(input)?;
    '.'.parse_next(input)?;

    Ok(THFAnnotated {
        name: formula_name,
        role,
        formula,
        annotations: annot,
    })
}

/// Parse a TFF annotated formula
fn tff_annotated<'a>(input: &mut &'a str) -> PResult<TFFAnnotated<'a>> {
    "tff".parse_next(input)?;
    ws.parse_next(input)?;
    '('.parse_next(input)?;
    ws.parse_next(input)?;

    let formula_name = name.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let role = formula_role.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let formula = cut_err(tff_statement)
        .context(StrContext::Label("TFF formula"))
        .parse_next(input)?;

    ws.parse_next(input)?;
    let annot = annotations.parse_next(input)?;

    ws.parse_next(input)?;
    ')'.parse_next(input)?;
    ws.parse_next(input)?;
    '.'.parse_next(input)?;

    Ok(TFFAnnotated {
        name: formula_name,
        role,
        formula,
        annotations: annot,
    })
}

/// Parse a TCF annotated formula
fn tcf_annotated<'a>(input: &mut &'a str) -> PResult<TCFAnnotated<'a>> {
    "tcf".parse_next(input)?;
    ws.parse_next(input)?;
    '('.parse_next(input)?;
    ws.parse_next(input)?;

    let formula_name = name.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let role = formula_role.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let formula = cut_err(tcf_statement)
        .context(StrContext::Label("TCF formula"))
        .parse_next(input)?;

    ws.parse_next(input)?;
    let annot = annotations.parse_next(input)?;

    ws.parse_next(input)?;
    ')'.parse_next(input)?;
    ws.parse_next(input)?;
    '.'.parse_next(input)?;

    Ok(TCFAnnotated {
        name: formula_name,
        role,
        formula,
        annotations: annot,
    })
}

/// Parse a FOF annotated formula
fn fof_annotated<'a>(input: &mut &'a str) -> PResult<FOFAnnotated<'a>> {
    "fof".parse_next(input)?;
    ws.parse_next(input)?;
    '('.parse_next(input)?;
    ws.parse_next(input)?;

    let formula_name = name.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let role = formula_role.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let formula = cut_err(fof_statement)
        .context(StrContext::Label("FOF formula"))
        .parse_next(input)?;

    ws.parse_next(input)?;
    let annot = annotations.parse_next(input)?;

    ws.parse_next(input)?;
    ')'.parse_next(input)?;
    ws.parse_next(input)?;
    '.'.parse_next(input)?;

    Ok(FOFAnnotated {
        name: formula_name,
        role,
        formula,
        annotations: annot,
    })
}

/// Parse a CNF annotated formula
fn cnf_annotated<'a>(input: &mut &'a str) -> PResult<CNFAnnotated<'a>> {
    "cnf".parse_next(input)?;
    ws.parse_next(input)?;
    '('.parse_next(input)?;
    ws.parse_next(input)?;

    let formula_name = name.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let role = formula_role.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let formula = cut_err(cnf_statement)
        .context(StrContext::Label("CNF formula"))
        .parse_next(input)?;

    ws.parse_next(input)?;
    let annot = annotations.parse_next(input)?;

    ws.parse_next(input)?;
    ')'.parse_next(input)?;
    ws.parse_next(input)?;
    '.'.parse_next(input)?;

    Ok(CNFAnnotated {
        name: formula_name,
        role,
        formula,
        annotations: annot,
    })
}

/// Parse a TPI annotated formula
fn tpi_annotated<'a>(input: &mut &'a str) -> PResult<TPIAnnotated<'a>> {
    "tpi".parse_next(input)?;
    ws.parse_next(input)?;
    '('.parse_next(input)?;
    ws.parse_next(input)?;

    let formula_name = name.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let role = formula_role.parse_next(input)?;
    ws.parse_next(input)?;
    ','.parse_next(input)?;
    ws.parse_next(input)?;

    let formula = cut_err(fof_statement)
        .context(StrContext::Label("TPI formula"))
        .parse_next(input)?;

    ws.parse_next(input)?;
    let annot = annotations.parse_next(input)?;

    ws.parse_next(input)?;
    ')'.parse_next(input)?;
    ws.parse_next(input)?;
    '.'.parse_next(input)?;

    Ok(TPIAnnotated {
        name: formula_name,
        role,
        formula,
        annotations: annot,
    })
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::ast::Name;

    #[test]
    fn test_fof_annotated() {
        let input = "fof(ax1, axiom, p).";
        let result = parse_tptp(input);
        assert!(result.is_ok());

        let problem = result.unwrap();
        assert_eq!(problem.formulas.len(), 1);
    }

    #[test]
    fn test_fof_complex() {
        let input = "fof(mortality, axiom, ![X]: (human(X) => mortal(X))).";
        let result = parse_tptp(input);
        assert!(result.is_ok());
    }

    #[test]
    fn test_cnf_annotated() {
        let input = "cnf(clause1, negated_conjecture, ~mortal(socrates)).";
        let result = parse_tptp(input);
        assert!(result.is_ok());
    }

    #[test]
    fn test_thf_annotated() {
        let input = "thf(p_type, type, p: $i > $o).";
        let result = parse_tptp(input);
        assert!(result.is_ok());
    }

    #[test]
    fn test_tff_annotated() {
        let input = "tff(nat_type, type, nat: $tType).";
        let result = parse_tptp(input);
        assert!(result.is_ok());
    }

    #[test]
    fn test_include() {
        let input = "include('axioms.ax').";
        let result = parse_tptp(input);
        assert!(result.is_ok());

        let problem = result.unwrap();
        assert_eq!(problem.includes.len(), 1);
        assert_eq!(problem.includes[0].file_name, "axioms.ax");
    }

    #[test]
    fn test_include_with_selection() {
        let input = "include('axioms.ax', [ax1, ax2]).";
        let result = parse_tptp(input);
        assert!(result.is_ok());

        let problem = result.unwrap();
        assert_eq!(problem.includes.len(), 1);
        assert_eq!(
            problem.includes[0].selection,
            Some(vec![Name::Lower("ax1"), Name::Lower("ax2")])
        );
    }

    #[test]
    fn test_multiple_formulas() {
        let input = r#"
            fof(ax1, axiom, ![X]: (human(X) => mortal(X))).
            fof(ax2, axiom, human(socrates)).
            fof(goal, conjecture, mortal(socrates)).
        "#;
        let result = parse_tptp(input);
        assert!(result.is_ok());

        let problem = result.unwrap();
        assert_eq!(problem.formulas.len(), 3);
    }

    #[test]
    fn test_with_comments() {
        let input = r#"
            % This is a comment
            fof(ax1, axiom, p).
            /* Block comment */
            fof(ax2, axiom, q).
        "#;
        let result = parse_tptp(input);
        assert!(result.is_ok());

        let problem = result.unwrap();
        assert_eq!(problem.formulas.len(), 2);
    }

    #[test]
    fn test_with_annotations() {
        let input = "fof(ax1, axiom, p, file('source.p', ax1)).";
        let result = parse_tptp(input);
        assert!(result.is_ok());

        let problem = result.unwrap();
        assert_eq!(problem.formulas.len(), 1);
        if let AnnotatedFormula::FOF(f) = &problem.formulas[0] {
            assert!(f.annotations.is_some());
        } else {
            panic!("Expected FOF formula");
        }
    }
}