File: Join.php

package info (click to toggle)
doctrine 2.14.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,612 kB
  • sloc: php: 113,660; xml: 4,630; makefile: 28; sh: 14
file content (116 lines) | stat: -rw-r--r-- 3,093 bytes parent folder | download
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
113
114
115
116
<?php

declare(strict_types=1);

namespace Doctrine\ORM\Query\Expr;

use function strtoupper;

/**
 * Expression class for DQL join.
 *
 * @link    www.doctrine-project.org
 */
class Join
{
    public const INNER_JOIN = 'INNER';
    public const LEFT_JOIN  = 'LEFT';

    public const ON   = 'ON';
    public const WITH = 'WITH';

    /**
     * @var string
     * @psalm-var self::INNER_JOIN|self::LEFT_JOIN
     */
    protected $joinType;

    /** @var string */
    protected $join;

    /** @var string|null */
    protected $alias;

    /**
     * @var string|null
     * @psalm-var self::ON|self::WITH|null
     */
    protected $conditionType;

    /** @var string|Comparison|Composite|Func|null */
    protected $condition;

    /** @var string|null */
    protected $indexBy;

    /**
     * @param string                                $joinType      The condition type constant. Either INNER_JOIN or LEFT_JOIN.
     * @param string                                $join          The relationship to join.
     * @param string|null                           $alias         The alias of the join.
     * @param string|null                           $conditionType The condition type constant. Either ON or WITH.
     * @param string|Comparison|Composite|Func|null $condition     The condition for the join.
     * @param string|null                           $indexBy       The index for the join.
     * @psalm-param self::INNER_JOIN|self::LEFT_JOIN $joinType
     * @psalm-param self::ON|self::WITH|null $conditionType
     */
    public function __construct($joinType, $join, $alias = null, $conditionType = null, $condition = null, $indexBy = null)
    {
        $this->joinType      = $joinType;
        $this->join          = $join;
        $this->alias         = $alias;
        $this->conditionType = $conditionType;
        $this->condition     = $condition;
        $this->indexBy       = $indexBy;
    }

    /**
     * @return string
     * @psalm-return self::INNER_JOIN|self::LEFT_JOIN
     */
    public function getJoinType()
    {
        return $this->joinType;
    }

    /** @return string */
    public function getJoin()
    {
        return $this->join;
    }

    /** @return string|null */
    public function getAlias()
    {
        return $this->alias;
    }

    /**
     * @return string|null
     * @psalm-return self::ON|self::WITH|null
     */
    public function getConditionType()
    {
        return $this->conditionType;
    }

    /** @return string|Comparison|Composite|Func|null */
    public function getCondition()
    {
        return $this->condition;
    }

    /** @return string|null */
    public function getIndexBy()
    {
        return $this->indexBy;
    }

    /** @return string */
    public function __toString()
    {
        return strtoupper($this->joinType) . ' JOIN ' . $this->join
             . ($this->alias ? ' ' . $this->alias : '')
             . ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '')
             . ($this->condition ? ' ' . strtoupper($this->conditionType) . ' ' . $this->condition : '');
    }
}