aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/parse.c
blob: d963c1248e23d2c25e86a37166bea447b6cc95dc (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
428
429
430
#include "rc.h"

// -----------------------------------------------------------------------
// global data

static int lasta, nexta=EOF;
static Tree *node; /* if token was lexed as a tree node (redirs and words), its here */

static uchar prectab[256] = {
    [Kif]     = 1, [Kfor]   = 1, [Kswitch] = 1, [Kelse] = 1,
    [Aandand] = 2, [Aoror]  = 2,
    [Kbang]   = 3, [Ksubsh] = 3,
    [Apipe]   = 4,
    [Acarot]  = 5,
    [Adol]    = 6, [Acount] = 6, [Aquote] = 6,
    [Asub]    = 7,
};

// -----------------------------------------------------------------------
// helpers

static
int
lookahead(void)
{
    int tok;

    if (nexta != EOF)
        return nexta;

    tok = lex(&node);
    return nexta = tok;
}

static
int
advance(void)
{
    int tok = lookahead();
    lasta = nexta, nexta = EOF;
    node  = nil;

    return tok;
}

static
int
nextis(int tok)
{
    if (lookahead() == tok) {
        advance();
        return 1;
    }
    return 0;
}

// -----------------------------------------------------------------------
// subparsers

static Tree *word(void);
static Tree *comword(void);
static Tree *cmd(int prec);

static
Tree*
body(void)
{
    int tok;
    Tree *l, *r;
    l = cmd(1);
loop:
    switch((tok=lookahead())){
    case '&':
        l = tree1('&', l);
        /* fallthrough */
    case ';': case '\n':
        advance();
        r = cmd(1);
        l = tree2(';', l, r);
        goto loop;
    default:
        ;
    }

    return l;
}

static
Tree*
brace(void)
{
    Tree *t;

    if (!nextis('{'))
        rcerror("not a brace");
    t = tree1(Abrace, body()); 
    if (!nextis('}'))
        rcerror("unmatched brace");

    return t;
}

static
Tree*
paren(void)
{
    Tree *t;

    if (!nextis('('))
        rcerror("not a paren");
    t = tree1(Aparen, body()); 
    if (!nextis(')'))
        rcerror("unmatched paren");

    return t;
}

/* TODO: fill in */
static
Tree*
heredoc(Tree* t)
{
    return t;
}

static
Tree*
redir(void)
{
    int tok;
    Tree *t;

    switch (tok = lookahead()) {
    case Adup:
        t = node;
        advance();
        break;
    case Aredir:
        advance();
        t = hang1(node, (node->redir.type == Rhere) ? heredoc(word()) : word());
        break;
    default:
        t = nil;
    }

    return t;
}

static
Tree*
epilog(void)
{
    Tree *t, *tt;

    t = redir();
    while((tt = redir()))
        t = hang2(t, t->child[0], tt);

    return t;
}

static
Tree*
sword(void)
{
    int tok;
    if (Kstart < (tok=lookahead()) && tok < Kend)
        return node;

    return comword();
}

static
Tree*
word(void)
{
    int  tok;
    Tree  *t;

    t = sword();
    while(nextis('^'))
        t = tree2('^', t, sword());

    return t;
}


static
Tree*
words(void)
{
    Tree *t, *tt;
    t = word();
    while((tt=word()))
        t = tree2(Awords, t, tt);
    
    return t;
}

static
Tree*
comword(void)
{
    int tok;
    Tree *t, *tt;

    switch(tok=lookahead()){
    case Adol:
        advance();
        t = word();
        if(nextis('(')) {
            t = tree2(Asub, t, words());
            if (!nextis(')'))
                rcerror("malformed index expression");
        }
        return tree1(Adol, t);
    case Acount:
        advance();
        return tree1(Acount, word());
    case Atick:
        advance();
        return tree1(Atick, brace());
    case Alparen:
        return paren();
    case Aredir: 
        advance();
        t = hang1(node, brace());
        t->type = Apipefd;
        return t;
    case Aword:
        t = node;
        advance();
        return t; 
    }
    return nil;
}

static
Tree*
first(void)
{
    int tok;
    Tree *t;

    t = comword();
    while(nextis('^')) {
        t = tree2('^', t, word());
    }

    return t;
}

/* simple _or_ assignment */
static
Tree*
simple_or_assign(void)
{
    int tok;
    Tree *t, *tt;

    /* can't continue */
    if (!(t = first()))
        return nil;

    /* is an assignment */
assign:
    if(nextis('='))
        return tree3(Aeq, t, word(), cmd(prectab[Kbang]));

    /* is a 'simple' */
simple:
    switch ((tok=lookahead())) {
    case Aredir:
    case Adup:
        t  = tree2(Aargs, t, redir());
        goto simple;
    default:
        if ((tt = word())) {
            t  = tree2(Aargs, t, tt);
            goto simple;
        }
        /* fallthrough */
    }

    return simplehang(t);
}

static
Tree*
opand(void)
{
    int tok;
    Tree *t, *tt;

    switch(tok=lookahead()) {
    case Kif:
        advance();
        t  = paren(); 
        skipnl();
        tt = cmd(prectab[Kif]);
        t  = tree2(Kif, t, tt);
        return t;

    case Kelse:
        advance();
        skipnl();
        t = tree1(Kelse, cmd(prectab[Kelse]));
        return t;

    case Kfor:
        advance();
        if (!nextis('('))
            rcerror("malformed for statement");
        t = word();
        if (nextis(Kin)) {
            advance();
            tt = words();
            t  = tree3(Kin, t, tt, nil);
        } else
            t  = tree3(Kin, t, nil, nil);
        skipnl();
        tt = cmd(prectab[Kfor]);
        t->child[2] = tt;
        return t;

    case Kswitch:
        advance();
        t = word();
        skipnl();
        tt = brace();
        t = tree2(Kswitch, t, tt);
        return t;

    case Kfunc:
        advance();
        t = words();
        if ((tok=lookahead()) == '{') {
            tt = brace();
            t  = tree2(Kfunc, t, tt);
        } else
            t  = tree1(Kfunc, t);
        return t;

    case Ksubsh:
        advance();
        t = tree1(Ksubsh, cmd(prectab[Ksubsh]));
        return t;

    case Kbang:
        advance();
        t = tree1(Kbang, cmd(prectab[Kbang]));
        return t;

    case Ktwiddle:
        advance();
        tt = word();
        t  = tree2(Ktwiddle, tt, words());
        return t;

    case Albrace:
        t  = brace();
        tt = epilog();
        return epihang(t, tt);

    case Aredir: /* fallthrough */
    case Adup:
        t  = redir();
        tt = cmd(prectab[Kbang]); 
        t  = hang2(t, t->child[0], tt);
        return t;
    }

    return simple_or_assign();
}

static
Tree *
cmd(int prec)
{
    int np, tok;
    Tree *l, *r, *p;

    if (!(l = opand()))
        return nil;

    for(;;) { 
        tok = lookahead();
        np  = prectab[tok];
        if (np < prec)
            break;
        p = node;
        advance();
        r = cmd(np+1);
        if (tok == Apipe)
            l = hang2(p, l, r);
        else
            l = tree2(tok, l, r);
    }

    return l;
}

// -----------------------------------------------------------------------
// main function

int
parse(void)
{
    int tok;
    Tree *t, *tt;

    t = cmd(1); 
loop:
    switch(tok=lookahead()) {
    case '&':
        t = tree1('&', t);
        /* fallthrough */
    case ';': 
        advance();
        tt = cmd(1);
        t  = tree2(';', t, tt);
        goto loop;
    case '\n': case EOF:
        pfmt(errio, "%t", t);
        break;
    default:
        rcerror("unrecognized token: %d", tok);
    }
    return 0;
}