-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.y
273 lines (249 loc) · 6.23 KB
/
shell.y
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
/*
* CS-252
* shell.y: parser for shell
*
* This parser compiles the following grammar:
*
* cmd [arg]* [> filename]
*
* you must extend it to understand the complete shell grammar
*
*/
%code requires
{
#include <string>
#include <cstring>
#if __cplusplus > 199711L
#define register // Deprecated in C++11 so remove the keyword
#endif
}
%union
{
char *string_val;
// Example of using a c++ type in yacc
std::string *cpp_string;
}
%token <cpp_string> WORD
%token NOTOKEN GREAT GREATGREAT TWOGREAT GREATAMPERSAND GREATGREATAMPERSAND
%token AMPERSAND PIPE LESS NEWLINE IF FI THEN LBRACKET RBRACKET SEMI
%token DO DONE WHILE FOR IN
%{
//#define yylex yylex
#include <cstdio>
#include "Shell.hh"
void yyerror(const char * s);
int yylex();
%}
%%
goal: command_list;
arg_list:
arg_list WORD {
Shell::TheShell->_simpleCommand->insertArgument( $2 );
}
| /*empty string*/
;
cmd_and_args:
WORD {
char * w = (char *) $1->c_str();
//printf("%s\n", w);
if (strcmp(w, "exit") == 0) {
printf("Good bye!!\n");
exit(1);
}
Shell::TheShell->_simpleCommand = new SimpleCommand();
Shell::TheShell->_simpleCommand->insertArgument( $1 );
}
arg_list
;
pipe_list:
cmd_and_args
{
Shell::TheShell->_pipeCommand->insertSimpleCommand(
Shell::TheShell->_simpleCommand );
Shell::TheShell->_simpleCommand = new SimpleCommand();
}
| pipe_list PIPE cmd_and_args
{
Shell::TheShell->_pipeCommand->insertSimpleCommand(
Shell::TheShell->_simpleCommand );
Shell::TheShell->_simpleCommand = new SimpleCommand();
}
;
io_modifier:
GREATGREAT WORD // append std out
{
if (Shell::TheShell->_pipeCommand->_outFile != NULL) {
printf("Ambiguous output redirect.\n");
exit(1);
} else {
Shell::TheShell->_pipeCommand->_outFile = $2;
Shell::TheShell->_pipeCommand->_append = true;
}
}
| GREAT WORD //redirect std out
{
if (Shell::TheShell->_pipeCommand->_outFile != NULL) {
printf("Ambiguous output redirect.\n");
exit(0);
} else {
Shell::TheShell->_pipeCommand->_outFile = $2;
}
}
| TWOGREAT WORD // redirect std err 2
{
Shell::TheShell->_pipeCommand->_errFile = new std::string($2->c_str());
}
| GREATGREATAMPERSAND WORD // redirect append to err and out
{
if (Shell::TheShell->_pipeCommand->_outFile != NULL) {
printf("Ambiguous output redirect.\n");
exit(1);
} else {
Shell::TheShell->_pipeCommand->_outFile = $2;
Shell::TheShell->_pipeCommand->_errFile = new std::string($2->c_str());
Shell::TheShell->_pipeCommand->_append = true;
}
}
| GREATAMPERSAND WORD //redirect to err and out
{
if (Shell::TheShell->_pipeCommand->_outFile != NULL) {
printf("Ambiguous output redirect.\n");
exit(1);
} else {
Shell::TheShell->_pipeCommand->_outFile = $2;
Shell::TheShell->_pipeCommand->_errFile = new std::string($2->c_str());
Shell::TheShell->_pipeCommand->_append = false;
}
}
| LESS WORD //redirect std in
{
if (Shell::TheShell->_pipeCommand->_inFile != NULL) {
printf("Ambiguous output redirect.\n");
exit(1);
} else {
Shell::TheShell->_pipeCommand->_inFile = $2;
}
}
;
io_modifier_list:
io_modifier_list io_modifier
| /*empty*/
;
background_optional:
AMPERSAND
{
Shell::TheShell->_pipeCommand->_background = true;
}
| /*empty*/
;
SEPARATOR:
NEWLINE
| SEMI
;
command_line:
pipe_list io_modifier_list background_optional SEPARATOR
{
Shell::TheShell->_listCommands->
insertCommand(Shell::TheShell->_pipeCommand);
Shell::TheShell->_pipeCommand = new PipeCommand();
}
| if_command SEPARATOR
{
Shell::TheShell->_listCommands->
insertCommand(Shell::TheShell->_ifCommand);
}
| while_command SEPARATOR
{
Shell::TheShell->_listCommands->
insertCommand(Shell::TheShell->_whileCommand);
}
| for_command SEPARATOR
{
printf("for\n");
}
| SEPARATOR /*accept empty cmd line*/
| error SEPARATOR {yyerrok; Shell::TheShell->clear(); }
; /*error recovery*/
command_list :
command_line
{
Shell::TheShell->execute();
}
|
command_list command_line
{
Shell::TheShell->execute();
}
; /* command loop*/
if_command:
IF LBRACKET
{
Shell::TheShell->_level++;
Shell::TheShell->_ifCommand = new IfCommand();
}
arg_list RBRACKET SEMI THEN
{
Shell::TheShell->_ifCommand->insertCondition(
Shell::TheShell->_simpleCommand);
Shell::TheShell->_simpleCommand = new SimpleCommand();
}
command_list FI
{
Shell::TheShell->_level--;
Shell::TheShell->_ifCommand->insertListCommands(
Shell::TheShell->_listCommands);
Shell::TheShell->_listCommands = new ListCommands();
}
;
while_command:
IF LBRACKET
{
Shell::TheShell->_level++;
Shell::TheShell->_ifCommand = new IfCommand();
}
arg_list RBRACKET SEMI THEN
{
Shell::TheShell->_ifCommand->insertCondition(
Shell::TheShell->_simpleCommand);
Shell::TheShell->_simpleCommand = new SimpleCommand();
}
command_list FI
{
Shell::TheShell->_level--;
Shell::TheShell->_ifCommand->insertListCommands(
Shell::TheShell->_listCommands);
Shell::TheShell->_listCommands = new ListCommands();
}
;
for_command:
IF LBRACKET
{
Shell::TheShell->_level++;
Shell::TheShell->_ifCommand = new IfCommand();
}
arg_list RBRACKET SEMI THEN
{
Shell::TheShell->_ifCommand->insertCondition(
Shell::TheShell->_simpleCommand);
Shell::TheShell->_simpleCommand = new SimpleCommand();
}
command_list FI
{
Shell::TheShell->_level--;
Shell::TheShell->_ifCommand->insertListCommands(
Shell::TheShell->_listCommands);
Shell::TheShell->_listCommands = new ListCommands();
}
;
%%
void
yyerror(const char * s)
{
fprintf(stderr,"%s", s);
}
#if 0
main()
{
yyparse();
}
#endif