summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Query/AST/Node.php
blob: cdb58552c969b300d8421752f95d2ffdf3642b70 (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
<?php

declare(strict_types=1);

namespace Doctrine\ORM\Query\AST;

use Doctrine\ORM\Query\SqlWalker;
use Stringable;

use function get_debug_type;
use function get_object_vars;
use function is_array;
use function is_object;
use function str_repeat;
use function var_export;

use const PHP_EOL;

/**
 * Abstract class of an AST node.
 *
 * @link    www.doctrine-project.org
 */
abstract class Node implements Stringable
{
    /**
     * Double-dispatch method, supposed to dispatch back to the walker.
     *
     * Implementation is not mandatory for all nodes.
     *
     * @throws ASTException
     */
    public function dispatch(SqlWalker $walker): string
    {
        throw ASTException::noDispatchForNode($this);
    }

    /**
     * Dumps the AST Node into a string representation for information purpose only.
     */
    public function __toString(): string
    {
        return $this->dump($this);
    }

    public function dump(mixed $value): string
    {
        static $ident = 0;

        $str = '';

        if ($value instanceof Node) {
            $str  .= get_debug_type($value) . '(' . PHP_EOL;
            $props = get_object_vars($value);

            foreach ($props as $name => $prop) {
                $ident += 4;
                $str   .= str_repeat(' ', $ident) . '"' . $name . '": '
                      . $this->dump($prop) . ',' . PHP_EOL;
                $ident -= 4;
            }

            $str .= str_repeat(' ', $ident) . ')';
        } elseif (is_array($value)) {
            $ident += 4;
            $str   .= 'array(';
            $some   = false;

            foreach ($value as $k => $v) {
                $str .= PHP_EOL . str_repeat(' ', $ident) . '"'
                      . $k . '" => ' . $this->dump($v) . ',';
                $some = true;
            }

            $ident -= 4;
            $str   .= ($some ? PHP_EOL . str_repeat(' ', $ident) : '') . ')';
        } elseif (is_object($value)) {
            $str .= 'instanceof(' . get_debug_type($value) . ')';
        } else {
            $str .= var_export($value, true);
        }

        return $str;
    }
}