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
|
use std::{
fmt::{self, Display},
hash,
};
use proc_macro2::Span;
use syn::{Ident, LitStr, Token};
use super::Name;
pub type Epsilon = Option<Token![_]>;
#[derive(Clone, Debug)]
pub enum Literal {
Spanned(LitStr),
Spanless(String),
}
impl Literal {
pub fn value(&self) -> String {
match self {
Self::Spanned(l) => l.value(),
Self::Spanless(s) => s.clone(),
}
}
pub fn span(&self) -> Option<Span> {
match self {
Self::Spanned(l) => Some(l.span()),
Self::Spanless(_) => None,
}
}
pub fn as_litstr(self, span: Span) -> LitStr {
match self {
Self::Spanned(l) => l,
Self::Spanless(s) => LitStr::new(&s, span),
}
}
}
impl PartialEq for Literal {
fn eq(&self, other: &Self) -> bool {
match (self, other) {
(Self::Spanned(me), Self::Spanned(them)) => me == them,
(Self::Spanned(me), Self::Spanless(them)) => &me.value() == them,
(Self::Spanless(me), Self::Spanned(them)) => me == &them.value(),
(Self::Spanless(me), Self::Spanless(them)) => me == them,
}
}
}
impl Eq for Literal {}
impl hash::Hash for Literal {
fn hash<H: hash::Hasher>(&self, state: &mut H) {
self.value().hash(state)
}
}
impl Display for Literal {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:?}", self.value())
}
}
impl From<LitStr> for Literal {
fn from(l: LitStr) -> Self {
Self::Spanned(l)
}
}
impl From<String> for Literal {
fn from(s: String) -> Self {
Self::Spanless(s)
}
}
#[derive(Clone, Debug)]
pub struct Cat {
pub fst: Box<Expression>,
pub punct: Option<Token![.]>,
pub snd: Box<Expression>,
}
impl Cat {
pub fn new(fst: Expression, punct: Option<Token![.]>, snd: Expression) -> Self {
Self {
fst: Box::new(fst),
punct,
snd: Box::new(snd),
}
}
pub fn first(&self) -> &Expression {
&self.fst
}
pub fn first_mut(&mut self) -> &mut Expression {
&mut self.fst
}
pub fn punct(&self) -> Option<Token![.]> {
self.punct
}
pub fn second(&self) -> &Expression {
&self.snd
}
pub fn second_mut(&mut self) -> &mut Expression {
&mut self.snd
}
}
impl Display for Cat {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "({}.{})", self.fst, self.snd)
}
}
impl PartialEq for Cat {
fn eq(&self, other: &Self) -> bool {
self.first() == other.first() && self.second() == other.second()
}
}
impl Eq for Cat {}
#[derive(Clone, Debug)]
pub struct Alt {
pub left: Box<Expression>,
pub punct: Option<Token![|]>,
pub right: Box<Expression>,
}
impl Alt {
pub fn new(left: Expression, punct: Option<Token![|]>, right: Expression) -> Self {
Self {
left: Box::new(left),
punct,
right: Box::new(right),
}
}
pub fn left(&self) -> &Expression {
&self.left
}
pub fn left_mut(&mut self) -> &mut Expression {
&mut self.left
}
pub fn punct(&self) -> Option<Token![|]> {
self.punct
}
pub fn right(&self) -> &Expression {
&self.right
}
pub fn right_mut(&mut self) -> &mut Expression {
&mut self.right
}
}
impl Display for Alt {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "({}|{})", self.left, self.right)
}
}
impl PartialEq for Alt {
fn eq(&self, other: &Self) -> bool {
self.left() == other.left() && self.right() == other.right()
}
}
impl Eq for Alt {}
#[derive(Clone, Debug)]
pub struct Fix {
pub arg: Name,
pub inner: Box<Expression>,
pub span: Option<Span>,
}
impl Fix {
pub fn new(arg: Name, inner: Expression, span: Option<Span>) -> Self {
Self {
arg,
inner: Box::new(inner),
span,
}
}
pub fn arg(&self) -> &Name {
&self.arg
}
pub fn inner(&self) -> &Expression {
&self.inner
}
pub fn inner_mut(&mut self) -> &mut Expression {
&mut self.inner
}
pub fn span(&self) -> Option<Span> {
self.span
}
}
impl Display for Fix {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "[{}]({})", self.arg, self.inner)
}
}
impl PartialEq for Fix {
fn eq(&self, other: &Self) -> bool {
self.inner() == other.inner()
}
}
impl Eq for Fix {}
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct Variable {
pub name: Name,
pub index: usize,
}
impl Variable {
pub fn new(name: Name, index: usize) -> Self {
Self { name, index }
}
pub fn name(&self) -> &Name {
&self.name
}
pub fn index(&self) -> usize {
self.index
}
pub fn index_mut(&mut self) -> &mut usize {
&mut self.index
}
}
impl Display for Variable {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.name.fmt(f)
}
}
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct Parameter {
pub name: Name,
pub index: usize,
}
impl Parameter {
pub fn new(name: Name, index: usize) -> Self {
Self { name, index }
}
pub fn name(&self) -> &Name {
&self.name
}
pub fn index(&self) -> usize {
self.index
}
pub fn index_mut(&mut self) -> &mut usize {
&mut self.index
}
}
impl Display for Parameter {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.name)
}
}
/// A macro invocation.
#[derive(Clone, Debug)]
pub struct Call {
pub name: Ident,
pub args: Vec<Expression>,
pub span: Option<Span>,
}
impl Call {
pub fn new(name: Ident, args: Vec<Expression>, span: Option<Span>) -> Self {
Self { name, args, span }
}
pub fn name(&self) -> &Ident {
&self.name
}
pub fn args(&self) -> &[Expression] {
&self.args
}
pub fn args_mut(&mut self) -> &mut [Expression] {
&mut self.args
}
pub fn span(&self) -> Option<Span> {
self.span
}
}
impl Display for Call {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.name)?;
let mut iter = self.args.iter();
if let Some(arg) = iter.next() {
write!(f, "({}", arg)?;
for arg in iter {
write!(f, ", {}", arg)?;
}
write!(f, ")")
} else {
Ok(())
}
}
}
impl PartialEq for Call {
fn eq(&self, other: &Self) -> bool {
self.name() == other.name() && self.args() == other.args()
}
}
impl Eq for Call {}
#[derive(Clone, Debug)]
pub enum Expression {
/// Matches the empty string.
Epsilon(Epsilon),
/// Matches the literal string.
Literal(Literal),
/// Matches one term followed by another.
Cat(Cat),
/// Matches either one term or another.
Alt(Alt),
/// The least fix point of a term.
Fix(Fix),
/// A fixed point variable.
Variable(Variable),
/// A formal parameter.
Parameter(Parameter),
/// A macro invocation.
Call(Call),
}
impl Display for Expression {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Epsilon(_) => write!(f, "_"),
Self::Literal(l) => l.fmt(f),
Self::Cat(c) => c.fmt(f),
Self::Alt(a) => a.fmt(f),
Self::Fix(x) => x.fmt(f),
Self::Variable(v) => v.fmt(f),
Self::Parameter(p) => p.fmt(f),
Self::Call(c) => c.fmt(f),
}
}
}
impl PartialEq for Expression {
fn eq(&self, other: &Self) -> bool {
match self {
Self::Epsilon(_) => matches!(other, Self::Epsilon(_)),
Self::Literal(l) => {
if let Self::Literal(them) = other {
l == them
} else {
false
}
}
Self::Cat(c) => {
if let Self::Cat(them) = other {
c == them
} else {
false
}
}
Self::Alt(a) => {
if let Self::Alt(them) = other {
a == them
} else {
false
}
}
Self::Fix(f) => {
if let Self::Fix(them) = other {
f == them
} else {
false
}
}
Self::Variable(v) => {
if let Self::Variable(them) = other {
v == them
} else {
false
}
}
Self::Parameter(p) => {
if let Self::Parameter(them) = other {
p == them
} else {
false
}
}
Self::Call(c) => {
if let Self::Call(them) = other {
c == them
} else {
false
}
}
}
}
}
impl Eq for Expression {}
impl From<Epsilon> for Expression {
fn from(eps: Epsilon) -> Self {
Self::Epsilon(eps)
}
}
impl From<Literal> for Expression {
fn from(lit: Literal) -> Self {
Self::Literal(lit)
}
}
impl From<Cat> for Expression {
fn from(cat: Cat) -> Self {
Self::Cat(cat)
}
}
impl From<Alt> for Expression {
fn from(alt: Alt) -> Self {
Self::Alt(alt)
}
}
impl From<Fix> for Expression {
fn from(fix: Fix) -> Self {
Self::Fix(fix)
}
}
impl From<Variable> for Expression {
fn from(var: Variable) -> Self {
Self::Variable(var)
}
}
impl From<Parameter> for Expression {
fn from(param: Parameter) -> Self {
Self::Parameter(param)
}
}
impl From<Call> for Expression {
fn from(call: Call) -> Self {
Self::Call(call)
}
}
#[derive(Clone, Debug)]
pub struct Function {
pub name: Ident,
pub params: usize,
pub expr: Expression,
pub span: Option<Span>,
}
impl Function {
pub const fn new(name: Ident, params: usize, expr: Expression, span: Option<Span>) -> Self {
Self {
name,
params,
expr,
span,
}
}
}
|