diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2020-05-15 21:51:23 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2020-05-15 21:51:23 +0300 |
commit | cab8e2d38ae1c8c7fb75022f7d9b0539a0a86d4e (patch) | |
tree | d3107b0f586885d56b13dc65411b455a7aee37cb /src/NXP/Classes/CustomFunction.php | |
parent | 01415abc9d7f7401d9f4c09fbbec24930c65a097 (diff) |
Massive refactoring
More clean structure
Parsing without regular expressions
Diffstat (limited to 'src/NXP/Classes/CustomFunction.php')
-rw-r--r-- | src/NXP/Classes/CustomFunction.php | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/NXP/Classes/CustomFunction.php b/src/NXP/Classes/CustomFunction.php new file mode 100644 index 0000000..944f7d9 --- /dev/null +++ b/src/NXP/Classes/CustomFunction.php @@ -0,0 +1,63 @@ +<?php + + +namespace NXP\Classes; + + +use NXP\Exception\IncorrectExpressionException; +use ReflectionException; +use ReflectionFunction; + +class CustomFunction +{ + /** + * @var string + */ + public $name; + + /** + * @var callable $function + */ + public $function; + + /** + * @var int + */ + public $places; + + /** + * CustomFunction constructor. + * @param string $name + * @param callable $function + * @param int $places + * @throws ReflectionException + */ + public function __construct(string $name, callable $function, $places = null) + { + $this->name = $name; + $this->function = $function; + if ($places === null) { + $reflection = new ReflectionFunction($function); + $this->places = $reflection->getNumberOfParameters(); + } else { + $this->places = $places; + } + } + + public function execute(&$stack) + { + if (count($stack) < $this->places) { + throw new IncorrectExpressionException(); + } + $args = []; + for ($i = 0; $i < $this->places; $i++) { + array_unshift($args, array_pop($stack)->value); + } + + $result = call_user_func_array($this->function, $args); + + return new Token(Token::Literal, $result); + } + + +}
\ No newline at end of file |