blob: 62dbc17123304ebf7f74aa39a50daa65399c1489 (
plain) (
blame)
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
|
<?php
/**
* This file is part of the MathExecutor package
*
* (c) Alexander Kiryukhin
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code
*/
namespace NXP\Classes;
use NXP\Classes\Token\InterfaceOperator;
use NXP\Classes\Token\TokenFunction;
use NXP\Classes\Token\TokenNumber;
use NXP\Classes\Token\TokenStringSingleQuoted;
use NXP\Classes\Token\TokenStringDoubleQuoted;
use NXP\Classes\Token\TokenVariable;
use NXP\Exception\IncorrectExpressionException;
use NXP\Exception\UnknownVariableException;
/**
* @author Alexander Kiryukhin <a.kiryukhin@mail.ru>
*/
class Calculator
{
/**
* Calculate array of tokens in reverse polish notation
* @param array $tokens Array of tokens
* @param array $variables Array of variables
* @return number Result
* @throws \NXP\Exception\IncorrectExpressionException
* @throws \NXP\Exception\UnknownVariableException
*/
public function calculate($tokens, $variables)
{
$stack = [];
foreach ($tokens as $token) {
if ($token instanceof TokenNumber) {
array_push($stack, $token);
} else if ($token instanceof TokenStringDoubleQuoted) {
array_push($stack, $token);
} else if ($token instanceof TokenStringSingleQuoted) {
array_push($stack, $token);
} else if ($token instanceof TokenVariable) {
$variable = $token->getValue();
if (!array_key_exists($variable, $variables)) {
throw new UnknownVariableException($variable);
}
$value = $variables[$variable];
array_push($stack, new TokenNumber($value));
} else if ($token instanceof InterfaceOperator || $token instanceof TokenFunction) {
array_push($stack, $token->execute($stack));
}
}
$result = array_pop($stack);
if ($result === null || ! empty($stack)) {
throw new IncorrectExpressionException();
}
return $result->getValue();
}
}
|