ryan 0.2.3

Ryan: a configuration language for the practical programmer
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
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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
use indexmap::IndexMap;
use pest::{
    iterators::Pairs,
    pratt_parser::{Op, PrattParser},
};
use std::{cell::RefCell, fmt::Display, rc::Rc};

use crate::{rc_world, utils::QuotedStr};

use super::State;
use super::{comprehension::DictComprehension, ErrorLogger};
use super::{comprehension::ListComprehension, operation::BinaryOperator};
use super::{import::Import, operation::BinaryOperation};
use super::{
    literal::Literal,
    operation::{PrefixOperation, PrefixOperator},
};
use super::{
    operation::{PostfixOperation, PostfixOperator},
    value::Value,
};
use super::{template_string::TemplateString, Rule};

lazy_static::lazy_static! {
    static ref PRATT_PARSER: PrattParser<Rule> = {
        use pest::pratt_parser::Assoc::*;

        PrattParser::new()
            .op(Op::infix(Rule::orOp, Left))
            .op(Op::infix(Rule::andOp, Left))
            .op(Op::prefix(Rule::notOp))
            .op(
                Op::infix(Rule::equalsOp, Left)
                | Op::infix(Rule::notEqualsOp, Left)
                | Op::infix(Rule::typeMatchesOp, Left)
                | Op::infix(Rule::greaterOp, Left)
                | Op::infix(Rule::greaterEqualOp, Left)
                | Op::infix(Rule::lesserOp, Left)
                | Op::infix(Rule::lesserEqualOp, Left)
                | Op::infix(Rule::isContainedOp, Left)
            )
            .op(Op::infix(Rule::plusOp, Left) | Op::infix(Rule::minusOp, Left))
            .op(Op::infix(Rule::remainderOp, Left))
            .op(Op::infix(Rule::timesOp, Left) | Op::infix(Rule::dividedOp, Left))
            .op(Op::infix(Rule::defaultOp, Left))
            .op(Op::infix(Rule::juxtapositionOp, Right))
            .op(Op::postfix(Rule::accessOp))
            .op(Op::postfix(Rule::castInt) | Op::postfix(Rule::castFloat) | Op::postfix(Rule::castText))
    };
}

/// Transformations of Ryan values.
#[derive(Debug, Clone, PartialEq)]
pub enum Expression {
    /// Builds a list of Ryan values.
    List(List),
    /// Builds a dictionary of Ryan values.
    Dict(Dict),
    /// Based on an expressing returning a `bool`, executes either of the supplied
    /// expressions.
    Conditional(Box<Expression>, Box<Expression>, Box<Expression>),
    /// Builds a Ryan value from a literal.
    Literal(Literal),
    /// Builds a Ryan template string.
    TemplateString(TemplateString),
    /// Builds a Ryan value of a binary operation over two Ryan values.
    BinaryOperation(Box<BinaryOperation>),
    /// Builds a Ryan value of a prefix operator applied on a Ryan value.
    PrefixOperation(Box<PrefixOperation>),
    /// Builds a Ryan value of a postfix operator applied on a Ryan value.
    PostfixOperation(Box<PostfixOperation>),
    /// Produces a Ryan value from an `import` statement.
    Import(Import),
    /// Creates a Ryan value from a list comprehension.
    ListComprehension(Box<ListComprehension>),
    /// Creates a Ryan value from a dict comprehension.
    DictComprehension(Box<DictComprehension>),
}

impl Default for Expression {
    fn default() -> Self {
        Expression::Literal(Literal::default())
    }
}

impl Display for Expression {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::List(list) => {
                write!(f, "[")?;
                crate::utils::fmt_list(f, &list.items)?;
                write!(f, "]")?;
            }
            Self::Dict(dict) => {
                write!(f, "{{")?;
                crate::utils::fmt_list(f, &dict.items)?;
                write!(f, "}}")?;
            }
            Self::Literal(lit) => write!(f, "{lit}")?,
            Self::TemplateString(template) => write!(f, "{template}")?,
            Self::BinaryOperation(op) => write!(f, "{op}")?,
            Self::PrefixOperation(op) => write!(f, "{op}")?,
            Self::PostfixOperation(op) => write!(f, "{op}")?,
            Self::Conditional(r#if, then, r#else) => {
                write!(f, "if {} then {} else {}", r#if, r#then, r#else)?
            }
            Self::Import(import) => write!(f, "{import}")?,
            Self::ListComprehension(comprehension) => write!(f, "{comprehension}")?,
            Self::DictComprehension(comprehension) => write!(f, "{comprehension}")?,
        }

        Ok(())
    }
}

impl Expression {
    pub(super) fn parse(logger: &mut ErrorLogger, pairs: Pairs<'_, Rule>) -> Self {
        let logger_cell = Rc::new(RefCell::new(logger));
        let logger_cell_postfix = logger_cell.clone();

        PRATT_PARSER
            .map_primary(|pair| match pair.as_rule() {
                Rule::list => {
                    Expression::List(List::parse(*logger_cell.borrow_mut(), pair.into_inner()))
                }
                Rule::dict => {
                    Expression::Dict(Dict::parse(*logger_cell.borrow_mut(), pair.into_inner()))
                }
                Rule::conditional => {
                    let mut pairs = pair.into_inner();
                    let mut next = || {
                        Expression::parse(
                            *logger_cell.borrow_mut(),
                            pairs
                                .next()
                                .expect("clause in conditional was expected")
                                .into_inner(),
                        )
                    };
                    Expression::Conditional(Box::new(next()), Box::new(next()), Box::new(next()))
                }
                Rule::literal => Expression::Literal(Literal::parse(
                    *logger_cell.borrow_mut(),
                    pair.into_inner(),
                )),
                Rule::import => {
                    Expression::Import(Import::parse(*logger_cell.borrow_mut(), pair.into_inner()))
                }
                Rule::expression => Self::parse(*logger_cell.borrow_mut(), pair.into_inner()),
                Rule::templateString => Expression::TemplateString(TemplateString::parse(
                    *logger_cell.borrow_mut(),
                    pair.into_inner(),
                )),
                Rule::listComprehension => Expression::ListComprehension(Box::new(
                    ListComprehension::parse(*logger_cell.borrow_mut(), pair.into_inner()),
                )),
                Rule::dictComprehension => Expression::DictComprehension(Box::new(
                    DictComprehension::parse(*logger_cell.borrow_mut(), pair.into_inner()),
                )),
                _ => unreachable!(),
            })
            .map_infix(|left, op, right| {
                Expression::BinaryOperation(Box::new(BinaryOperation {
                    left,
                    op: BinaryOperator::parse(op),
                    right,
                }))
            })
            .map_prefix(|op, right| {
                Expression::PrefixOperation(Box::new(PrefixOperation {
                    op: PrefixOperator::parse(op),
                    right,
                }))
            })
            .map_postfix(move |left, op| {
                Expression::PostfixOperation(Box::new(PostfixOperation {
                    op: PostfixOperator::parse(*logger_cell_postfix.borrow_mut(), op),
                    left,
                }))
            })
            .parse(pairs)
    }

    #[must_use]
    pub(super) fn capture(
        &self,
        state: &mut State<'_>,
        provided: &mut [Rc<str>],
        values: &mut IndexMap<Rc<str>, Value>,
    ) -> Option<()> {
        match self {
            Self::List(list) => list.capture(state, provided, values)?,
            Self::Dict(dict) => dict.capture(state, provided, values)?,
            Self::Conditional(r#if, then, r#else) => {
                r#if.capture(state, provided, values)?;
                then.capture(state, provided, values)?;
                r#else.capture(state, provided, values)?;
            }
            Self::Literal(lit) => {
                lit.capture(state, provided, values)?;
            }
            Self::TemplateString(template) => {
                template.capture(state, provided, values)?;
            }
            Self::BinaryOperation(op) => {
                op.left.capture(state, provided, values)?;
                op.right.capture(state, provided, values)?;
            }
            Self::PrefixOperation(op) => op.right.capture(state, provided, values)?,
            Self::PostfixOperation(op) => op.left.capture(state, provided, values)?,
            Self::Import(_) => {}
            Self::ListComprehension(comprehension) => {
                comprehension.capture(state, provided, values)?
            }
            Self::DictComprehension(comprehension) => {
                comprehension.capture(state, provided, values)?
            }
        };

        Some(())
    }

    pub(super) fn eval(&self, state: &mut State<'_>) -> Option<Value> {
        let returned = match self {
            Self::List(list) => list.eval(state)?,
            Self::Dict(dict) => dict.eval(state)?,
            Self::Conditional(r#if, then, r#else) => {
                let if_evalued = r#if.eval(state)?;
                let to_eval = if state.absorb(if_evalued.is_true())? {
                    then
                } else {
                    r#else
                };

                to_eval.eval(state)?
            }
            Self::Literal(lit) => lit.eval(state)?,
            Self::TemplateString(template) => template.eval(state)?,
            Self::BinaryOperation(op) => op.eval(state)?,
            Self::PrefixOperation(op) => op.eval(state)?,
            Self::PostfixOperation(op) => op.eval(state)?,
            Self::Import(import) => import.eval(state)?,
            Self::ListComprehension(comprehension) => comprehension.eval(state)?,
            Self::DictComprehension(comprehension) => comprehension.eval(state)?,
        };

        Some(returned)
    }
}

/// An association of string values to Ryan values.
#[derive(Debug, Clone, Default, PartialEq)]
pub struct Dict {
    /// The entries of this association.
    pub items: Vec<DictItem>,
}

impl Dict {
    fn parse(logger: &mut ErrorLogger, pairs: Pairs<'_, Rule>) -> Self {
        let mut items = vec![];

        for pair in pairs {
            match pair.as_rule() {
                Rule::dictItem => items.push(DictItem::parse(logger, pair.into_inner())),
                _ => unreachable!(),
            }
        }

        Dict { items }
    }

    #[must_use]
    pub(super) fn capture(
        &self,
        state: &mut State<'_>,
        provided: &mut [Rc<str>],
        values: &mut IndexMap<Rc<str>, Value>,
    ) -> Option<()> {
        for item in &self.items {
            item.capture(state, provided, values)?;
        }

        Some(())
    }

    pub(super) fn eval(&self, state: &mut State<'_>) -> Option<Value> {
        let mut evald = IndexMap::new();

        for item in &self.items {
            match item {
                DictItem::KeyValue(kv) => {
                    if let Some(g) = &kv.guard {
                        let tested = g.eval(state)?.is_true();
                        if !state.absorb(tested)? {
                            continue;
                        }
                    }

                    evald.insert(rc_world::str_to_rc(&kv.key), kv.value.eval(state)?);
                }
                DictItem::FlattenExpression(expr) => {
                    let returned = expr.eval(state)?;
                    match returned {
                        Value::Map(map) => {
                            for (key, value) in &*map {
                                evald.insert(key.clone(), value.clone());
                            }
                        }
                        Value::List(list) => {
                            for item in &*list {
                                match item {
                                    Value::List(pair) if pair.len() == 2 => {
                                        if let Value::Text(key) = &pair[0] {
                                            evald.insert(key.clone(), pair[1].clone());
                                        } else {
                                            state.raise(format!(
                                                "First element of key-pair list must be text, got {}",
                                                pair[0].canonical_type()
                                            ))?;
                                        }
                                    }
                                    _ => state.raise(format!(
                                        "Key-pair list must be [text, any], got {}",
                                        item.canonical_type(),
                                    ))?,
                                }
                            }
                        }
                        val => state.raise(format!(
                            "Flatten expression must be either a map or list of key-value pairs, got {}",
                            val.canonical_type(),
                        ))?,
                    }
                }
            }
        }

        Some(Value::Map(Rc::new(evald)))
    }
}

///
#[derive(Debug, Clone, PartialEq)]
pub enum DictItem {
    KeyValue(KeyValue),
    FlattenExpression(Expression),
}

impl Display for DictItem {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            DictItem::KeyValue(kv) => write!(f, "{kv}")?,
            DictItem::FlattenExpression(expr) => write!(f, "...{expr}")?,
        }

        Ok(())
    }
}

impl DictItem {
    fn parse(logger: &mut ErrorLogger, mut pairs: Pairs<'_, Rule>) -> Self {
        let inner = pairs.next().expect("a dict item always has a token");
        match inner.as_rule() {
            Rule::keyValue => DictItem::KeyValue(KeyValue::parse(logger, inner.into_inner())),
            Rule::flatExpression => {
                DictItem::FlattenExpression(Expression::parse(logger, inner.into_inner()))
            }
            _ => unreachable!(),
        }
    }

    #[must_use]
    pub(super) fn capture(
        &self,
        state: &mut State<'_>,
        provided: &mut [Rc<str>],
        values: &mut IndexMap<Rc<str>, Value>,
    ) -> Option<()> {
        match self {
            DictItem::KeyValue(kv) => kv.capture(state, provided, values)?,
            DictItem::FlattenExpression(expr) => expr.capture(state, provided, values)?,
        }

        Some(())
    }
}

/// An entry of a dictionary expression.
#[derive(Debug, Clone, PartialEq)]
pub struct KeyValue {
    /// The string value associated with the Ryan value.
    pub key: Rc<str>,
    /// The expression that evaluates to the value of this association.
    pub value: Expression,
    /// An optional `if` guard. If the supplied expression evaluates to `false`, the
    /// current key-value pair is not inserted in the final dictionary.
    pub guard: Option<Expression>,
}

impl Display for KeyValue {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if let Some(g) = &self.guard {
            write!(f, "{}: {} if {}", QuotedStr(&self.key), self.value, g)
        } else {
            write!(f, "{}: {}", QuotedStr(&self.key), self.value)
        }
    }
}

impl KeyValue {
    fn parse(logger: &mut ErrorLogger, pairs: Pairs<'_, Rule>) -> Self {
        let mut key = None;
        let mut value = None;
        let mut guard = None;

        for pair in pairs {
            match pair.as_rule() {
                Rule::identifier => key = Some(rc_world::str_to_rc(pair.as_str())),
                Rule::text => {
                    key = Some(rc_world::string_to_rc(
                        logger.absorb(&pair, crate::utils::unescape(pair.as_str())),
                    ));
                }
                Rule::expression => value = Some(Expression::parse(logger, pair.into_inner())),
                Rule::ifGuard => {
                    guard = Some(Expression::parse(
                        logger,
                        pair.into_inner()
                            .next()
                            .expect("there is always an expression in an if guard")
                            .into_inner(),
                    ))
                }
                _ => unreachable!(),
            }
        }

        let key = key.expect("there is always a key in dict item");

        KeyValue {
            value: value.unwrap_or_else(|| Expression::Literal(Literal::Identifier(key.clone()))),
            key,
            guard,
        }
    }

    #[must_use]
    pub(super) fn capture(
        &self,
        state: &mut State<'_>,
        provided: &mut [Rc<str>],
        values: &mut IndexMap<Rc<str>, Value>,
    ) -> Option<()> {
        self.value.capture(state, provided, values)?;
        if let Some(g) = &self.guard {
            g.capture(state, provided, values)?;
        }

        Some(())
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct List {
    items: Vec<ListItem>,
}

impl List {
    fn parse(logger: &mut ErrorLogger, pairs: Pairs<'_, Rule>) -> Self {
        let mut items = vec![];

        for pair in pairs {
            match pair.as_rule() {
                Rule::listItem => items.push(ListItem::parse(logger, pair.into_inner())),
                _ => unreachable!(),
            }
        }

        List { items }
    }

    #[must_use]
    pub(super) fn capture(
        &self,
        state: &mut State<'_>,
        provided: &mut [Rc<str>],
        values: &mut IndexMap<Rc<str>, Value>,
    ) -> Option<()> {
        for item in &self.items {
            item.capture(state, provided, values)?;
        }

        Some(())
    }

    pub(super) fn eval(&self, state: &mut State<'_>) -> Option<Value> {
        let mut evald = vec![];

        for item in &self.items {
            match item {
                ListItem::Item(item) => {
                    evald.push(item.eval(state)?);
                }
                ListItem::FlattenExpression(expr) => {
                    let returned = expr.eval(state)?;
                    match returned {
                        Value::List(list) => evald.extend(list.iter().cloned()),
                        Value::Map(map) => {
                            for (key, value) in &*map {
                                evald.push(Value::List(
                                    vec![Value::Text(key.clone()), value.clone()].into(),
                                ));
                            }
                        }
                        val => state.raise(format!(
                            "Flatten expression must be either a map or a list, got {}",
                            val.canonical_type(),
                        ))?,
                    }
                }
            }
        }

        Some(Value::List(evald.into()))
    }
}

#[derive(Debug, Clone, PartialEq)]
pub enum ListItem {
    Item(Expression),
    FlattenExpression(Expression),
}

impl Display for ListItem {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            ListItem::Item(item) => write!(f, "{item}")?,
            ListItem::FlattenExpression(expr) => write!(f, "...{expr}")?,
        }

        Ok(())
    }
}

impl ListItem {
    fn parse(logger: &mut ErrorLogger, mut pairs: Pairs<'_, Rule>) -> Self {
        let inner = pairs.next().expect("a dict item always has a token");
        match inner.as_rule() {
            Rule::expression => ListItem::Item(Expression::parse(logger, inner.into_inner())),
            Rule::flatExpression => {
                ListItem::FlattenExpression(Expression::parse(logger, inner.into_inner()))
            }
            _ => unreachable!(),
        }
    }

    #[must_use]
    pub(super) fn capture(
        &self,
        state: &mut State<'_>,
        provided: &mut [Rc<str>],
        values: &mut IndexMap<Rc<str>, Value>,
    ) -> Option<()> {
        match self {
            ListItem::Item(item) => item.capture(state, provided, values),
            ListItem::FlattenExpression(expr) => expr.capture(state, provided, values),
        }
    }
}