forked from tinchotricolor22/TP-SSL-FlexYBison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.y
276 lines (234 loc) · 6.31 KB
/
parser.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
274
275
276
%{
#include <stdio.h>
#include "scanner.yy.h"
#include <dirent.h>
#define YYERROR_VERBOSE //para mostrar más descripcion en los errores
void yyerror(const char *);
void inicio(void);
void fin(void);
void asignar(const char *, const int);
void leer_id(const char *);
int valor_id(const char *);
void escribir_exp(const int val);
int operacionAditiva(const int, const char, const int);
int negativo(const char operador, const int val);
//para ejecutar los tests y parsear archivos
void ejecutar_tests();
int parsear_archivo(const char* archivo);
int ends_with(const char *str, const char *suffix);
%}
%union{
char string[100];
char character;
int integer;
}
%define "parser.tab.h"
%output = "parser.tab.c"
%token <string> ID INICIO FIN FDT LEER ESCRIBIR PARENIZQUIERDO PARENDERECHO COMA PUNTOYCOMA
%token <character> SUMA
%token <character> RESTA
%token <integer> CONSTANTE
%right ASIGNACION
%left RESTA SUMA
%type<integer> primaria expresion //lo exige bison porque si no no sabe el tipo
%type<character> operadorAditivo //lo exige bison porque si no no sabe el tipo
%%
objetivo : { inicio(); } programa FDT { fin();}
programa : INICIO listaSentencias FIN
;
listaSentencias : sentencia
| listaSentencias sentencia
;
sentencia : ID ASIGNACION expresion PUNTOYCOMA { asignar($1,$3);}
| LEER PARENIZQUIERDO listaIdentificadores PARENDERECHO PUNTOYCOMA
| ESCRIBIR PARENIZQUIERDO listaExpresiones PARENDERECHO PUNTOYCOMA
;
listaIdentificadores : ID {leer_id($1);}
| listaIdentificadores COMA ID {leer_id($3);}
;
listaExpresiones : expresion {escribir_exp($1);}
| listaExpresiones COMA expresion {escribir_exp($3);}
;
expresion : primaria
| operadorAditivo primaria { $$ = negativo($1,$2);}
| expresion operadorAditivo primaria { $$ = operacionAditiva($1,$2,$3);}
;
primaria : ID {$$ = valor_id($1)}
| CONSTANTE
| PARENIZQUIERDO expresion PARENDERECHO { $$ = $2;}
;
operadorAditivo : SUMA
| RESTA
;
%%
struct id {
char **id_nombres;
int *ids;
int id_nombres_size;
int ids_size;
} ids;
const char *declarar_nombre(const char *id) {
char **id_nombres_nuevo = realloc(ids.id_nombres, (ids.id_nombres_size + 1) * sizeof id);
if(id_nombres_nuevo != NULL) {
id_nombres_nuevo[ids.id_nombres_size] = (char *) malloc(sizeof id);
sprintf(id_nombres_nuevo[ids.id_nombres_size], id, sizeof id);
ids.id_nombres = id_nombres_nuevo;
ids.id_nombres_size++;
}
return id;
}
const int declarar_valor(const int valor) {
int *ids_nuevo = realloc(ids.ids, (ids.ids_size + 1) * sizeof valor);
if(ids_nuevo != NULL) {
ids_nuevo[ids.ids_size] = (int) malloc(sizeof valor);
ids_nuevo[ids.ids_size] = valor;
ids.ids = ids_nuevo;
ids.ids_size++;
}
return valor;
}
const int declarar_valor_en_pos(const int valor, const int pos) {
ids.ids[pos] = valor;
return valor;
}
void escribir_exp(const int val) {
printf("Valor de la expresion: %d\n", val);
}
int operacionAditiva(const int val1, const char operadorAditivo, const int val2){
switch(operadorAditivo){
case '+':
return val1 + val2;
case '-':
return val1 - val2;
}
return 0;
}
int negativo(const char operador, const int val){
if (operador == '-'){
return -val;
}
return val;
}
void leer_id(const char *id) {
printf("Valor de %s=%d\n",id,valor_id(id));
}
int valor_id(const char *id){
if(ids.ids_size > 0){
for(int i = 0;i <ids.ids_size; i++){
if (!strcmp(id,ids.id_nombres[i])){
return ids.ids[i];
}
}
}
return 0;
}
int existe_en_pos(const char *id){
if(ids.ids_size > 0){
for(int i = 0;i <ids.ids_size; i++){
if (!strcmp(id,ids.id_nombres[i])){
return i;
}
}
}
return -1;
}
void asignar(const char *id, const int valor) {
int pos = existe_en_pos(id);
if(pos == -1){
declarar_nombre(id);
declarar_valor(valor);
} else {
declarar_valor_en_pos(valor,pos);
}
}
void inicio(void) {
printf("Comienza a compilar:\n");
}
void fin(void) {
printf("Compilación terminada.\n");
}
void yyerror(const char *s){
printf("línea #%d - %s\n", yylineno, s);
return;
}
/*Se ejecutan los casos de prueba que estan dentro de la carpeta "casos"
Tener en cuenta que si bien se probo la asignación correcta y guardado en memoria,
solo se evalua si se parsea bien o mal, dependiendo lo que pida el test.
Para pasar un test:
Si termina con "OK.test", esperamos que se parsee bien (yyparse() == 0)
Si termina con "OtraCosa.test", esperamos que se parsee mal (yyparse() != 0)
*/
void ejecutar_tests() {
printf("Ejecutando tests...");
int testPass = 0;
int testFail = 0;
DIR *d;
struct dirent *dir;
d = opendir("casos");
if (d)
{
while ((dir = readdir(d)) != NULL)
{
if(ends_with(dir->d_name,".test")){
int mustPass = ends_with(dir->d_name,"OK.test"); //el result del parse debe dar 0
char buf[300];
strcpy(buf,"casos/");
strcat(buf,dir->d_name);
int result = parsear_archivo(buf);
if (mustPass){
if (result == 0){
testPass++;
}else{
testFail++;
}
}else{
if (result == 0){
testFail++;
}else{
testPass++;
}
}
}
}
closedir(d);
}
printf("TOTAL DE TESTS CORRIDOS: %d\n", testPass + testFail);
printf("Test que pasaron: %d\n", testPass);
printf("Test que fallaron: %d\n", testFail);
}
int ends_with(const char *str, const char *suffix)
{
if (!str || !suffix)
return 0;
size_t lenstr = strlen(str);
size_t lensuffix = strlen(suffix);
if (lensuffix > lenstr)
return 0;
return strncmp(str + lenstr - lensuffix, suffix, lensuffix) == 0;
}
int parsear_archivo(const char* archivo){
printf("Interpretando el archivo %s\n", archivo);
yyin = fopen(archivo, "r");
int result = yyparse();
yyrestart(yyin);
return result;
}
int main(int argc, char **argv) {
ids.ids_size = 0;
ids.id_nombres_size = 0;
if(argc > 1){
//se agrega la posibilidad de correr tests con el argumento
if (!strcmp(argv[1],"-correr_tests")){
ejecutar_tests();
} else {
/*en caso de que no este el argumento de correr_tests y haya varios argumentos,
asumimos que son archivos que tenemos que parsear */
for(int i = 1; i < argc ; i++){
parsear_archivo(argv[i]);
}
}
} else {
//caso contrario, vamos por la consola
yyparse(); // yyin = stdin
}
}