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
#![deny(rustdoc::broken_intra_doc_links)]
use std::collections::HashSet;
use ast::{QualIdentifier, Term};
use backend::Backend;
use parse::ParseError;
use crate::ast::{Command, GeneralResponse};
pub mod ast;
pub mod backend;
pub mod lexicon;
mod parse;
#[cfg(test)]
mod tests;
#[derive(Debug)]
pub struct Driver<B> {
backend: B,
}
#[derive(Debug, thiserror::Error, miette::Diagnostic)]
pub enum Error {
#[error(transparent)]
#[diagnostic(transparent)]
Parse(
#[from]
#[diagnostic_source]
ParseError,
),
#[error(transparent)]
IO(#[from] std::io::Error),
}
impl<B> Driver<B>
where
B: Backend,
{
pub fn new(backend: B) -> Result<Self, Error> {
let mut driver = Self { backend };
driver.exec(&Command::SetOption(ast::Option::PrintSuccess(true)))?;
Ok(driver)
}
pub fn exec(&mut self, cmd: &Command) -> Result<GeneralResponse, Error> {
let res = self.backend.exec(cmd)?;
let res = if let Some(res) = cmd.parse_response(&res)? {
GeneralResponse::SpecificSuccessResponse(res)
} else {
GeneralResponse::parse(&res)?
};
Ok(res)
}
}
impl Term {
pub fn all_consts(&self) -> HashSet<&QualIdentifier> {
match self {
Term::SpecConstant(_) => HashSet::new(),
Term::Identifier(q) => std::iter::once(q).collect(),
Term::Application(q, args) => std::iter::once(q)
.chain(args.iter().flat_map(|arg| arg.all_consts()))
.collect(),
Term::Let(_, _) => todo!(),
Term::Forall(_, _) => HashSet::new(),
Term::Exists(_, _) => todo!(),
Term::Match(_, _) => todo!(),
Term::Annotation(_, _) => todo!(),
}
}
pub fn strip_sort(self) -> Term {
match self {
Term::SpecConstant(_) => self,
Term::Identifier(
QualIdentifier::Identifier(ident) | QualIdentifier::Sorted(ident, _),
) => Term::Identifier(QualIdentifier::Identifier(ident)),
Term::Application(
QualIdentifier::Identifier(ident) | QualIdentifier::Sorted(ident, _),
args,
) => Term::Application(
QualIdentifier::Identifier(ident),
args.into_iter().map(|arg| arg.strip_sort()).collect(),
),
Term::Let(_, _) => todo!(),
Term::Forall(qs, rs) => Term::Forall(qs, rs),
Term::Exists(_, _) => todo!(),
Term::Match(_, _) => todo!(),
Term::Annotation(_, _) => todo!(),
}
}
}