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
|
<?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;
use NXP\Classes\Calculator;
use NXP\Classes\Lexer;
use NXP\Classes\Token;
use NXP\Classes\TokenFactory;
/**
* Class MathExecutor
* @package NXP
*/
class MathExecutor
{
/**
* @var TokenFactory
*/
private $tokenFactory;
/**
* Base math operators
*/
public function __construct()
{
$this->addDefaults();
}
public function __clone()
{
$this->addDefaults();
}
/**
* Set default operands and functions
*/
protected function addDefaults()
{
$this->tokenFactory = new TokenFactory();
$this->tokenFactory->addOperator('NXP\Classes\Token\TokenPlus');
$this->tokenFactory->addOperator('NXP\Classes\Token\TokenMinus');
$this->tokenFactory->addOperator('NXP\Classes\Token\TokenMultiply');
$this->tokenFactory->addOperator('NXP\Classes\Token\TokenDivision');
$this->tokenFactory->addOperator('NXP\Classes\Token\TokenDegree');
$this->tokenFactory->addFunction('sin', 'sin');
$this->tokenFactory->addFunction('cos', 'cos');
$this->tokenFactory->addFunction('tn', 'tan');
$this->tokenFactory->addFunction('asin', 'asin');
$this->tokenFactory->addFunction('acos', 'acos');
$this->tokenFactory->addFunction('atn', 'atan');
$this->tokenFactory->addFunction('min', 'min', 2);
$this->tokenFactory->addFunction('max', 'max', 2);
$this->tokenFactory->addFunction('avg', function($arg1, $arg2) { return ($arg1 + $arg2) / 2; }, 2);
}
/**
* Add operator to executor
*
* @param string $operatorClass Class of operator token
* @return MathExecutor
*/
public function addOperator($operatorClass)
{
$this->tokenFactory->addOperator($operatorClass);
return $this;
}
/**
* Add function to executor
*
* @param string $name Name of function
* @param callable $function Function
* @param int $places Count of arguments
* @return MathExecutor
*/
public function addFunction($name, callable $function = null, $places = 1)
{
$this->tokenFactory->addFunction($name, $function, $places);
return $this;
}
/**
* Execute expression
*
* @param $expression
* @return int|float
*/
public function execute($expression)
{
$lexer = new Lexer($this->tokenFactory);
$tokensStream = $lexer->stringToTokensStream($expression);
$tokens = $lexer->buildReversePolishNotation($tokensStream);
$calculator = new Calculator();
$result = $calculator->calculate($tokens);
return $result;
}
}
|