-
Notifications
You must be signed in to change notification settings - Fork 1
/
Lexico.l
executable file
·231 lines (193 loc) · 5.67 KB
/
Lexico.l
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
%{
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "y.tab.h"
FILE *yyin;
extern int yylval;
float yyfval;
extern int numberLine = 1, numberChar;
typedef struct{
int posicion;
char nombre[30];
char tipo[20];
char valor[100];
int longitud;
} TS_reg;
extern TS_reg tabla_simb[100];
%}
%option noyywrap
%option yylineno
DIGITO [0-9]
LETRA [a-zA-Z]
CONST_STR \".*\"
COMENTARIOS \-\/({LETRA}|{DIGITO}|.)+\/\-
CONST_REAL {DIGITO}*"."{DIGITO}+|{DIGITO}+"."{DIGITO}*
CONST_INT {DIGITO}+
ID {LETRA}({LETRA}|{DIGITO}|_)*
SUM_RES "+"|"-"
MULT_DIV "*"|"/"
%%
"program" { return PROGRAM;}
"var" { return VAR;}
"endvar" { return ENDVAR;}
"beginp" { return BEGINP;}
"endp" { graba_TS(); return ENDP; }
"take" { return TAKE;}
"real" { return REAL;}
"integer" { return INTEGER;}
"string" { return STRING;}
"if" { return IF;}
"then" { return THEN;}
"else" { return ELSE;}
"endif" { return ENDIF;}
"for" { return FOR;}
"to" { return TO;}
"endfor" { return ENDFOR;}
"while" { return WHILE;}
"do" { return DO;}
"endwhile" { return ENDWHILE;}
"in" { return OP_COMPARACION;}
"repeat" { return REPEAT;}
"until" { return UNTIL;}
":=" { return OP_AS; }
":" { return DEF_TIPO;}
";" { return PUNTO_COMA; }
"[" { return CORCH_A;}
"]" { return CORCH_C;}
"(" { return P_A;}
")" { return P_C;}
"," { return COMA;}
"++" { return CONCAT_STRING; }
"<=" { return OP_COMPARACION; }
">=" { return OP_COMPARACION; }
"<>" { return OP_COMPARACION; }
"<" { return OP_COMPARACION; }
"==" { return OP_COMPARACION; }
">" { return OP_COMPARACION; }
{SUM_RES} { return OP_SURES;}
{MULT_DIV} { return OP_MULTDIV;}
"and" { return OP_LOG;}
"or" { return OP_LOG;}
"not" { return OP_NOT;}
"write" { return WRITE;}
"read" { return READ;}
{ID} {/*printf("LEXICO -> Encontre un ID %s\n", yytext);*/
yylval = inserta_TS("ID","---");
/*printf("LEXICO -> ID texto:%s valor:%d \n", yytext,yylval);*/
return ID;}
{CONST_INT} {
if(!validar_cota_int()){
yyterminate();
}
yylval = inserta_TS("CONST_INT",yytext);
return CONST_INT;
}
{CONST_STR} {
if(!validar_longitud_string(yytext)) {
yyterminate();
}
yylval = inserta_TS("CONST_STR",yytext);
return CONST_STR;
}
{CONST_REAL} {
if(!validar_cota_real()){
yyterminate();
}
yylval = inserta_TS("CONST_REAL",yytext);
return CONST_REAL;
}
{COMENTARIOS} { printf("FLEX:Encontre comentario %s\n",yytext); }
"\n" { ++numberLine; }
"\t"
%%
/*CODIGO EN C*/
/***********************INICIO DECLARACIONES*****************************/
int cant_entradas = 0;
FILE* pf_TS;
extern int busca_en_TS(char*);
int graba_TS();
int inserta_TS(char*,char*);
int validar_cota_int();
int validar_cota_real();
int validar_longitud_string(char*);
/***********************FIN DECLARACIONES********************************/
/***********************INICIO VALIDACION DE COTAS***********************/
int validar_cota_int()
{
int valor = atoi(yytext);
if(valor >32767 || valor < -32768)
{
printf("SINTAX ERROR: INT OVERFLOW\n");
return 0;
}
return 1;
}
int validar_longitud_string(char* texto){
char* p = texto;
int idx = 0;
while(idx++ < 30 && *p != '\n'){
p++;
}
if(*p != '\n'){
printf("SINTAX ERROR: STRING EXCEDE MAXIMO DE 30 CARACTERES (%s)\n", texto);
return 0;
}
return 1;
}
int validar_cota_real()
{
int valor = atof(yytext);
if(valor > 4294967295 || valor < -4294967296) {
printf("SINTAX ERROR: REAL OVERFLOW\n");
return 0;
}
return 1;
}
/***********************FIN VALIDACION DE COTAS***********************/
/***********************INICIO TABLA DE SIMBOLOS************************/
//Buscamos que no la hayamos guardado
int busca_en_TS(char* nombre) {
int i;
for(i = 0; i<cant_entradas; i++) {
if(!strcmp(tabla_simb[i].nombre, nombre)){
return i;
}
}
return -1;
}
int inserta_TS(char* tipo,char* valor){
int posicion;
if((posicion = busca_en_TS(yytext)) == -1) {
TS_reg reg;
strcpy(reg.nombre, yytext);
strcpy(reg.tipo, tipo);
strcpy(reg.valor, valor);
reg.longitud = strlen(yytext);
reg.posicion = cant_entradas;
tabla_simb[cant_entradas++] = reg;
posicion = cant_entradas-1;
}
return posicion;
}
int graba_TS(){
char* TS_file = "ts.txt";
if((pf_TS = fopen(TS_file, "w")) == NULL) {
printf("Error al grabar la tabla de simbolos \n");
exit(1);
}
fprintf(pf_TS, "POSICION \t\t NOMBRE \t\t TIPO \t\t VALOR \t\t LONGITUD \n");
int i;
for(i = 0; i < cant_entradas; i++) {
fprintf(pf_TS,"%d \t\t\t\t %s \t\t\t", tabla_simb[i].posicion, tabla_simb[i].nombre);
if(tabla_simb[i].tipo != NULL){
fprintf(pf_TS,"%s \t\t\t", tabla_simb[i].tipo);
}
if(tabla_simb[i].valor != NULL){
fprintf(pf_TS,"%s \t\t\t", tabla_simb[i].valor);
}
fprintf(pf_TS,"%d \n", tabla_simb[i].longitud);
}
fclose(pf_TS);
}
/***********************FIN TABLA DE SIMBOLOS************************/