beans 8.0.0

A parser generator library based on the Earley parser
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
use std::{collections::HashMap, rc::Rc};

use super::AST;
use crate::{
    error::{ErrorKind, Result},
    span::Span,
    typed::{get, match_variant, node, span, spanned_value, value, Spanned, Tree},
};

#[derive(Debug, Clone)]
pub(super) struct Ast {
    pub decls: Vec<Spanned<ToplevelDeclaration>>,
    pub span: Span,
}

impl Tree for Ast {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(Self {
            decls: get!(node => decls).to_tree::<Spanned<_>>()?.inner,
            span: span!(node),
        })
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone)]
pub(super) enum ToplevelDeclaration {
    Decl(Box<Declaration>),
    Macro(Box<MacroDeclaration>),
}

impl Tree for Spanned<ToplevelDeclaration> {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(match_variant! {(node) {
            Decl => ToplevelDeclaration::decl(get!(node => decl).to_tree()?),
            Macro => ToplevelDeclaration::r#macro(get!(node => decl).to_tree()?),
        }})
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

impl ToplevelDeclaration {
    fn decl(decl: Declaration) -> Self {
        Self::Decl(Box::new(decl))
    }

    fn r#macro(decl: MacroDeclaration) -> Self {
        Self::Macro(Box::new(decl))
    }
}

#[derive(Debug, Clone)]
pub(super) struct MacroDeclaration {
    pub name: Spanned<Rc<str>>,
    pub args: Vec<Spanned<Rc<str>>>,
    pub rules: Vec<Rule>,
    pub span: Span,
}

impl Tree for MacroDeclaration {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(Self {
            name: spanned_value!(node => name),
            args: get!(node => args)
                .to_tree::<Spanned<Vec<_>>>()?
                .inner
                .into_iter()
                .map(|fa: FormalArgument| fa.0)
                .collect(),
            rules: get!(node => rules).to_tree::<Spanned<_>>()?.inner,
            span: span!(node),
        })
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone)]
pub(super) struct FormalArgument(Spanned<Rc<str>>);

impl Tree for FormalArgument {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(Self(spanned_value!(node => name)))
    }

    fn span(&self) -> &Span {
        &self.0.span
    }
}

#[derive(Debug, Clone)]
pub(super) struct Comment(Spanned<Rc<str>>);

impl Tree for Comment {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(Self(spanned_value!(node => through)))
    }

    fn span(&self) -> &Span {
        &self.0.span
    }
}

#[derive(Debug, Clone)]
pub(super) struct Declaration {
    pub comment: Option<Spanned<Rc<str>>>,
    pub axiom: Spanned<bool>,
    pub name: Spanned<Rc<str>>,
    pub rules: Vec<Rule>,
    pub span: Span,
}

impl Tree for Declaration {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(Self {
            comment: get!(node => comment)
                .to_tree::<Spanned<Option<Comment>>>()?
                .transpose()
                .map(|x| x.map(|y| y.0).merge()),
            axiom: get!(node => axiom).to_tree()?,
            rules: get!(node => rules).to_tree::<Spanned<_>>()?.inner,
            name: spanned_value!(node => name),
            span: span!(node),
        })
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone)]
pub(super) struct Rule {
    pub elements: Vec<Element>,
    pub proxy: Proxy,
    pub left_associative: Option<Spanned<Associativity>>,
    pub span: Span,
}

impl Tree for Rule {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(Self {
            elements: get!(node => elements).to_tree::<Spanned<_>>()?.inner,
            proxy: get!(node => proxy).to_tree()?,
            left_associative: get!(node => assoc).to_tree::<Spanned<_>>()?.inner,
            span: span!(node),
        })
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone, Copy)]
pub enum Associativity {
    Left,
    Right,
}

impl Tree for Spanned<Associativity> {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(match_variant! {(node) {
            Left => Associativity::Left,
            Right => Associativity::Right,
        }})
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

impl From<Associativity> for bool {
    fn from(assoc: Associativity) -> bool {
	matches!(assoc, Associativity::Left)
    }
}

#[derive(Debug, Clone)]
pub(super) struct Element {
    pub item: Spanned<Item>,
    pub attribute: Option<Attribute>,
    pub key: Option<Key>,
    pub span: Span,
}

impl Tree for Element {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(Self {
            item: get!(node => item).to_tree()?,
            attribute: get!(node => attribute).to_tree::<Spanned<_>>()?.inner,
            key: get!(node => key).to_tree::<Spanned<_>>()?.inner,
            span: span!(node),
        })
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone)]
pub(super) enum Item {
    SelfNonTerminal,
    Regular {
        name: Spanned<Rc<str>>,
    },
    MacroInvocation {
        name: Spanned<Rc<str>>,
        arguments: Vec<Spanned<Item>>,
    },
}

impl Tree for Spanned<Item> {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(match_variant! {(node) {
            SelfNonTerminal => Item::SelfNonTerminal,
            Regular => Item::Regular { name: spanned_value!(node => name) },
            MacroInvocation => Item::MacroInvocation {
		name: spanned_value!(node => name),
		arguments: get!(node => args).to_tree::<Spanned<_>>()?.inner,
            }
        }})
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone)]
pub(super) struct Attribute {
    pub attribute: Spanned<Rc<str>>,
    pub named: Spanned<bool>,
    pub span: Span,
}

impl Tree for Attribute {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        let named = match_variant! [(node) {
            Named => true,
            Indexed => false,
        }];
        Ok(Self {
            attribute: spanned_value!(node => attribute),
            named,
            span: span!(node),
        })
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone)]
pub(super) struct Key(pub Spanned<Rc<str>>);

impl Tree for Key {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(Self(spanned_value!(node => key)))
    }

    fn span(&self) -> &Span {
        &self.0.span
    }
}

#[derive(Debug, Clone)]
pub(super) struct Proxy {
    pub variant: Option<Spanned<Rc<str>>>,
    pub items: HashMap<Rc<str>, (Spanned<Expression>, Span)>,
    pub span: Span,
}

impl Tree for Proxy {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        let vec_items: Vec<Spanned<ProxyItem>> =
            get!(node => through).to_tree::<Spanned<_>>()?.inner;
        let mut items = HashMap::new();
        let mut variant = None;
        for item in vec_items {
            match item.inner {
                ProxyItem::Variant(var) => variant = Some(var),
                ProxyItem::Entry { key, value } => {
                    if let Some((_, old_span)) =
                        items.insert(key.inner.clone(), (value, key.span.clone()))
                    {
                        return ErrorKind::GrammarDuplicateProxyItem {
                            name: key.inner.to_string(),
                            span: key.span.into(),
                            old_span: old_span.into(),
                        }
                        .err();
                    }
                }
            }
        }
        Ok(Proxy {
            variant,
            items,
            span: span!(node),
        })
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone)]
pub(super) enum ProxyItem {
    Variant(Spanned<Rc<str>>),
    Entry {
        key: Spanned<Rc<str>>,
        value: Spanned<Expression>,
    },
}

impl Tree for Spanned<ProxyItem> {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        Ok(match_variant! {(node) {
            Variant => ProxyItem::Variant(spanned_value!(node => var)),
            Entry => ProxyItem::Entry {
            key: spanned_value!(node => key),
            value: get!(node => value).to_tree()?,
            }
        }})
    }

    fn span(&self) -> &Span {
        &self.span
    }
}

#[derive(Debug, Clone)]
pub(super) enum Expression {
    String(Rc<str>),
    Id(Rc<str>),
    Instanciation {
        name: Spanned<Rc<str>>,
        children: HashMap<Rc<str>, (Spanned<Expression>, Span)>,
        variant: Option<Spanned<Rc<str>>>,
    },
}

impl Tree for Spanned<Expression> {
    fn read(ast: AST) -> Result<Self> {
        let mut node = node!(ast);
        let res = match_variant! {(node) {
            String => Expression::String(value!(node => value)),
            Id => Expression::Id(value!(node => name)),
            Instanciation => {
		let mut variant = None;
		let mut children = HashMap::new();
		for item in get!(node => children).to_tree::<Spanned<Vec<Spanned<_>>>>()?.inner {
		    match item.inner {
			ProxyItem::Variant(var) => variant = Some(var),
			ProxyItem::Entry { key, value } =>
			    if let Some((_, old_span)) = children.insert(key.inner.clone(), (value, key.span.clone())) {
				return ErrorKind::GrammarDuplicateProxyItem {
				    name: key.inner.to_string(),
				    span: key.span.into(),
				    old_span: old_span.into(),
				}
				.err();
			    }
		    }
		}
		Expression::Instanciation {
		    name: spanned_value!(node => name),
		    children,
		    variant,
		}
            }
        }};
        Ok(res)
    }

    fn span(&self) -> &Span {
        &self.span
    }
}