-
Notifications
You must be signed in to change notification settings - Fork 0
/
token.cpp
255 lines (228 loc) · 5.56 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
#include "token.hpp"
#include "string"
#include <stdio.h>
#include <string.h>
/* La classe "token" guarda un element (en anglès token) d'una expressió:
Operadors: and, or, not, ==, !=, +, -, *, /, %, **
Operands: Números enters (tant positius com negatius), constants booleanes (T/F) i variables.*/
token::token(){
// Pre: true
// Post: Crea un token enter de valor 0
valor="0";
}
token::token(int i){
// Pre: i = I
// Post: Crea un token a partir de l'enter I
bool negatiu=false;
string aux="";
int num;
if(i<0){
i=i*-1;
negatiu=true;
aux="-";
}
while(i/10!=0){
num=i%10;
i= i/10;
num =num + 48;
valor = (char)num + valor;
}
i=i+48;
if(not negatiu) valor = (char)i + valor ;
else valor = aux + (char)i + valor;
}
token::token(bool b){
// Pre: b = B
// Post: Crea un token a partir del booleà B
if(b==true) valor="T";
else valor="F";
}
token::token(string s){
// Pre: s = S
// Post: Crea un token a partir del string S (descriu un operador o un operand)
valor=s;
}
token::token(const char s[]){
// Pre: s = S
// Post: Crea un token a partir del vector de caràcters S (descriu un operador o un operand)
int aux=strlen(s);
for (int i = 0; i < aux; i++) {
valor = valor + s[i];
}
}
token::token(const token &t){
// Pre: t = TK
// Post: Crea un token a partir del token TK (constructor per còpia)
valor=t.valor;
}
token& token:: operator=(const token &e){
// Pre: t = TK
// Post: Al p.i. se li ha assignat el token TK (operador assignació)
if(this != &e){
valor=e.valor;
}
return *this;
}
token::~token(){
// Pre: True
// Post: S'ha destruït el token del p.i. (destructora)
}
bool token::es_operador_unari() const{
// Pre: true
// Post: Indica si el p.i. és un operador unari
if(valor=="not") return true;
else return false;
}
bool token::es_operador_binari() const{
// Pre: true
// Post: Indica si el p.i. és un operador binari
if(not this->es_operador_unari()){
if(valor=="+" or valor=="-" or valor=="*") return true;
if(valor=="/" or valor=="%" or valor=="**") return true;
if(valor=="and" or valor=="or" or valor=="!=") return true;
if(valor=="==") return true;
return false;
}
else return false;
}
bool token::es_operador_commutatiu() const{
// Pre: true
// Post: Indica si el p.i. és un operador commutatiu
if(this->es_operador_binari()){
if(valor=="+" or valor=="or" or valor=="*") return true;
if(valor=="and" or valor=="==" or valor=="!=") return true;
return false;
}
else return false;
}
bool token::es_boolea() const{
// Pre: true
// Post: Indica si el p.i. és una constant booleana
if(valor=="T" or valor=="F") return true;
else return false;
}
bool token::es_enter() const{
// Pre: true
// Post: Indica si el p.i. és una constant entera
bool trobat = false;
if(valor[0]==45 and valor.size()>1){
trobat=true;
for(unsigned int i = 1; i<valor.size() and trobat; ++i){
if(valor[i]>=48 and valor[i]<=57) trobat=true;
else trobat=false;
}
}
else{
trobat=true;
for(unsigned int i = 0; i<valor.size() and trobat; ++i){
if(valor[i]>=48 and valor[i]<=57) trobat=true;
else trobat=false;
}
}
return trobat;
}
bool token::es_variable() const{
// Pre: true
// Post: Indica si el p.i. és una variable
if(this->es_boolea()) return false;
if(this->es_enter()) return false;
if(this->es_operador_binari() or this->es_operador_unari()) return false;
else{
for(unsigned int i = 0; i<valor.size(); ++i){
if ((valor[i]>=65 or valor[i]<=91) or (valor[i]>=97 or valor[i]<=123)) return true;
}
}
return false;
}
pair<int, bool> token::prioritat() const{
// Pre: true
// Post: Indica el nivell de prioritat a 'first' i si l'associativitat és d'esquerra a dreta a 'second' del p.i.
// Considerem que els operands tenen el màxim nivell de prioritat
pair<int, bool> res(8, true);
if (this->es_operador_unari()){
res.first=3;
res.second=false;
return res;
}
if(this->es_operador_binari()){
if (*this=="and"){
res.first=2;
res.second=true;
return res;
}
if(*this=="or"){
res.first=1;
res.second=true;
return res;
}
if(*this=="==" or *this=="!="){
res.first=4;
res.second=true;
return res;
}
if(*this=="+" or *this=="-"){
res.first=5;
res.second=true;
return res;
}
if(*this=="*" or *this=="/" or *this=="%"){
res.first=6;
res.second=true;
return res;
}
if(*this=="**"){
res.first=7;
res.second=false;
return res;
}
}
return res;
}
int token::to_int() const{
// Pre: El p.i. és un token número enter
// Post: Retorna el valor enter del p.i.
int numero;
if(this->es_enter()){
numero = stoi(valor);
return numero;
}
return numero=0;
}
bool token::to_bool() const{
// Pre: El p.i. és un token booleà
// Post: Retorna el valor booleà true o false del p.i.
if(this->es_boolea()){
if(valor=="T") return true;
else return false;
}
else return false;
}
string token::to_string() const{
// Pre: true
// Post: Retorna el valor del p.i. convertit en string
return valor;
}
bool token::operator==(const token &t) const{
// Pre: t = TK
// Post: Indica si el token del p.i. és igual al token TK
if(valor==t.valor) return true;
else return false;
}
bool token::operator!=(const token &t) const{
// Pre: t = TK
// Post: Indica si el token del p.i. és diferent al token TK
if(valor!=t.valor) return true;
else return false;
}
istream& operator>>(istream& is, token &t){
// Pre: El canal is conté un string amb un contingut d'un token TK
// Post: t = TK
is >> t.valor;
return is;
}
ostream& operator<<(ostream& os, const token &t){
// Pre: t = TK
// Post: S'ha escrit al canal os el contingut del token TK
os << t.valor;
return os;
}