-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmake_parse.y
More file actions
238 lines (197 loc) · 5.35 KB
/
make_parse.y
File metadata and controls
238 lines (197 loc) · 5.35 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
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
%{
#define YYSTYPE void*
#include <list>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdexcept>
#include <sstream>
#include <utility>
#include "make_rules.h"
int yylex(void);
void yyerror(const char *s);
void print_rule( void *);
void * make_rule( void *, void *);
void * make_rule_header( void *, void *);
void * make_dependencies( void *, void *);
void * new_stringlist();
void * add_stringlist( void *, void *);
#define BASIC_LINE 10
static char bufferChar;
static char *inputBuffer;
static int inputBufferSize;
static unsigned int inputBufferMaxSize;
static int inputBufferOffset;
static FILE *f;
%}
%token RULECOMMAND
%token ID
%token END
%%
program: END
| statement program
;
statement:
blankline
| rule { }
blankline:
'\n'
rule:
ruleheader rulebody { $$ = make_rule($1, $2); }
;
ruleheader:
targetlist ':' dependencies '\n' { $$ = make_rule_header( $1, $3 ); }
;
dependencies:
sourcelist { $$ = make_dependencies($1, NULL); }
| sourcelist '|' sourcelist { $$ = make_dependencies($1, $3); }
;
rulebody:
{ $$ = new_stringlist(); }
| rulebody RULECOMMAND { $$ = add_stringlist($1, $2); }
;
targetlist: { $$ = new_stringlist(); }
| targetlist ID { $$ = add_stringlist($1, $2); }
;
sourcelist: { $$ = new_stringlist(); }
| sourcelist ID { $$ = add_stringlist($1, $2); }
;
%%
bool isSpecial(char c)
{
return strchr( "|:\n\t", c ) != NULL;
}
bool isidchar(char c)
{
return !isSpecial(c) && c != ' ';
}
void eatSpace()
{
// Eat spaces from the beginning of the buffer
while( inputBufferOffset < inputBufferSize && inputBuffer[inputBufferOffset] == ' ') {
inputBufferOffset ++;
}
}
int yylex()
{
if( inputBufferOffset != inputBufferSize ) {
inputBuffer[ inputBufferOffset ] = bufferChar;
}
eatSpace();
// See if we have a line
while( inputBufferOffset == inputBufferSize ) {
// Read new line
inputBufferOffset = 0;
if( feof(f) ) return END;
while( !feof( f ) ) {
fgets(inputBuffer + inputBufferOffset, inputBufferMaxSize - inputBufferOffset, f);
inputBufferSize = strlen( inputBuffer );
if( inputBufferSize == 0 || inputBuffer[ inputBufferSize - 1 ] != '\n') {
inputBufferOffset = inputBufferMaxSize - 1;
inputBufferMaxSize *= 2;
inputBuffer = (char *)realloc( inputBuffer, inputBufferMaxSize );
} else {
break;
}
}
inputBufferOffset = 0;
// If the first character is a tab, this is a command
if( inputBuffer[0] == '\t' ) {
int length;
yylval = (void *)(inputBuffer + 1);
// Knock any carriage returns off the end
length = strlen( inputBuffer ) - 1;
while( length > 0 && strchr("\r\n", inputBuffer[ length ] )) inputBuffer[ length-- ] = 0;
// Consume the whole string
inputBufferOffset = inputBufferSize;
return RULECOMMAND;
}
eatSpace();
}
// Choose the token type based on the first character
if( isSpecial( inputBuffer[ inputBufferOffset ] ) ) {
bufferChar = inputBuffer[ inputBufferOffset + 1 ];
return inputBuffer[ inputBufferOffset ++ ];
} else {
// It's an identifier. Keep parsing as long as we see alphanumerics
int newBufferOffset = inputBufferOffset;
while( newBufferOffset < inputBufferSize && isidchar(inputBuffer[ newBufferOffset ] ) ) {
newBufferOffset ++;
}
yylval = inputBuffer + inputBufferOffset;
bufferChar = inputBuffer[ newBufferOffset ];
inputBuffer[ newBufferOffset ] = 0;
inputBufferOffset = newBufferOffset;
return ID;
}
}
void parse_makefile( std::string filename )
{
inputBufferOffset = BASIC_LINE;
inputBufferSize = BASIC_LINE;
inputBufferMaxSize = BASIC_LINE;
inputBuffer = (char *)malloc( BASIC_LINE );
if( inputBuffer == NULL ) {
throw std::runtime_error( "Out of memory" );
}
f = fopen( filename.c_str(), "rb" );
if( f == NULL ) {
throw std::runtime_error( "Could not open makefile" );
}
try {
yyparse();
} catch( const std::exception &e ) {
std::stringstream ss;
ss << "Parse error while reading " << filename;
throw(std::runtime_error(ss.str()));
}
free( inputBuffer );
fclose( f );
}
void yyerror(const char *s)
{
throw std::runtime_error( "Parse error" );
}
void print_rule( void *rule)
{
((Rule *)rule)->print();
}
void * make_rule( void *rule, void *commands)
{
((Rule *)rule)->addCommandList( (std::list<std::string> *)commands );
return rule;
}
void * make_rule_header( void *targets, void *dependencies)
{
std::list<std::string>::iterator i;
Rule *r = new MakeRule;
r->addTargetList( (std::list<std::string> *)targets );
if( dependencies != NULL ) {
std::pair<std::list<std::string> *,std::list<std::string> *> *deps = (std::pair<std::list<std::string> *, std::list<std::string> *> *)dependencies;
// Throw away order-only, we don't use them at this point
if( deps->second != NULL ) delete deps->second;
if( deps->first != NULL ) {
for(i = deps->first->begin(); i != deps->first->end(); i ++ ) {
r->addDependency( *i, true );
}
}
delete deps;
}
return r;
}
void * make_dependencies( void *main, void *orderOnly)
{
// Early out when we don't need to construct anything
if( main == NULL && orderOnly == NULL ) return NULL;
return new std::pair<void *, void *>(main,orderOnly);
}
void * new_stringlist()
{
return new std::list<std::string>;
}
void * add_stringlist( void *list, void *s)
{
((std::list<std::string> *)list)->push_back((std::string)(char *)s);
return list;
}