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
|
use proc_macro2::Span;
use super::Typed;
use super::VariableError;
use std::collections::BTreeSet;
use std::fmt::Display;
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub struct FirstSet {
inner: BTreeSet<char>,
}
impl FirstSet {
pub fn new() -> Self {
Self {
inner: BTreeSet::new(),
}
}
pub fn of_str(s: &str) -> Self {
let mut inner = BTreeSet::new();
s.chars().next().map(|c| inner.insert(c));
Self { inner }
}
pub fn is_empty(&self) -> bool {
self.inner.is_empty()
}
pub fn union(mut self, mut other: Self) -> Self {
self.inner.append(&mut other.inner);
self
}
pub fn intersect(&self, other: &Self) -> Self {
Self {
inner: self.inner.intersection(&other.inner).copied().collect(),
}
}
}
impl IntoIterator for FirstSet {
type Item = char;
type IntoIter = <BTreeSet<char> as IntoIterator>::IntoIter;
fn into_iter(self) -> Self::IntoIter {
self.inner.into_iter()
}
}
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub struct FlastSet {
inner: BTreeSet<char>,
}
impl FlastSet {
pub fn new() -> Self {
Self {
inner: BTreeSet::new(),
}
}
pub fn is_empty(&self) -> bool {
self.inner.is_empty()
}
pub fn union_first(mut self, mut other: FirstSet) -> Self {
self.inner.append(&mut other.inner);
self
}
pub fn union(mut self, mut other: Self) -> Self {
self.inner.append(&mut other.inner);
self
}
pub fn intersect_first(&self, other: &FirstSet) -> Self {
Self {
inner: self.inner.intersection(&other.inner).copied().collect(),
}
}
pub fn intersect(&self, other: &Self) -> Self {
Self {
inner: self.inner.intersection(&other.inner).copied().collect(),
}
}
}
#[derive(Debug)]
pub struct NullContext<'a> {
inner: &'a mut FlastContext
}
impl NullContext<'_> {
pub fn depth(&self) -> usize {
self.inner.depth()
}
pub fn is_guarded(&self, index: usize) -> Option<bool> {
self.inner.is_guarded(index)
}
pub fn unguard<F: FnOnce(&mut NullContext<'_>) -> R, R>(&mut self, f: F) -> R {
self.inner.unguard(|ctx| f(&mut NullContext {inner: ctx}))
}
pub fn is_nullable(&self, index: usize) -> Option<bool> {
self.inner.is_nullable(index)
}
pub fn push_nullable<F: FnOnce(&mut NullContext<'_>) -> R, R>(
&mut self,
nullable: bool,
f: F,
) -> R {
self.inner.push_nullable(nullable, f)
}
}
#[derive(Debug)]
pub struct FirstContext<'a> {
inner: &'a mut FlastContext,
}
impl FirstContext<'_> {
pub fn depth(&self) -> usize {
self.inner.depth()
}
pub fn is_guarded(&self, index: usize) -> Option<bool> {
self.inner.is_guarded(index)
}
pub fn unguard<F: FnOnce(&mut FirstContext<'_>) -> R, R>(&mut self, f: F) -> R {
self.inner.unguard(|ctx| {
f(&mut FirstContext{inner: ctx})
})
}
pub fn is_nullable(&self, index: usize) -> Option<bool> {
self.inner.is_nullable(index)
}
pub fn push_nullable<F: FnOnce(&mut NullContext<'_>) -> R, R>(
&mut self,
nullable: bool,
f: F,
) -> R {
self.inner.push_nullable(nullable, f)
}
pub fn first_set(&self, index: usize) -> Option<&FirstSet> {
self.inner.first_set(index)
}
pub fn push_first_set<F: FnOnce(&mut FirstContext<'_>) -> R, R>(
&mut self,
nullable: bool,
first_set: FirstSet,
f: F,
) -> R {
self.inner.push_first_set(nullable, first_set, f)
}
pub fn as_null(&mut self) -> NullContext<'_> {
NullContext {
inner: self.inner
}
}
}
#[derive(Debug)]
pub struct FlastContext {
data: Vec<(bool, FirstSet, FlastSet)>,
guard: Vec<usize>,
}
impl FlastContext {
pub fn new() -> Self {
Self {
data: Vec::new(),
guard: Vec::new(),
}
}
pub fn depth(&self) -> usize {
self.data.len()
}
pub fn is_guarded(&self, index: usize) -> Option<bool> {
if self.data.len() <= index {
None
} else if self.guard.is_empty() {
Some(false)
} else {
Some(self.guard[self.guard.len() - 1] + index >= self.data.len())
}
}
pub fn unguard<F: FnOnce(&mut Self) -> R, R>(&mut self, f: F) -> R {
self.guard.push(self.data.len());
let res = f(self);
self.guard.pop();
res
}
pub fn is_nullable(&self, index: usize) -> Option<bool> {
self.data.get(index).map(|(null, _, _)| *null)
}
pub fn push_nullable<F: FnOnce(&mut NullContext<'_>) -> R, R>(
&mut self,
nullable: bool,
f: F,
) -> R {
self.push_first_set(nullable, FirstSet::new(), |ctx| {
f(&mut ctx.as_null())
})
}
pub fn first_set(&self, index: usize) -> Option<&FirstSet> {
self.data.get(index).map(|(_, first, _)| first)
}
pub fn push_first_set<F: FnOnce(&mut FirstContext<'_>) -> R, R>(
&mut self,
nullable: bool,
first_set: FirstSet,
f: F,
) -> R {
self.push_flast_set(nullable, first_set, FlastSet::new(), |ctx| f(&mut ctx.as_first()))
}
pub fn flast_set(&self, index: usize) -> Option<&FlastSet> {
self.data.get(index).map(|(_, _, flast)| flast)
}
pub fn push_flast_set<F: FnOnce(&mut Self) -> R, R>(
&mut self,
nullable: bool,
first_set: FirstSet,
flast_set: FlastSet,
f: F,
) -> R {
self.data.push((nullable, first_set, flast_set));
let res = f(self);
self.data.pop();
res
}
pub fn as_first(&mut self) -> FirstContext<'_> {
FirstContext {
inner: self
}
}
pub fn as_null(&mut self) -> NullContext<'_> {
NullContext{
inner: self
}
}
}
pub trait Type {
type Err: Into<syn::Error>;
/// # Errors
/// Returns [`Err`] if there is a variable with an index greater than or equal
/// to `depth`.
fn closed(&self, depth: usize) -> Result<(), VariableError>;
/// # Errors
/// Returns [`None`] only if `self.closed(context.get_depth())` returns an
/// [`Err`].
fn is_nullable(&self, context: &mut NullContext<'_>) -> Option<bool>;
/// # Errors
/// Returns [`None`] only if `self.closed(context.get_depth())` returns an
/// [`Err`].
fn first_set(&self, context: &mut FirstContext<'_>) -> Option<FirstSet>;
/// # Errors
/// Returns [`None`] only if `self.closed(context.get_depth())` returns an
/// [`Err`].
fn flast_set(&self, context: &mut FlastContext) -> Option<FlastSet>;
/// # Errors
/// Returns an [`Err`] if this term is not well typed.
fn well_typed(self, context: &mut FlastContext) -> Result<(Typed, Span), Self::Err>;
}
|