aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/parse.c
blob: b61ac3c7435c4db983aa20b54587d248bf21ff65 (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
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#include "rc.h"

/* TODO: better error messages */

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

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

/* anything that is not listed will automatically terminate parsing the given command */
static uchar prectab[256] = {
    [Tif]     = 1, [Tfor]      = 1, [Tswitch] = 1, /* NOTE: we give else lower precedence than if [Telse] = 1, */
    [Tandand] = 2, [Toror]     = 2,
    [Tbang]   = 3, [Tsubshell] = 3,
    [Tpipe]   = 4,
    [Tcarot]  = 5,
    [Tdol]    = 6, [Tcount]    = 6, [Tquote] = 6,
    [Tsub]    = 7,
};

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

static
int
lookahead(void)
{
    int tok;

    if (nextt != EOF)
        return nextt;

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

static
int
advance(void)
{
    int tok = lookahead();
    lastt = nextt, nextt = EOF;
    node  = nil;

    return tok;
}

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

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

/* forward declarations */
static Tree *word(void);
static Tree *words(void);
static Tree* body(int c);
static Tree *comword(void);
static Tree *cmd(int prec);

/* implementations */

/* 
 * TODO: 
 * i don't like all this branching.
 * think of a better way
 */

static
Tree*
case_or_cmd(int c)
{
    Tree *t;
    if (!c || !nextis(Tcase))
        return cmd(1);

    t = words();
    if (!nextis(';') && !nextis('\n'))
        rcerror("case: missing terminator: recieved %d", nextt);

    t = tree2(Tcase, t, body(0));
    pfmt(errio, "%t\n", t);
    
    return t;
}

static
Tree*
body(int c)
{
    int tok;
    Tree *l, *r;

    skipnl();
    l = case_or_cmd(c);
loop:
    switch((tok=lookahead())){
    case '&':
        l = tree1('&', l);
        /* fallthrough */
    case ';': case '\n':
        advance();
        /* fallthrough */
    case Tcase:
        if ((r = case_or_cmd(c))) {
            l = tree2(';', l, r);
            goto loop;
        }
        /* fallthrough */
    default:
        ;
    }

    return l;
}

static
Tree*
brace(int c)
{
    Tree *t;

    if (!nextis('{'))
        rcerror("brace: expected { found: %c", nextt);
    t = tree1(Tbrace, body(c)); 
    if (!nextis('}'))
        rcerror("brace: expected } found: %c", nextt);

    return t;
}

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

    if (!nextis('('))
        rcerror("not a paren");
    t = tree1(Tparen, body(0)); 
    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 Tdup:
        t = node;
        advance();
        break;
    case Tredir:
        t = node;
        advance();
        t = hang1(t, (t->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(Twords, t, tt);
    
    return t;
}

/*
 * NOTE: we divergence from Duff's yacc grammar here.
 * he has [dol|count|"]->word, we have [dol|count]->sword
 * calling sword ensures we don't cat strings
 * this was done in Tom's version by setting precedence
 */
static
Tree*
comword(void)
{
    int tok;
    Tree *t, *tt;

    switch(tok=lookahead()){
    case Tdol:
        advance();
        t = sword();
        if(nextis('(')) {
            t = tree2(Tsub, t, words());
            if (!nextis(')'))
                rcerror("malformed index expression");
        }
        return tree1(Tdol, t);
    case Tquote:
        return tree1(Tquote, sword());
    case Tcount:
        advance();
        return tree1(Tcount, sword());
    case Ttick:
        advance();
        return tree1(Ttick, brace(0));
    case Tlparen:
        return paren();
    case Tredir: 
        advance();
        t = hang1(node, brace(0));
        t->type = Tpipefd;
        return t;
    case Tword:
        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('=')) {
        tt = word();
        return tree3(Teq, t, tt, cmd(prectab[Tbang]));
    }

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

    return simplehang(t);
}

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

    switch(tok=lookahead()) {
    case Tif:
        advance();
        t  = paren(); 
        skipnl();
        tt = cmd(prectab[Tif]);
        if (nextis(Telse)) {
            skipnl();
            t  = tree3(Tif, t, tt, cmd(prectab[Tif]));
        } else
            t  = tree3(Tif, t, tt, nil);
        return t;
    case Telse:
        rcerror("invalid hanging else");
        break;

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

    case Tfor:
        advance();

        if (!nextis('('))
            rcerror("for: missing opening paren");
        t = word();
        if (nextis(Tin)) {
            advance();
            tt = words();
            t  = tree3(Tfor, t, tt, nil);
        } else
            t  = tree3(Tfor, t, nil, nil);
        if (!nextis(')'))
            rcerror("for: missing closing paren");

        skipnl();
        tt = cmd(prectab[Tfor]);
        t->child[2] = tt;
        return t;

    case Twhile:
        advance();
        t = paren();
        skipnl();
        tt = cmd(1);
        return tree2(Twhile, t, tt); 

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

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

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

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

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

    case Tredir: /* fallthrough */
    case Tdup:
        t  = redir();
        tt = cmd(prectab[Tbang]); 
        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 == Tpipe)
            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': 
        advance();
    case EOF:
        pfmt(errio, "%t\n", t);
        break;
    default:
        if (tok > 0x20)
            rcerror("unrecognized token: %c[%d]", tok, tok);
        else
            rcerror("unrecognized token: %d", tok, tok);
    }
    return tok != EOF;
}