summaryrefslogtreecommitdiffstats
path: root/src/poem/read.rs
blob: 8f3fd4ad25547a93b2c4a9f09d2137e136604678 (plain)
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
use super::{
    elements::{rune::Rune, verse::Verse, word::Word},
    Poem,
};
use core::fmt;
mod parse;
use crate::compose::Environment;
use crate::{poem, remark, string};
use parse::next;

/// Custom errors for the parser ([read()][crate::poem::read])
#[derive(Debug, PartialEq, Eq)]
pub enum Mishap {
    /// Generic parser error
    ParseMishap(usize, usize, char),

    /// IO operation parse errors
    ///
    /// Raised when an IO operation is specified, but a filepath was not
    /// given.
    ///
    /// # Examples
    /// ```sh
    /// cat < # No file specified for Rune::Read
    /// cat file.txt >> # No file specified for Rune::Addendum
    /// ```
    IOMishap(usize, usize, char),

    /// Missing end character
    ///
    /// Some [Rune]s consists of two characters, that may contain other
    /// characters between them (i.e. [String][Rune::String]). This is
    /// raised when the ending character was left out.
    ///
    /// # Examples
    /// ```sh
    /// echo 'Hello # Ending ' character is missing
    /// mv file.txt hello.txt" # Beginning " character is missing
    /// ```
    PartialMishap(usize, usize, char),
}

impl fmt::Display for Mishap {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        let message = match self {
            Mishap::ParseMishap(j, i, c) => {
                format!("parse error on line {} pos {} near '{}'", j, i, c)
            }
            Mishap::IOMishap(j, i, c) => {
                format!(
                    "must provide file for io operation on line {} pos {} near '{}'",
                    j, i, c
                )
            }
            Mishap::PartialMishap(j, i, c) => {
                format!(
                    "partial string or action on line {} pos {} near '{}'",
                    j, i, c
                )
            }
        };

        write!(f, "{}", message)
    }
}

/// A [Poem] can add more [Verse]s to itself
trait Appendable {
    type Type;
    fn add(
        &mut self,
        verse: &mut Self::Type,
        meter: Rune,
        env: &mut Environment,
    ) -> Result<(), Mishap>;
}

impl Appendable for Poem {
    type Type = Verse;

    /// Push a [Verse] to the [Poem]
    ///
    /// Push a [Verse] to the [Poem] after checking that the [Verse] is
    /// not empty. It also:
    ///  - sets the meter of the [Verse],
    ///  - determines the couplet status of the [Verse],
    ///  - and checks for aliases associated the the [Verse]'s verb.
    ///
    /// Once the [Verse] is pushed to the [Poem], the verse stack is
    /// cleared.
    ///
    /// # Examples
    /// ```
    /// ...
    /// verse.push("cat");
    /// verse.push("Cargo.toml");
    /// poem.add(&mut verse, Rune::None, &mut env);
    /// ```
    fn add(
        &mut self,
        verse: &mut Self::Type,
        meter: Rune,
        env: &mut Environment,
    ) -> Result<(), Mishap> {
        if verse.is_empty() {
            return Ok(());
        }

        // Get meter of the last verse
        let last = match self.last() {
            Some(last) => last.meter,
            None => Rune::Else,
        };

        // Check the meter
        verse.meter = meter;
        if last == Rune::Couplet && meter == Rune::Couplet {
            verse.couplet = 3;
        } else if last == Rune::Couplet {
            verse.couplet = 2;
        } else if meter == Rune::Couplet {
            verse.couplet = 1;
        }

        // Check for aliases
        match env.aliases.get(&verse.verb()) {
            Some(alias) if env.cs == 0 => {
                // Increase the callstack
                env.cs = 1;

                // Interpret the alias (could be a complex poem)
                let mut poem = Poem::read(alias.to_string(), env)?;

                // Decrease the callstack
                env.cs = 0;

                // Try and get the last verse
                let lv = match poem.last_mut() {
                    Some(lv) => lv,
                    None => unreachable!(), // Should be caught by a Mishap above
                };

                // The last verse inherits the traits from the original
                if verse.couplet > 0 {
                    lv.couplet = verse.couplet;
                }
                lv.io = verse.io.clone();
                lv.op = verse.op.clone();
                lv.ep = verse.ep.clone();
                lv.poems = verse.poems.clone();
                lv.meter = verse.meter;
                if verse.clause().is_some() {
                    for word in verse.clause().unwrap().iter() {
                        lv.stanza.push(word.to_string());
                    }
                }

                // Push verse(s)
                for v in poem.iter() {
                    self.push(v.clone());
                }
            }
            Some(_) | None => {
                // Push verse(s)
                self.push(verse.clone());
            }
        }

        // Clear the current verse stack
        verse.clear();

        // Unit
        Ok(())
    }
}

/// A [Poem] can parse poetry
pub trait Readable {
    fn read(poetry: String, env: &mut Environment) -> Result<Poem, Mishap>;
}

impl Readable for Poem {
    /// Parse a [Poem] from a raw [String] input
    ///
    /// Takes a shell command/program or file and converts it to a
    /// machine-runnable [Poem]. If there is a parse error,
    /// [read()][Poem::read] may return a [Mishap]. See
    /// [recite()][crate::poem::recite] or [incant()][Verse::incant] for
    /// how each [Verse] in a [Poem] is called.
    fn read(poetry: String, env: &mut Environment) -> Result<Poem, Mishap> {
        // Get all the characters in the input string as an iterator
        let mut chars = poetry.chars().into_iter();

        // Create a stack to store words
        let mut word: Word = Word::new();

        // Create a stack to store the current verse
        let mut verse: Verse = Verse::new();

        // Create a vector to return
        let mut poem: Self = Poem::new();

        // Keep track of the last rune
        let mut last = Rune::None;

        // Keep track of the channel
        let mut channel: Option<Rune> = None;

        // Keep track of the line
        let mut j = 0;

        // Keep track of the column
        let mut i = 0;

        // Loop through every char in the iterator
        loop {
            // Get the next character, and unwrap it
            let c = chars.next();
            let c = match c {
                Some(c) => c,
                None => {
                    // Check for IO parse errors
                    if last == Rune::Read || last == Rune::Write || last == Rune::Addendum {
                        return Err(Mishap::IOMishap(j, i, ' '));
                    }

                    // If c is none, it indicates the end of a poem, so wrap up and
                    // then break from the loop
                    verse.add(&mut word, channel);

                    // Throw an error if the verse is empty
                    if verse.is_empty() && (last == Rune::Couplet || last == Rune::And) {
                        return Err(Mishap::ParseMishap(j, i, ' '));
                    }

                    // Push the verse and break
                    poem.add(&mut verse, Rune::None, env)?;
                    // append!(poem, last, Rune::None, verse, env);
                    break;
                }
            };

            // Determine the meter based on the character
            let rune = match c {
                ' ' => Rune::Pause,
                '/' => Rune::Path,
                '#' => Rune::Remark,
                '\'' | '"' => Rune::String,
                '`' => Rune::Poem,
                '<' => Rune::Read,
                '>' => next(&mut chars, &mut i, Rune::Write, vec![(">", Rune::Addendum)]),
                '1' => next(
                    &mut chars,
                    &mut i,
                    Rune::Else,
                    vec![(">", Rune::Write), (">>", Rune::Addendum)],
                ),
                '2' => next(
                    &mut chars,
                    &mut i,
                    Rune::Else,
                    vec![(">", Rune::Write2), (">>", Rune::Addendum2)],
                ),
                '|' => Rune::Couplet,
                '&' => next(
                    &mut chars,
                    &mut i,
                    Rune::Quiet,
                    vec![
                        ("&", Rune::And),
                        (">", Rune::WriteAll),
                        (">>", Rune::AddendumAll),
                    ],
                ),
                ';' => Rune::Continue,
                '\n' => {
                    j += 1;
                    i = 0;
                    Rune::Continue
                }
                '~' => Rune::Home,
                _ => Rune::Else,
            };

            // Some error checking, based on the last character
            match rune {
                Rune::Couplet
                | Rune::Quiet
                | Rune::And
                | Rune::Read
                | Rune::Write
                | Rune::Write2
                | Rune::WriteAll
                | Rune::Addendum
                | Rune::Addendum2
                | Rune::AddendumAll => {
                    if (last == Rune::Couplet
                        || last == Rune::Quiet
                        || last == Rune::And
                        || last == Rune::Read
                        || last == Rune::Write
                        || last == Rune::Write2
                        || last == Rune::WriteAll
                        || last == Rune::Addendum
                        || last == Rune::Addendum2
                        || last == Rune::AddendumAll)
                        || verse.is_empty()
                    {
                        return Err(Mishap::ParseMishap(j, i, c));
                    }
                }

                Rune::Continue => {
                    if last == Rune::Read
                        || last == Rune::Write
                        || last == Rune::Write2
                        || last == Rune::WriteAll
                        || last == Rune::Addendum
                        || last == Rune::Addendum2
                        || last == Rune::AddendumAll
                    {
                        return Err(Mishap::ParseMishap(j, i, c));
                    }
                }

                _ => {
                    if (last == Rune::Read
                        || last == Rune::Write
                        || last == Rune::Write2
                        || last == Rune::WriteAll
                        || last == Rune::Addendum
                        || last == Rune::Addendum2
                        || last == Rune::AddendumAll)
                        && rune == Rune::None
                        && rune == Rune::Read
                        && rune == Rune::Write
                        && rune == Rune::Write2
                        && rune == Rune::WriteAll
                        && rune == Rune::Addendum
                        && rune == Rune::Addendum2
                        && rune == Rune::AddendumAll
                        && rune == Rune::Couplet
                        && rune == Rune::Quiet
                        && rune == Rune::And
                        && rune == Rune::Continue
                    {
                        return Err(Mishap::IOMishap(j, i, c));
                    }
                }
            };

            // Do some action, based on the rune
            match rune {
                // Indicates the end of a word (space dilineated)
                Rune::Pause => {
                    verse.add(&mut word, channel);
                }

                Rune::Remark => {
                    remark!(chars);
                }

                // Indicates a string (' or ")
                Rune::String => {
                    string!(chars, j, i, c, word);
                    verse.add(&mut word, channel);
                }

                // Indicates a sub-poem
                Rune::Poem => {
                    poem!(chars, j, i, c, verse, word, env);
                }

                // Indicates a file operation (<, >, or >>)
                Rune::Read
                | Rune::Write
                | Rune::Write2
                | Rune::WriteAll
                | Rune::Addendum
                | Rune::Addendum2
                | Rune::AddendumAll => {
                    channel = Some(rune);
                    verse.add(&mut word, channel);
                    channel = Some(rune);
                    verse.io.push(rune);
                }

                // These meters indicate the end of a verse
                Rune::Couplet | Rune::Quiet | Rune::And => {
                    channel = None;
                    verse.add(&mut word, channel);
                    poem.add(&mut verse, rune, env)?;
                }

                Rune::Continue => {
                    verse.add(&mut word, channel);
                    poem.add(&mut verse, rune, env)?;
                    channel = None;
                }

                // Interpret ~ as $HOME
                Rune::Home => {
                    let mut chars = env!("HOME").chars().collect();
                    word.append(&mut chars);
                }

                // Any other char i.e. Rune::Else
                _ => {
                    word.push(c);
                }
            }

            // Set the last meter
            if rune != Rune::Pause {
                last = rune;
            }

            // Increment i, but don't drift over newlines
            if c != '\n' {
                i += 1;
            }
        }

        // Return the poem
        Ok(poem)
    }
}