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

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

%token <str> WORD STRING error
%token NEWLINE PIPE AND OR

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

%%

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

runcommand:
    command NEWLINE {
        $$ = $1;
        printf("running command: \n");
        runcmd($$);
    }
    | NEWLINE { $$ = NULL; }
    ;

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

part:
    part WORD {
        $$ = $1;
        $$->argc++;
        $$->args = realloc($$->args, ($$->argc) * sizeof(char *));
        $$->args[$$->argc - 1] = $2;
        $$->args[$$->argc] = NULL;
    }
    | part STRING {
        $$ = $1;
        $$->argc++;
        $$->args = realloc($$->args, ($$->argc) * sizeof(char *));
        $$->args[$$->argc - 1] = $2;
        $$->args[$$->argc] = NULL;
    }
    | WORD {
        $$ = newcmd();
        $$->args = malloc(2 * sizeof(char *));
        $$->args[$$->argc++] = $1;
        $$->args[$$->argc] = NULL;
    }
    | STRING {
        $$ = newcmd();
        $$->args = malloc(2 * sizeof(char *));
        $$->args[$$->argc++] = $1;
        $$->args[$$->argc] = NULL;
    }
    ;

separator:
    PIPE { $$ = CMD_TYPE_PIPE; }
    | AND { $$ = CMD_TYPE_AND; }
    | OR { $$ = CMD_TYPE_OR; }
    ;

%%