blob: 1ab1502c79f52a081f8f5bdbead3e458db75fbd3 (
plain)
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
  | 
#include "nodes.h"
#include "utils.h"
#include "exceptions.h"
#include <cmath>
#include <sstream>
#include <limits>
namespace SimpleParser {
OperandNode::OperandNode(double value):
	value_(value) { }
double OperandNode::solve() {
	return this->value_;
}
NodeType OperandNode::getType() {
	return NodeType::OPERAND;
}
std::string OperandNode::print() {
	std::stringstream convertStream;
	convertStream.precision(std::numeric_limits<double>::digits10);
	convertStream << this->value_;
	return convertStream.str();
}
OperatorNode::OperatorNode(TokenType token):
	operator_(token) { }
double OperatorNode::solve() {
	switch ( this->operator_ ) {
		case TokenType::OPERATOR_MULTIPLY: {
			return this->leftChild->solve() * this->rightChild->solve();
		}
		case TokenType::OPERATOR_PLUS: {
			return this->leftChild->solve() + this->rightChild->solve();
		}
		case TokenType::OPERATOR_MINUS: {
			return this->leftChild->solve() - this->rightChild->solve();
		}
		case TokenType::OPERATOR_POWER: {
			return std::pow(
				this->leftChild->solve(), this->rightChild->solve()
			);
		}
		case TokenType::OPERATOR_DIVIDE: {
			double rightChild = this->rightChild->solve();
			
			if ( rightChild != 0 ) {
				return this->leftChild->solve() / rightChild;
			}
			else {
				throw divide_exception();
			}
		}
		default: {
			throw operator_exception();
		}
	}
}
NodeType OperatorNode::getType() {
	return NodeType::OPERATOR;
}
std::string OperatorNode::print() {
	switch ( this->operator_ ) {
		case TokenType::OPERATOR_PLUS: {
			return std::string(1, '+');
		}
		case TokenType::OPERATOR_MINUS: {
			return std::string(1, '-');
		}
		case TokenType::OPERATOR_MULTIPLY: {
			return std::string(1, '*');
		}
		case TokenType::OPERATOR_DIVIDE: {
			return std::string(1, '/');
		}
		case TokenType::OPERATOR_POWER: {
			return std::string(1, '^');
		}
		default: {
			throw operator_exception();
		}
	}
}
TokenType OperatorNode::getToken() {
	return this->operator_;
}
ConstantNode::ConstantNode(std::string identifier):
	identifier_(identifier) { }
double ConstantNode::solve() {
}
NodeType ConstantNode::getType() {
	return NodeType::CONSTANT;
}
std::string ConstantNode::print() {
	return this->identifier_;
}
}
 
  |