-
Notifications
You must be signed in to change notification settings - Fork 0
/
token.cpp
270 lines (242 loc) · 7.46 KB
/
token.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
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
#include "token.hpp"
//-----------Metodes privats o adicionals:
/* Funcio auxiliar per indicar si un string s es un id valid per a un token del tipus VARIABLE:
Es valid si: s no es una cadena reservada ("unassign", "e", "sqrt", "log", "exp", "evalf").
I si el codi ascii dels caracters de s estàn comprésos entre 65 i 90 o si estàn comprésos entre 97 i 122 o si són iguals a 95.
COST: O(n), sent n el tamany de l'string s. */
bool es_id_valid(const string & s)
//PRE: -
//POST: Retorna True sii s és un identificador valid per a un token del tipus VARIABLE.
// En cas contari, retorna false.
{
bool valid = not s.empty() and (s != "unassign" and s != "e" and s != "sqrt" and
s != "log" and s != "exp" and s != "evalf");
for (unsigned int i = 0; i < s.size() and valid; ++i) {
valid = valid and ((s[i] >= 65 and s[i] <= 90) or (s[i] >= 97 and s[i] <= 122) or (s[i] == 95));
}
return valid;
}
//-----------Metodes publics:
/* Constructores: Construeixen tokens pels operadors, les constants enteres,
les constants racionals, les constants reals i les variables(el seu
identificador), respectivament.
La primera constructora s'utiliza para aquells tokens que són operadors,
funcions predefinides, noms de comandes o símbols de ``puntuació''; per
tant es produeix un error si el codi és CT_ENTERA, CT_RACIONAL, CT_REAL o
VARIABLE.
L'última constructora torna un error si l'string donat no és un
identificador vàlid per una variable: ha d'estar format exclusivament per
lletres majúscules, minúscules o caràcters de subratllat _. Dit d'una altra
forma, només conté caràcters els codis ASCII dels quals estan entre 65
('A') i 90('Z'), entre 97 ('a') i 122 ('z') o el 95 ('_') i no pot
coincidir amb un nom reservat: unassign, e, sqrt, log, exp i evalf. */
/* COST: O(1). */
token::token(codi cod) throw(error)
{
if (cod == CT_ENTERA or cod == CT_RACIONAL or cod == CT_REAL or cod == VARIABLE) {
throw error(ConstructoraInadequada);
}
else {
_codi = cod;
}
}
/* COST: O(1). */
token::token(int n) throw(error)
{
p_element = new int(n);
_codi = CT_ENTERA;
}
/* COST: O(1). */
token::token(const racional & r) throw(error)
{
p_element = new racional(r);
_codi = CT_RACIONAL;
}
/* COST: O(1). */
token::token(double x) throw(error)
{
p_element = new double(x);
_codi = CT_REAL;
}
/* COST: O(1). */
token::token(const string & var_name) throw(error)
{
if (not es_id_valid(var_name))
throw error(IdentificadorIncorrecte);
else {
p_element = new string(var_name);
_codi = VARIABLE;
}
}
/* Constructora por còpia.
COST: O(1). */
token::token(const token & t) throw(error)
{
p_element = t.p_element;
_codi = t._codi;
}
/* Assignació.
COST: O(1). */
token & token::operator=(const token & t) throw(error)
{
p_element = t.p_element;
_codi = t._codi;
return *this;
}
/* Destructora.
COST: O(0). */
token::~token() throw()
{
}
/*Consultores: Retornen respectivament el codi i el valor (en el cas de
constants enteres, racionals o reals) o l'identificador (en el cas de
variables). Es produeix un error si apliquem una consultora inadequada
sobre un token, p.e. si apliquem valor_enter sobre un token que no sigui
una CT_ENTERA.*/
/* COST: O(1). */
token::codi token::tipus() const throw()
{
return _codi;
}
/* COST: O(1). */
int token::valor_enter() const throw(error)
{
if (_codi != CT_ENTERA)
throw error(ConsultoraInadequada);
else {
return *(int*)p_element;
}
}
/* COST: O(1). */
racional token::valor_racional() const throw(error)
{
if (_codi != CT_RACIONAL)
throw error(ConsultoraInadequada);
else {
return *(racional*)p_element;
}
}
/* COST: O(1). */
double token::valor_real() const throw(error)
{
if (_codi != CT_REAL)
throw error(ConsultoraInadequada);
else {
return *(double*)p_element;
}
}
/* COST: O(1). */
string token::identificador_variable() const throw(error)
{
if (_codi != VARIABLE)
throw error(ConsultoraInadequada);
else {
return *(string*)p_element;
}
}
/* Igualtat i desigualtat entre tokens. Dos tokens es consideren iguals si els
seus codis ho són i si 1) en cas de ser CT_ENTERA, CT_RACIONAL o CT_REAL,
els seus valors són iguals i 2) en cas de ser VARIABLE, tenen el mateix
nom. */
/* COST: O(1) + O(1) + O(1) = O(3). */
bool token::operator==(const token & t) const throw()
{
bool iguals = false;
iguals = (_codi == t._codi);
if (iguals) {
if (_codi == CT_ENTERA) {
iguals = (this->valor_enter() == t.valor_enter());
}
else if (_codi == CT_RACIONAL) {
iguals = (this->valor_racional() == t.valor_racional());
}
else if (_codi == CT_REAL) {
iguals = (this->valor_real() == t.valor_real());
}
else if (_codi == VARIABLE) {
iguals = (this->identificador_variable() == t.identificador_variable());
}
}
return iguals;
}
/* COST: O(3). */
bool token::operator!=(const token & t) const throw()
{
return !(*this == t);
}
/*Precedència entre tokens. L'operador > retorna cert si i només si el token
és un operador amb major precedència que l'operador del token t. Si algun
dels tokens no és un operador es produeix un error.*/
/* COST: O(1). */
bool token::operator>(const token & t) const throw(error)
{
bool b = false;
if ((_codi != EXPONENCIACIO and _codi != CANVI_DE_SIGNE and _codi != SIGNE_POSITIU and
_codi != MULTIPLICACIO and _codi != DIVISIO and _codi != SUMA and _codi != RESTA) or (
t._codi != EXPONENCIACIO and t._codi != CANVI_DE_SIGNE and t._codi != SIGNE_POSITIU and
t._codi != MULTIPLICACIO and t._codi != DIVISIO and t._codi != SUMA and t._codi != RESTA))
{
throw error(PrecedenciaEntreNoOperadors);
}
else {
if (t._codi == _codi) {
b = false;
}
else if (t._codi == EXPONENCIACIO) {
b = false;
}
else if (_codi == EXPONENCIACIO) {
b = true;
}
// MATEIX NIVELL
else if ((_codi == CANVI_DE_SIGNE or _codi == SIGNE_POSITIU) and
(t._codi == CANVI_DE_SIGNE or t._codi == SIGNE_POSITIU)) {
b = false;
}
else if ((_codi == MULTIPLICACIO or _codi == DIVISIO) and
(t._codi == MULTIPLICACIO or t._codi == DIVISIO)) {
b = false;
}
else if ((_codi == SUMA or _codi == RESTA) and
(t._codi == SUMA or t._codi == RESTA)) {
b = false;
}
else {
b = (_codi > t._codi);
}
}
return b;
}
/* COST: O(1). */
bool token::operator<(const token & t) const throw(error)
{
bool b = false;
if ((_codi != EXPONENCIACIO and _codi != CANVI_DE_SIGNE and _codi != SIGNE_POSITIU and
_codi != MULTIPLICACIO and _codi != DIVISIO and _codi != SUMA and _codi != RESTA) or (
t._codi != EXPONENCIACIO and t._codi != CANVI_DE_SIGNE and t._codi != SIGNE_POSITIU and
t._codi != MULTIPLICACIO and t._codi != DIVISIO and t._codi != SUMA and t._codi != RESTA))
{
throw error(PrecedenciaEntreNoOperadors);
}
else {
if (t._codi == _codi)
b = false;
// MATEIX NIVELL
else if ((_codi == CANVI_DE_SIGNE or _codi == SIGNE_POSITIU) and
(t._codi == CANVI_DE_SIGNE or t._codi == SIGNE_POSITIU)) {
b = false;
}
else if ((_codi == MULTIPLICACIO or _codi == DIVISIO) and
(t._codi == MULTIPLICACIO or t._codi == DIVISIO)) {
b = false;
}
else if ((_codi == SUMA or _codi == RESTA) and
(t._codi == SUMA or t._codi == RESTA)) {
b = false;
}
else {
b = !(*this > t);
}
}
return b;
}