-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.y
More file actions
173 lines (148 loc) · 3.2 KB
/
shell.y
File metadata and controls
173 lines (148 loc) · 3.2 KB
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
/*
* 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>
#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 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 {
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
{
}
;
io_modifier:
GREATGREAT WORD
| GREAT WORD
{
Shell::TheShell->_pipeCommand->_outFile = $2;
}
| GREATGREATAMPERSAND WORD
| GREATAMPERSAND WORD
| LESS WORD
;
io_modifier_list:
io_modifier_list io_modifier
| /*empty*/
;
background_optional:
AMPERSAND
| /*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 {printf("while\n"); }
| 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:
WHILE LBRACKET arg_list RBRACKET SEMI DO command_list DONE
;
for_command:
FOR WORD IN arg_list SEMI DO command_list DONE
;
%%
void
yyerror(const char * s)
{
fprintf(stderr,"%s", s);
}
#if 0
main()
{
yyparse();
}
#endif