-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.y
More file actions
309 lines (273 loc) · 6.29 KB
/
parser.y
File metadata and controls
309 lines (273 loc) · 6.29 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
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
%{
int yylex();
%}
%{
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <stdbool.h>
#include <string.h>
#include "parser.tab.h"
#define TABSIZE 1000
#define true 1
#define false 0
extern char* var_names[TABSIZE];
extern int var_def[TABSIZE];
extern int n_of_names;
extern int install(char* txtParameter);
extern void reset();
// variables for the grammar file
int invalid = false; // just added for error checking
char* var_values[TABSIZE]; // array where all the values are stored
struct ForEach
{
int columnIndex;
char* operator;
int number;
};
struct ForEach for_each_values[TABSIZE];
int forEachValuesIndex;
int yyerror(const char *p)
{
fprintf(stderr, "%s\n", p); // print the error message
invalid = true;
return true;
}
void getLineFromPosition(const char* s, int* pos, char *line)
{
for(int i = 0; ;++i)
{
line[i] = s[*pos];
++(*pos);
if(line[i] == '\0')
return;
if(line[i] == '\n')
{
line[i+1]='\0';
return;
}
}
}
bool match(char* comparator, int colNumToCompare, int numberToCompare)
{
switch(*comparator)
{
case '>' :
return colNumToCompare > numberToCompare;
break;
case '>=' :
return colNumToCompare >= numberToCompare;
break;
case '==' :
return colNumToCompare == numberToCompare;
break;
case '<=' :
return colNumToCompare <= numberToCompare;
break;
case '<' :
return colNumToCompare < numberToCompare;
break;
default :
printf("error in match()");
}
return false;
}
int mathOperation(char* operator, int colNumToOperate, int numToOperate)
{
if (operator == '\0')
return colNumToOperate;
switch(*operator)
{
case '+' :
return colNumToOperate + numToOperate;
break;
case '-' :
return colNumToOperate - numToOperate;
break;
case '*' :
return colNumToOperate * numToOperate;
break;
case '/' :
if (numToOperate == 0)
{
printf("Divide by Zero Error");
return 0;
}
return colNumToOperate / numToOperate;
break;
case '^' :
return (int)pow(colNumToOperate, numToOperate);
break;
case '\0' :
return colNumToOperate;
break;
default :
printf("error in mathOperation()");
}
return false;
}
%}
%union {
/* this will be used for the yylval. */
/* it is a union since three data types will be used */
int num; // the number provided by the user
int index; // index of the variable name inside the array
char* str;
};
%start commands
%token <index> VARIABLE
%token <str> FILENAME
%token <num> NUMBER
%token <str> COMPARATOR
%token <str> OPERATOR
%token LOAD
%token DUMP
%token FILTER
%token BY
%token <num> COLUMNID
%token FOREACH
%token GENERATE
%token EOL
%type <str> load_filename
%type <str> dump_variable
%type <str> filter_by
%type <str> command
%type <str> assignment
%type <str> foreach_generate
%type <str> expression
%type <str> expressions
%type <str> math_expression
%type <str> columnid_math_expression
%%
commands: { }
| commands command EOL { }
;
command :
load_filename
|
dump_variable
|
assignment
|
filter_by
|
foreach_generate
;
load_filename:
LOAD FILENAME
{
FILE * f;
fopen_s(&f, $2, "rb");
fseek (f, 0, SEEK_END);
long length = ftell (f);
fseek (f, 0, SEEK_SET);
char * buffer = malloc (length + 1);
fread (buffer, 1, length, f);
buffer[length] = '\0';
fclose (f);
$$ = buffer;
}
;
dump_variable:
DUMP VARIABLE
{
printf(var_values[$2]);
}
;
filter_by:
FILTER VARIABLE BY COLUMNID NUMBER COMPARATOR NUMBER
{
char* variable = {var_values[$2]};
int colID = $5;
char* comparator = $6;
int numberToCompare = $7;
// get a line
int pos = 0;
char newString[256] = "";
do{
char line[256] = "";
getLineFromPosition(variable, &pos, line);
int colNumToCompare = atoi(&line[colID * 2]);
if (match(comparator, colNumToCompare, numberToCompare))
{
strcat_s(newString, 256, line);
}
}while(variable[pos] != '\0');
$$ = newString;
}
;
foreach_generate:
FOREACH VARIABLE GENERATE expressions
{
char* variable = {var_values[$2]};
// get a line
int pos = 0;
char newString[100000] = "";
do{
char lineFromVariable[256] = "";
getLineFromPosition(variable, &pos, lineFromVariable);
for (int i = 0; i < forEachValuesIndex; ++i)
{
struct ForEach foreach = for_each_values[i];
int columnIndex = foreach.columnIndex;
int colNumToOperate = atoi(&lineFromVariable[columnIndex * 2]);
int result = mathOperation(foreach.operator, colNumToOperate, foreach.number);
char buffer[100000] = "";
_itoa_s(result, buffer, 100000, 10);
strcat_s(newString, 100000, buffer);
if (i != forEachValuesIndex - 1)
strcat_s(newString, 100000, ",");
}
strcat_s(newString, 100000, "\n");
}while(variable[pos] != '\0');
$$ = newString;
forEachValuesIndex = 0;
}
expressions:
expression
|
expressions',' expression
;
expression:
math_expression
|
columnid_math_expression
;
math_expression:
COLUMNID NUMBER
{
struct ForEach forEach;
forEach.columnIndex = $2;
forEach.operator = '\0';
forEach.number = 0;
for_each_values[forEachValuesIndex] = forEach;
forEachValuesIndex++;
}
;
columnid_math_expression:
COLUMNID NUMBER OPERATOR NUMBER
{
struct ForEach forEach;
forEach.columnIndex = $2;
forEach.operator = $3;
forEach.number = $4;
for_each_values[forEachValuesIndex] = forEach;
forEachValuesIndex++;
}
;
assignment : VARIABLE '=' command
{ ;
var_values[$1] = $3;
var_def[$1] = 1;
$$ = var_values[$1];
}
;
%%
int main(void)
{
/* reset all the definition flags first */
forEachValuesIndex = 0;
reset();
yyparse();
return 0;
}