gshell 1.0.2

gshell is a shell for people who live in the terminal. It pairs familiar Unix behavior with a tighter core, fast interaction, and an interface built to stay out of the way.
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
use crate::{
    ast::{CommandNode, ShellExpr, SimpleCommand},
    expand::{QuoteKind, Word, WordSegment},
    parser::{ParsedCommand, Parser},
    shell::{ShellError, ShellResult},
};

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Token {
    Word(Word),
    Pipe,
    Ampersand,
    AndIf,
    OrIf,
    Semicolon,
    RedirectIn,
    RedirectHeredoc,
    RedirectOut,
    RedirectAppend,
    LBrace,
    LParen,
    RBrace,
    RParen,
    IoNumber(u8),
}

#[derive(Debug, Default)]
pub struct Lexer;

impl Lexer {
    pub fn tokenize(&self, input: &str) -> ShellResult<Vec<Token>> {
        let mut chars = input.chars().peekable();
        let mut tokens = Vec::new();

        while let Some(ch) = chars.peek().copied() {
            if ch.is_whitespace() {
                chars.next();
                continue;
            }

            match ch {
                '|' => {
                    chars.next();
                    if chars.peek() == Some(&'|') {
                        chars.next();
                        tokens.push(Token::OrIf);
                    } else {
                        tokens.push(Token::Pipe);
                    }
                }
                '&' => {
                    chars.next();
                    if chars.peek() == Some(&'&') {
                        chars.next();
                        tokens.push(Token::AndIf);
                    } else {
                        tokens.push(Token::Ampersand);
                    }
                }
                ';' => {
                    chars.next();
                    tokens.push(Token::Semicolon);
                }
                '{' => {
                    chars.next();
                    tokens.push(Token::LBrace);
                }
                '(' => {
                    chars.next();
                    tokens.push(Token::LParen);
                }
                '}' => {
                    chars.next();
                    tokens.push(Token::RBrace);
                }
                ')' => {
                    chars.next();
                    tokens.push(Token::RParen);
                }
                '>' => {
                    chars.next();
                    if chars.peek() == Some(&'>') {
                        chars.next();
                        tokens.push(Token::RedirectAppend);
                    } else {
                        tokens.push(Token::RedirectOut);
                    }
                }
                '<' => {
                    chars.next();
                    if chars.peek() == Some(&'<') {
                        chars.next();
                        tokens.push(Token::RedirectHeredoc);
                    } else {
                        tokens.push(Token::RedirectIn);
                    }
                }
                c if c.is_ascii_digit() => {
                    let mut digits = String::new();

                    while let Some(next) = chars.peek().copied() {
                        if next.is_ascii_digit() {
                            digits.push(next);
                            chars.next();
                        } else {
                            break;
                        }
                    }

                    match chars.peek().copied() {
                        Some('>') | Some('<') => {
                            let fd = digits.parse::<u8>().map_err(|_| {
                                ShellError::message("invalid file descriptor number")
                            })?;
                            tokens.push(Token::IoNumber(fd));
                        }
                        _ => {
                            tokens.push(Token::Word(Word::literal(digits)));
                        }
                    }
                }
                _ => {
                    let word = self.read_word(&mut chars)?;
                    if !word.segments.is_empty() {
                        tokens.push(Token::Word(word));
                    }
                }
            }
        }

        Ok(tokens)
    }

    fn read_word<I>(&self, chars: &mut std::iter::Peekable<I>) -> ShellResult<Word>
    where
        I: Iterator<Item = char>,
    {
        let mut segments = Vec::new();
        let mut literal = String::new();

        while let Some(ch) = chars.peek().copied() {
            match ch {
                c if c.is_whitespace() => break,
                '|' | '&' | ';' | '>' | '<' | '(' | ')' | '{' | '}' => break,
                '\'' => {
                    flush_literal(&mut literal, &mut segments, QuoteKind::Unquoted);
                    chars.next();
                    self.read_single_quoted(chars, &mut segments)?;
                }
                '"' => {
                    flush_literal(&mut literal, &mut segments, QuoteKind::Unquoted);
                    chars.next();
                    self.read_double_quoted(chars, &mut segments)?;
                }
                '\\' => {
                    chars.next();
                    match chars.next() {
                        Some(c) => literal.push(c),
                        None => {
                            return Err(ShellError::message("unterminated escape sequence"));
                        }
                    }
                }
                '$' => {
                    flush_literal(&mut literal, &mut segments, QuoteKind::Unquoted);
                    chars.next();
                    self.read_dollar_expression(chars, &mut segments, QuoteKind::Unquoted)?
                }
                other => {
                    chars.next();
                    literal.push(other);
                }
            }
        }

        flush_literal(&mut literal, &mut segments, QuoteKind::Unquoted);

        Ok(Word::new(segments))
    }

    fn read_single_quoted<I>(
        &self,
        chars: &mut std::iter::Peekable<I>,
        segments: &mut Vec<WordSegment>,
    ) -> ShellResult<()>
    where
        I: Iterator<Item = char>,
    {
        let mut text = String::new();

        loop {
            match chars.next() {
                Some('\'') => break,
                Some(c) => text.push(c),
                None => {
                    return Err(ShellError::message("unterminated single-quoted string"));
                }
            }
        }

        if !text.is_empty() {
            segments.push(WordSegment::Literal {
                text,
                quote: QuoteKind::SingleQuoted,
            });
        }

        Ok(())
    }

    fn read_double_quoted<I>(
        &self,
        chars: &mut std::iter::Peekable<I>,
        segments: &mut Vec<WordSegment>,
    ) -> ShellResult<()>
    where
        I: Iterator<Item = char>,
    {
        let mut literal = String::new();

        loop {
            match chars.peek().copied() {
                Some('"') => {
                    chars.next();
                    break;
                }
                Some('\\') => {
                    chars.next();
                    match chars.next() {
                        Some('"') => literal.push('"'),
                        Some('\\') => literal.push('\\'),
                        Some('$') => {
                            flush_literal(&mut literal, segments, QuoteKind::DoubleQuoted);
                            chars.next();
                            self.read_dollar_expression(chars, segments, QuoteKind::DoubleQuoted)?;
                        }
                        Some(other) => {
                            literal.push('\\');
                            literal.push(other);
                        }
                        None => {
                            return Err(ShellError::message(
                                "unterminated escape in double-quoted string",
                            ));
                        }
                    }
                }
                Some('$') => {
                    flush_literal(&mut literal, segments, QuoteKind::DoubleQuoted);
                    chars.next();
                    self.read_dollar_expression(chars, segments, QuoteKind::DoubleQuoted)?;
                }
                Some(c) => {
                    chars.next();
                    literal.push(c);
                }
                None => {
                    return Err(ShellError::message("unterminated double-quoted string"));
                }
            }
        }

        flush_literal(&mut literal, segments, QuoteKind::DoubleQuoted);

        Ok(())
    }

    fn read_variable<I>(
        &self,
        chars: &mut std::iter::Peekable<I>,
        segments: &mut Vec<WordSegment>,
        quote: QuoteKind,
    ) -> ShellResult<()>
    where
        I: Iterator<Item = char>,
    {
        match chars.peek().copied() {
            Some('?') => {
                chars.next();
                segments.push(WordSegment::LastStatus { quote });
                Ok(())
            }
            Some(c) if is_var_start(c) => {
                let mut name = String::new();

                while let Some(c) = chars.peek().copied() {
                    if is_var_continue(c) {
                        name.push(c);
                        chars.next();
                    } else {
                        break;
                    }
                }

                segments.push(WordSegment::Variable { name, quote });
                Ok(())
            }
            _ => {
                segments.push(WordSegment::Literal {
                    text: "$".to_string(),
                    quote,
                });
                Ok(())
            }
        }
    }

    fn read_dollar_expression<I>(
        &self,
        chars: &mut std::iter::Peekable<I>,
        segments: &mut Vec<WordSegment>,
        quote: QuoteKind,
    ) -> ShellResult<()>
    where
        I: Iterator<Item = char>,
    {
        match chars.peek().copied() {
            Some('(') => {
                chars.next();
                let expr = self.read_command_substitution(chars)?;
                segments.push(WordSegment::CommandSubstitution { expr, quote });
                Ok(())
            }
            _ => self.read_variable(chars, segments, quote),
        }
    }

    fn read_command_substitution<I>(
        &self,
        chars: &mut std::iter::Peekable<I>,
    ) -> ShellResult<Box<ShellExpr>>
    where
        I: Iterator<Item = char>,
    {
        let mut out = String::new();
        let mut depth = 1usize;

        while let Some(ch) = chars.next() {
            match ch {
                '\'' => {
                    out.push(ch);
                    self.read_raw_single_quoted(chars, &mut out)?;
                }
                '"' => {
                    out.push(ch);
                    self.read_raw_double_quoted(chars, &mut out)?;
                }
                '\\' => {
                    out.push(ch);
                    match chars.next() {
                        Some(next) => out.push(next),
                        None => {
                            return Err(ShellError::message("unterminated command substitution"));
                        }
                    }
                }
                '$' if chars.peek() == Some(&'(') => {
                    out.push('$');
                    out.push('(');
                    chars.next();
                    depth += 1;
                }
                '(' => {
                    out.push(ch);
                }
                ')' => {
                    depth -= 1;
                    if depth == 0 {
                        return parse_command_substitution_expr(&out);
                    }
                    out.push(ch);
                }
                other => out.push(other),
            }
        }

        Err(ShellError::message("unterminated command substitution"))
    }

    fn read_raw_single_quoted<I>(
        &self,
        chars: &mut std::iter::Peekable<I>,
        out: &mut String,
    ) -> ShellResult<()>
    where
        I: Iterator<Item = char>,
    {
        loop {
            match chars.next() {
                Some('\'') => {
                    out.push('\'');
                    return Ok(());
                }
                Some(c) => out.push(c),
                None => return Err(ShellError::message("unterminated single-quoted string")),
            }
        }
    }

    fn read_raw_double_quoted<I>(
        &self,
        chars: &mut std::iter::Peekable<I>,
        out: &mut String,
    ) -> ShellResult<()>
    where
        I: Iterator<Item = char>,
    {
        loop {
            match chars.next() {
                Some('"') => {
                    out.push('"');
                    return Ok(());
                }
                Some('\\') => {
                    out.push('\\');
                    match chars.next() {
                        Some(next) => out.push(next),
                        None => {
                            return Err(ShellError::message(
                                "unterminated escape in double-quoted string",
                            ));
                        }
                    }
                }
                Some(c) => out.push(c),
                None => return Err(ShellError::message("unterminated double-quoted string")),
            }
        }
    }
}

fn flush_literal(literal: &mut String, segments: &mut Vec<WordSegment>, quote: QuoteKind) {
    if !literal.is_empty() {
        segments.push(WordSegment::Literal {
            text: std::mem::take(literal),
            quote,
        });
    }
}

fn is_var_start(c: char) -> bool {
    c == '_' || c.is_ascii_alphabetic()
}

fn is_var_continue(c: char) -> bool {
    c == '_' || c.is_ascii_alphanumeric()
}

fn parse_command_substitution_expr(source: &str) -> ShellResult<Box<ShellExpr>> {
    match Parser::default()
        .parse(source)
        .map_err(|err| ShellError::message(err.to_string()))?
    {
        ParsedCommand::Expr(expr) | ParsedCommand::Background(expr) => Ok(Box::new(expr)),
        ParsedCommand::Empty => Ok(Box::new(ShellExpr::Command(CommandNode::Simple(
            SimpleCommand::new(Vec::new()),
        )))),
    }
}