aboutsummaryrefslogtreecommitdiff
path: root/src/NXP/Classes/Operator.php
blob: 1b1acc4075c158f1cfbed4954a5c24d6d28fd930 (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
64
65
66
67
68
69
70
71
<?php

namespace NXP\Classes;

use NXP\Exception\IncorrectExpressionException;
use ReflectionFunction;

class Operator
{
    /**
     * @var string
     */
    public $operator;

    /**
     * @var bool
     */
    public $isRightAssoc;

    /**
     * @var int
     */
    public $priority;

    /**
     * @var callable(\SplStack)
     */
    public $function;

    /**
     * @var int
     */
    public $places;

    /**
     * Operator constructor.
     * @param string $operator
     * @param bool $isRightAssoc
     * @param int $priority
     * @param callable $function
     */
    public function __construct(string $operator, bool $isRightAssoc, int $priority, callable $function)
    {
        $this->operator = $operator;
        $this->isRightAssoc = $isRightAssoc;
        $this->priority = $priority;
        $this->function = $function;
        $reflection = new ReflectionFunction($function);
        $this->places = $reflection->getNumberOfParameters();
    }

    /**
     * @param array<Token> $stack
     *
     * @throws IncorrectExpressionException
     */
    public function execute(array &$stack): Token
    {
        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);
    }
}