aboutsummaryrefslogtreecommitdiffstats
path: root/syntax.y
blob: 7f6745ecf9fd857b620bc6f1e5911c7879db4db4 (plain) (blame)
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
%{
#include "cmd.h"
#include "lex.yy.c"
#include <stdio.h>

%}

%union {
    char *str;
    struct Command *cmd;
    CommandType cmdType;
    int fd;
}

%token <str> WORD STRING error FD_REDIRECT
%token NEWLINE PIPE AND OR REDIRECT_IN REDIRECT_OUT BACKGROUND LPAREN RPAREN APPEND

%type <cmd> line command part runcommand
%type <cmdType> separator

%locations
%nonassoc WORD
%nonassoc BACKGROUND
%nonassoc REDIRECT_IN REDIRECT_OUT

%%

line:
    runcommand line { /* empty */ }
    | /* empty */ { $$ = NULL; }
    ;

runcommand:
    command NEWLINE {
        $$ = $1;
        runCmd($$);
        showPrompt();
    }
    | NEWLINE {
        $$ = NULL;
        showPrompt();
    }
    ;

command:
    part {
        $$ = $1;
    }
    | part separator command {
        $$ = newCmd();
        $$->type = $2;
        $$->left = $1;
        $$->right = $3;
    }
    | LPAREN command RPAREN {
        $$ = $2;
    } 
    ;

separator:
    PIPE { $$ = CMD_PIPE; }
    | AND { $$ = CMD_AND; }
    | OR { $$ = CMD_OR; }
    ;

part:
    part WORD {
        $$ = $1;
        argInsert($$, $2, false);
    }
    | WORD {
        $$ = newCmd();
        argInsert($$, $1, false);
    }
    | part STRING {
        $$ = $1;
        argInsert($$, $2, true);
    }
    | STRING {
        $$ = newCmd();
        argInsert($$, $1, true);
    }
    | part REDIRECT_IN WORD {
        $$ = $1;
        $$->redirectFile[0] = $3;
    }
    | part REDIRECT_OUT WORD {
        $$ = $1;
        $$->redirectFile[1] = $3;
    }
    | part APPEND WORD {
        $$ = $1;
        $$->redirectFile[1] = $3;
        $$->redirectFD[1] = -1;
    }
    | part FD_REDIRECT {
        $$ = $1;
        $$->redirectFD[$2[0] - '0'] = $2[3] - '0';
    }
    | part BACKGROUND {
        $$ = $1;
        $$->background = true;
    }
    ;

%%