-
Notifications
You must be signed in to change notification settings - Fork 0
/
print-command.c
57 lines (50 loc) · 1.19 KB
/
print-command.c
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
// UCLA CS 111 Lab 1 command printing, for debugging
#include "command.h"
#include "command-internals.h"
#include <stdio.h>
#include <stdlib.h>
static void
command_indented_print (int indent, command_t c)
{
switch (c->type)
{
case AND_COMMAND:
case SEQUENCE_COMMAND:
case OR_COMMAND:
case PIPE_COMMAND:
{
command_indented_print (indent + 2 * (c->u.command[0]->type != c->type),
c->u.command[0]);
static char const command_label[][3] = { "&&", ";", "||", "|" };
printf (" \\\n%*s%s\n", indent, "", command_label[c->type]);
command_indented_print (indent + 2 * (c->u.command[1]->type != c->type),
c->u.command[1]);
break;
}
case SIMPLE_COMMAND:
{
char **w = c->u.word;
printf ("%*s%s", indent, "", *w);
while (*++w)
printf (" %s", *w);
break;
}
case SUBSHELL_COMMAND:
printf ("%*s(\n", indent, "");
command_indented_print (indent + 1, c->u.subshell_command);
printf ("\n%*s)", indent, "");
break;
default:
abort ();
}
if (c->input)
printf ("<%s", c->input);
if (c->output)
printf (">%s", c->output);
}
void
print_command (command_t c)
{
command_indented_print (2, c);
putchar ('\n');
}