-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate.cpp
409 lines (364 loc) · 10.7 KB
/
state.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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#include "state.h"
#include "number.h"
#include "numberexpression.h"
#include "plusbinaryexpression.h"
#include "multiplybinaryexpression.h"
#include "simpleexpression.h"
// ----------------------------------- State -----------------------------------
State::State(string name) : name(name) {
}
State::~State() {
}
string State::getName() const {
return name;
}
void State::setName(string name) {
this->name = name;
}
ostream& operator<<(ostream& os, const State& s) {
os << s.print();
return os;
}
// ----------------------------------- State 0 -----------------------------------
State0::State0(string name) : State(name) {
}
State0::~State0() {
}
string State0::print() const {
return name;
}
bool State0::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
Number *n = nullptr;
Expression *e = nullptr;
switch(s->getType()) {
case ERR :
return false;
case PO :
automate.pushState(new State2("2"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case INT :
n = (Number *) s;
automate.pushState(new State3("3"));
automate.pushSymbol(new Number(n->getNumber(), n->getType()));
automate.shift();
break;
default :
e = dynamic_cast<Expression *>(automate.topSymbol());
if(e != nullptr) {
automate.pushState(new State1("1"));
} else {
return false;
}
}
return true;
}
return false;
}
// ----------------------------------- State 1 -----------------------------------
State1::State1(string name) : State(name) {
}
State1::~State1() {
}
string State1::print() const {
return name;
}
bool State1::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
switch(s->getType()) {
case ADD :
automate.pushState(new State4("4"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case MUL :
automate.pushState(new State5("5"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case END :
automate.shift();
break;
default :
return false;
}
return true;
}
return false;
}
// ----------------------------------- State 2 -----------------------------------
State2::State2(string name) : State(name) {
}
State2::~State2() {
}
string State2::print() const {
return name;
}
bool State2::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
Number *n = nullptr;
Expression *e = nullptr;
switch(s->getType()) {
case ERR :
return false;
case PO :
automate.pushState(new State2("2"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case INT :
n = (Number *) s;
automate.pushState(new State3("3"));
automate.pushSymbol(new Number(n->getNumber(), n->getType()));
automate.shift();
break;
default :
e = dynamic_cast<Expression *>(automate.topSymbol());
if(e != nullptr) {
automate.pushState(new State6("6"));
} else {
return false;
}
}
return true;
}
return false;
}
// ----------------------------------- State 3 -----------------------------------
State3::State3(string name) : State(name) {
}
State3::~State3() {
}
string State3::print() const {
return name;
}
bool State3::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
Number *n = nullptr;
switch(s->getType()) {
case END :
case PF :
case ADD :
case MUL :
n = (Number *) automate.popSymbol();
automate.popState();
automate.pushSymbol(new NumberExpression(n->getNumber()));
delete n;
break;
default :
return false;
}
return true;
}
return false;
}
// ----------------------------------- State 4 -----------------------------------
State4::State4(string name) : State(name) {
}
State4::~State4() {
}
string State4::print() const {
return name;
}
bool State4::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
Number *n = nullptr;
Expression *e = nullptr;
switch(s->getType()) {
case ERR :
return false;
case PO :
automate.pushState(new State2("2"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case INT :
n = (Number *) s;
automate.pushState(new State3("3"));
automate.pushSymbol(new Number(n->getNumber(), n->getType()));
automate.shift();
break;
default :
e = dynamic_cast<Expression *>(automate.topSymbol());
if(e != nullptr) {
automate.pushState(new State7("7"));
} else {
return false;
}
}
return true;
}
return false;
}
// ----------------------------------- State 5 -----------------------------------
State5::State5(string name) : State(name) {
}
State5::~State5() {
}
string State5::print() const {
return name;
}
bool State5::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
Number *n = nullptr;
Expression *e = nullptr;
switch(s->getType()) {
case ERR :
return false;
case PO :
automate.pushState(new State2("2"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case INT :
n = (Number *) s;
automate.pushState(new State3("3"));
automate.pushSymbol(new Number(n->getNumber(), n->getType()));
automate.shift();
break;
default :
e = dynamic_cast<Expression *>(automate.topSymbol());
if(e != nullptr) {
automate.pushState(new State8("8"));
} else {
return false;
}
}
return true;
}
return false;
}
// ----------------------------------- State 6 -----------------------------------
State6::State6(string name) : State(name) {
}
State6::~State6() {
}
string State6::print() const {
return name;
}
bool State6::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
switch(s->getType()) {
case ADD :
automate.pushState(new State4("4"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case MUL :
automate.pushState(new State5("5"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case PF :
automate.pushState(new State9("9"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
default :
return false;
}
return true;
}
return false;
}
// ----------------------------------- State 7 -----------------------------------
State7::State7(string name) : State(name) {
}
State7::~State7() {
}
string State7::print() const {
return name;
}
bool State7::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
Expression *eL = nullptr;
Expression *eR = nullptr;
switch(s->getType()) {
case MUL :
automate.pushState(new State5("5"));
automate.pushSymbol(new Symbol(s->getType()));
automate.shift();
break;
case ADD :
case PF :
case END :
eR = (Expression *) automate.popSymbol();
delete automate.popSymbol();
eL = (Expression *) automate.popSymbol();
automate.pushSymbol(new PlusBinaryExpression(eL,eR));
automate.popState();
automate.popState();
automate.popState();
break;
default :
return false;
}
return true;
}
return false;
}
// ----------------------------------- State 8 -----------------------------------
State8::State8(string name) : State(name) {
}
State8::~State8() {
}
string State8::print() const {
return name;
}
bool State8::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
Expression *eL = nullptr;
Expression *eR = nullptr;
switch(s->getType()) {
case ADD :
case MUL :
case PF :
case END :
eR = (Expression *) automate.popSymbol();
delete automate.popSymbol(); // pour le +
eL = (Expression *) automate.popSymbol();
automate.pushSymbol(new MultiplyBinaryExpression(eL,eR));
automate.popState();
automate.popState();
automate.popState();
break;
default :
return false;
}
return true;
}
return false;
}
// ----------------------------------- State 9 -----------------------------------
State9::State9(string name) : State(name) {
}
State9::~State9() {
}
string State9::print() const {
return name;
}
bool State9::transition(Automate & automate, Symbol *s) {
if(s != nullptr) {
Expression *e = nullptr;
switch(s->getType()) {
case ADD :
case MUL :
case PF :
case END :
delete automate.popSymbol();
e = (Expression *) automate.popSymbol();
delete automate.popSymbol();
automate.pushSymbol(new SimpleExpression(e));
automate.popState();
automate.popState();
automate.popState();
break;
default :
return false;
}
return true;
}
return false;
}