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

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

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

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

%%

line:
    command NEWLINE { $$ = $1; runcmd($$); }
    | NEWLINE { $$ = NULL; }
    ;

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

part:
    part WORD {
        $$ = $1;
        $$->argc++;
        $$->args = realloc($$->args, ($$->argc) * sizeof(char *));
        $$->args[$$->argc - 1] = $2;
        $$->args[$$->argc] = NULL;
        printf("word[%d] = %s\n", $$->argc-1,$$->args[$$->argc-1]);
    }
    | part STRING {
        $$ = $1;
        $$->argc++;
        $$->args = realloc($$->args, ($$->argc) * sizeof(char *));
        $$->args[$$->argc - 1] = $2;
        $$->args[$$->argc] = NULL;
    }
    | WORD {
        $$ = malloc(sizeof(Command));
        $$->type = CMD_TYPE_NORMAL;
        $$->args = malloc(2 * sizeof(char *));
        $$->args[0] = $1;
        $$->args[1] = NULL;
        $$->argc = 1;
        printf("word[%d] = %s\n", $$->argc-1,$$->args[$$->argc-1]);
        $$->left = $$->right = NULL;
    }
    | STRING {
        $$ = malloc(sizeof(Command));
        $$->type = CMD_TYPE_NORMAL;
        $$->args = malloc(2 * sizeof(char *));
        $$->args[0] = $1;
        $$->args[1] = NULL;
        $$->argc = 1;
        $$->left = $$->right = NULL;
    }
    ;

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

%%