-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken.cpp
79 lines (71 loc) · 1.52 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
#include "token.hpp"
Token::Token()
{
this->token = "";
}
Token::Token(std::string token)
{
this->token = token;
}
std::string Token::getToken() {
return this->token;
}
IntToken::IntToken(std::string token):Token(token)
{
if (token.find_first_not_of("0123456789") != std::string::npos) {
std::cerr << "Token > " << token << " < is not an IntToken" << std::endl;
exit(EXIT_FAILURE);
}
this->value = stoi(token);
}
int IntToken::getVal()
{
return this->value;
}
ParenToken::ParenToken(std::string token):Token(token)
{
if (token != "(" && token != ")") {
std::cerr << "Token > " << token << " < is not a ParenToken" << std::endl;
exit(EXIT_FAILURE);
}
if (token == "(")
this->side = LEFT;
else
this->side = RIGHT;
}
ParenSide ParenToken::getSide()
{
return this->side;
}
BinaryOpToken::BinaryOpToken(std::string token):Token(token)
{
std::vector<std::string> ops = {"+", "-", "*", "/", "^", "%"};
if (std::find(ops.begin(), ops.end(), token) == ops.end()) {
std::cerr << "Token > " << token << " < is not a BinaryOpToken" << std::endl;
exit(EXIT_FAILURE);
}
switch (token[0]) {
case '+':
this->operation = ADD;
break;
case '*':
this->operation = MUL;
break;
case '-':
this->operation = SUB;
break;
case '/':
this->operation = DIV;
break;
case '%':
this->operation = MOD;
break;
case '^':
this->operation = EXP;
break;
}
}
Operation BinaryOpToken::getBinOp()
{
return this->operation;
}