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
use crate::sources::character_class::CharacterClass;
use derive_more::Display;
use enum_iterator::IntoEnumIterator;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::str::FromStr;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Constructor {
pub documentation: Option<String>,
pub name: String,
pub expression: Expression,
pub annotations: Vec<Annotation>,
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub enum Expression {
Sort(String),
Literal(String),
Sequence(Vec<Expression>),
Repeat {
e: Box<Expression>,
min: u64,
max: Option<u64>,
},
CharacterClass(CharacterClass),
Choice(Vec<Expression>),
Delimited {
e: Box<Expression>,
delim: Box<Expression>,
min: u64,
max: Option<u64>,
trailing: bool,
},
Negative(Box<Expression>),
Positive(Box<Expression>),
}
#[derive(Debug, Clone, IntoEnumIterator, Display, Serialize, Deserialize, PartialEq, Eq)]
pub enum Annotation {
#[display(fmt = "no-pretty-print")]
NoPrettyPrint,
#[display(fmt = "no-layout")]
NoLayout,
#[display(fmt = "injection")]
Injection,
#[display(fmt = "single-string")]
SingleString,
}
impl FromStr for Annotation {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
for i in Annotation::into_enum_iter() {
if s == i.to_string() {
return Ok(i);
}
}
Err(())
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Sort {
pub documentation: Option<String>,
pub name: String,
pub constructors: Vec<Constructor>,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SyntaxFileAst {
pub sorts: HashMap<String, Sort>,
pub starting_sort: String,
}