-
Notifications
You must be signed in to change notification settings - Fork 0
/
PilaTablaSimbolos.cpp
145 lines (111 loc) · 3.15 KB
/
PilaTablaSimbolos.cpp
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
#include "PilaTablaSimbolos.hpp"
#include <iostream>
using namespace std;
/****************/
/* Constructora */
/****************/
PilaTablaSimbolos::PilaTablaSimbolos() {}
/********/
/* tope */
/********/
TablaSimbolos& PilaTablaSimbolos::tope() {
return pila.top().st;
}
/************/
/* empilar */
/************/
void PilaTablaSimbolos::empilar(const TablaSimbolos& st) {
Elemento *ambitoSuperior;
if (pila.empty()) {
ambitoSuperior = 0;
}
else {
ambitoSuperior = &(pila.top());
}
Elemento elemento;
elemento.ambitoSuperior = ambitoSuperior;
elemento.st = st;
pila.push(elemento);
}
/**************/
/* desempilar */
/**************/
void PilaTablaSimbolos::desempilar() {
pila.pop();
}
/***************/
/* obtenerTipo */
/***************/
string PilaTablaSimbolos::obtenerTipo(string id) {
string tipo;
if (pila.empty()) {
throw string("Error semántico. Has intentado utilizar la variable " + id + " antes de declararla.");
}
Elemento *elemento = &pila.top();
while (elemento != 0) {
try {
tipo = elemento->st.obtenerTipo(id);
return tipo;
}
catch (string error) {
elemento = elemento->ambitoSuperior;
}
}
throw string("Error semántico. Has intentado utilizar la variable " + id + " antes de declararla.");
}
/*************************/
/* obtenerTiposParametro */
/*************************/
pair<string, string> PilaTablaSimbolos::obtenerTiposParametro(string id, int numParametro) {
pair<string, string> tipos;
if (pila.empty()) {
throw string("Error semántico. Has intentado llamar al procedimiento " + id + " antes de declararlo.");
}
Elemento *elemento = &pila.top();
while (elemento != 0) {
try {
tipos = elemento->st.obtenerTiposParametro(id, numParametro);
return tipos;
}
catch (string errore) {
elemento = elemento->ambitoSuperior;
}
}
throw string("Error semántico. No se ha encontrado procedimiento con esas características."
" Puede que el nombre o el número de parámetros sean incorrectos.");
}
/*******************/
/* anadirParametro */
/*******************/
void PilaTablaSimbolos::anadirParametro(string proc, string idVar, string clasePar, string tipoVar) {
pila.top().ambitoSuperior->st.anadirParametro(proc, clasePar, tipoVar);
pila.top().st.anadirVariable(idVar, tipoVar);
}
/********************/
/* verificarNumArgs */
/********************/
void PilaTablaSimbolos::verificarNumArgs(string proc, int numArgs) {
if (pila.empty()) {
throw string("Error semántico. Has intentado llamar al procedimiento " + proc + " antes de declararlo.");
}
Elemento *elemento = &pila.top();
int numArgsAutentico = 0;
bool correcto = false;
while (elemento != 0) {
try {
numArgsAutentico = elemento->st.numArgsProcedimiento(proc);
if (numArgsAutentico != numArgs) {
throw string("Error semántico. Número de argumentos incorrecto en la llamada al procedimiento " + proc);
} else {
correcto = true;
break;
}
}
catch (string errore) {
elemento = elemento->ambitoSuperior;
}
}
if (!correcto) {
throw string("Error semántico. No se ha encontrado procedimiento " + proc + ". Puede que el nombre o el número de parámetros sean incorrectos.");
}
}