-
Notifications
You must be signed in to change notification settings - Fork 0
/
analex.py
228 lines (183 loc) · 7.37 KB
/
analex.py
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
#!/usr/bin/env python
# coding=utf-8
import componentes
import errores
import flujo
import string
import sys
from sys import argv
from sets import ImmutableSet
class Analex:
#############################################################################
## Conjunto de palabras reservadas para comprobar si un identificador es PR
#############################################################################
PR = ImmutableSet(
["PROGRAMA", "VAR", "VECTOR", "DE", "ENTERO", "REAL", "BOOLEANO", "PROC", "FUNCION", "INICIO", "FIN", "SI",
"ENTONCES", "SINO", "MIENTRAS", "HACER", "LEE", "ESCRIBE", "Y", "O", "NO", "CIERTO", "FALSO"])
listaNumeros = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]
############################################################################
#
# Funcion: __init__
# Tarea: Constructor de la clase
# Prametros: flujo: flujo de caracteres de entrada
# Devuelve: --
#
############################################################################
def __init__(self, flujo):
# Debe completarse con los campos de la clase que se consideren necesarios
self.flujo = flujo
self.nlinea = 0 # contador de lineas para identificar errores
############################################################################
#
# Funcion: Analiza
# Tarea: Identifica los diferentes componentes lexicos
# Prametros: --
# Devuelve: Devuelve un componente lexico
#
############################################################################
def Analiza(self):
ch = self.flujo.siguiente()
## ESPACIO BLANCO ##
if ch == " ":
# quitar todos los caracteres blancos
# buscar el siguiente componente lexico que sera devuelto
### IMPORTANTE ###
# Hacer un bucle que mientras tengamos caracteres en blanco, pase al siguiente
# Una vez nos encontremos con un caracter "no en blanco" llamar otra vez a ANALIZA
return self.Analiza()
## OPERADORES ARITMETICOS ##
elif ch == "+":
return componentes.OpAdd(ch, self.nlinea)
elif ch == "-":
return componentes.OpAdd(ch, self.nlinea)
elif ch == "*":
return componentes.OpMult(ch, self.nlinea)
elif ch == "/":
return componentes.OpMult(ch, self.nlinea)
## OPERADOR RELACIONALES ##
elif ch == "<":
ch = self.flujo.siguiente()
if ch == "=":
return componentes.OpRel("<=", self.nlinea)
elif ch == ">":
return componentes.OpRel("<>", self.nlinea)
else:
self.flujo.devuelve(ch)
return componentes.OpRel("<", self.nlinea)
elif ch == ">":
ch = self.flujo.siguiente()
if ch == "=":
return componentes.OpRel(">=", self.nlinea)
else:
self.flujo.devuelve(ch)
return componentes.OpRel(">", self.nlinea)
elif ch == "=":
return componentes.OpRel(ch, self.nlinea)
## COMENTARIOS ##
elif ch == "{":
# Saltar todos los caracteres del comentario y encontrar el siguiente componente lexico
while ch != "}":
ch = self.flujo.siguiente()
ch = self.flujo.siguiente()
elif ch == "}":
return errores.ErrorLexico("Comentario no abierto") # tenemos un comentario no abierto
## ASIGNACION ##
elif ch == ":":
# Comprobar con el siguiente caracter si es una definicion de la declaracion o el operador de asignacion
ch = self.flujo.siguiente()
if ch == "=":
return componentes.OpAsigna(self.nlinea)
else:
self.flujo.devuelve(ch)
return componentes.DosPtos(self.nlinea)
## OPERADORES Y CATEGORIAS LEXICAS QUE FALTAN ##
# Completar los operadores y categorias lexicas que faltan
elif ch == "(":
return componentes.ParentAp(self.nlinea)
elif ch == ")":
return componentes.ParentCi(self.nlinea)
elif ch == "[":
return componentes.CorAp(self.nlinea)
elif ch == "]":
return componentes.CorCi(self.nlinea)
elif ch == ";":
return componentes.PtoComa(self.nlinea)
elif ch == ",":
return componentes.Coma(self.nlinea)
## CARACTERES ##
elif ch.lower() in list(string.ascii_lowercase):
ident = []
while (ch.lower() in list(string.ascii_lowercase)) or (ch in self.listaNumeros):
ident.append(ch)
ch = self.flujo.siguiente();
self.flujo.devuelve(ch)
## PALABRAS CLAVE ##
for x in self.PR:
if x == ''.join(ident):
return componentes.PR(x, self.nlinea)
return componentes.Identif(''.join(ident),self.nlinea)
## NUMEROS ##
elif any(ch == x for x in self.listaNumeros):
hayPunto = False
numero = []
numero.append(ch)
ch = self.flujo.siguiente()
lista = []
while (ch in self.listaNumeros or ch == "."):
if ch in self.listaNumeros:
numero.append(ch)
ch = self.flujo.siguiente()
else:
if not hayPunto:
numero.append(ch)
hayPunto = True
ch = self.flujo.siguiente()
else:
self.flujo.devuelve(ch)
return componentes.Numero(''.join(numero),self.nlinea)
self.flujo.devuelve(ch)
if hayPunto:
return componentes.Numero(''.join(numero),"real", self.nlinea)
else:
return componentes.Numero(''.join(numero),"entero", self.nlinea)
# Leer todos los elementos que forman el numero
# devolver el ultimo caracter que ya no pertenece al numero a la entrada
# Devolver un objeto de la categoria correspondiente
## TABULACION ##
elif ch == "\t":
# devolver el siguiente componente encontrado
return self.Analiza()
## SALTO DE LINEA ##
elif ch == "\n":
# incrementa el numero de linea ya que acabamos de saltar a otra
self.nlinea += 1
# devolver el siguiente componente encontrado
return self.Analiza()
elif ch == ".":
return componentes.Punto(self.nlinea)
elif True:
return errores.ErrorLexico("Caracter no permitido.")
############################################################################
#
# Funcion: __main__
# Tarea: Programa principal de prueba del analizador lexico
# Prametros: --
# Devuelve: --
#
############################################################################
if __name__ == "__main__":
script, filename = argv
txt = open(filename)
print("Este es tu fichero %r" % filename)
i = 0
fl = flujo.Flujo(txt)
analex = Analex(fl)
try:
c = analex.Analiza()
while c:
print(c)
c = analex.Analiza()
i = i + 1
except errores.Error as err:
sys.stderr.write("%s\n" % err)
analex.muestraError(sys.stderr)