-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnalizadorLexico.l
151 lines (116 loc) · 3.46 KB
/
AnalizadorLexico.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
%{
#include "TS.h"
#include "AnalizadorSintactico.tab.h"
#include "Errores.h"
// Funcion para imprimir la ayuda
void help(){
printf("\nComandos:\n");
printf("help\t\t\tMostrar ayuda.\nload <path>\t\tCargar un fichero con instrucciones y ejecutarlas.\nvars\t\t\tMostrar las variables de la Tabla de Simbolos.\nfuns\t\t\tMostrar las funciones de la Tabla de Simbolos.\nreset\t\t\tBorrar las variables de la calculadora.\nquit / exit\t\tSalir del programa.\n");
printf("\nOperaciones disponibles y ejemplos:\n");
printf("+\tSuma \t\t a + a\n-\tResta \t\t a - a\n*\tMultiplicacion \t a * a\n/\tDivision \t a / a\n^\tElevar \t\t a ^ a\n=\tIgualar \t a = a\n\n");
printf("\n\tNota1: se puede introducir o no espacios entre las operaciones y los numeros\n");
printf("\n\tNota2: si se termina una sentencia sin \";\" el resultado no aparecera por pantalla\n\n");
}
Nodo *s;
%}
%option noyywrap
DIGITO [0-9]
ENTERO ({DIGITO}[_]?)+
CIENTIFICO {ENTERO}[eE][+-]?{ENTERO}
DECIMAL {ENTERO}"."{ENTERO}
DECIMALCIENTIFICO {DECIMAL}[eE][+-]?{ENTERO}
HELP "help"|"HELP"
SALIR "quit"|"QUIT"|"exit"|"EXIT"
ID [_a-zA-Z][_a-zA-Z0-9]*
TOKENUNICARACTER [\+\-\*\/\=\(\)\;\^]
RESET "load "|"LOAD "
FILENAME [a-zA-Z0-9]([a-zA-Z0-9])*
VARIABLE "vars"|"VARS"
FUNCION "funs"|"FUNS"
EXTENSION ([a-zA-Z])*
RUTA {FILENAME}"."?{EXTENSION}
REINICIAR "reset"|"RESET"
%%
{HELP} {
help();
printf("> ");
BEGIN(INITIAL);
}
{SALIR} {
printf("Saliendo del programa...\n");
return EXIT;
}
{REINICIAR} {
/* Funcion para mostrar las variables de la Tabla de Simbolo */
reiniciarTS();
printf("Variables eliminadas correctamente\n");
printf("> ");
BEGIN(INITIAL);
}
{RESET}{RUTA} {
/* Comando para leer un archivo y ejecutar sus expresiones matematicas */
yyin = fopen(yytext+5, "r+");
if(!yyin){
imprimirError(1, yytext+5);
yyin=stdin;
}
printf("Archivo %s abierto correctamente\n", yytext+5);
BEGIN(INITIAL);
}
{FUNCION} {
/* Funcion que muestra por pantalla las funciones almacenadas en la Tabla de Simbolos */
imprimirFunciones();
printf("> ");
BEGIN(INITIAL);
}
{VARIABLE} {
/* Funcion que muestra por pantalla las variables almacenadas en la Tabla de Simbolos */
imprimirVariables();
printf("> ");
BEGIN(INITIAL);
}
{ENTERO} {
yylval.NUM = atof(yytext);
return NUM;
}
{CIENTIFICO} {
yylval.NUM = atof(yytext);
return NUM;
}
{DECIMAL} {
yylval.NUM = atof(yytext);
return NUM;
}
{DECIMALCIENTIFICO} {
yylval.NUM = atof(yytext);
return NUM;
}
{ID} {
/* Se busca el identificador en la TS. Si no existe se indica para que se cree
en el analizador sintactico. Si existe se indica si es una variable o una constante*/
s = buscarNodo(yytext);
if(s == NULL){
s = crearNodo(yytext, VAR, 0);
yylval.VAR = s;
return VAR;
}
if(s->tipo == VAR){
yylval.VAR = s;
}
else{
yylval.FNCT = s;
}
return s->tipo;
}
{TOKENUNICARACTER} return yytext[0] ;
\n return '\n';
<<EOF>> {
fclose(yyin);
yyin=stdin;
yyrestart(yyin);
BEGIN(INITIAL);
printf("Se termino de leer el archivo\n> ");
return '\n';
}
[ \t\r\b\f] /* Simbolos que se descartan */
%%