-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathJoinKeyword.php
105 lines (92 loc) · 2.6 KB
/
JoinKeyword.php
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
<?php
declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Components;
use PhpMyAdmin\SqlParser\Component;
use PhpMyAdmin\SqlParser\Parsers\Conditions;
use PhpMyAdmin\SqlParser\Parsers\IndexHints;
use function array_search;
/**
* `JOIN` keyword parser.
*/
final class JoinKeyword implements Component
{
/**
* Types of join.
*/
public const JOINS = [
'CROSS JOIN' => 'CROSS',
'FULL JOIN' => 'FULL',
'FULL OUTER JOIN' => 'FULL',
'INNER JOIN' => 'INNER',
'JOIN' => 'JOIN',
'LEFT JOIN' => 'LEFT',
'LEFT OUTER JOIN' => 'LEFT',
'RIGHT JOIN' => 'RIGHT',
'RIGHT OUTER JOIN' => 'RIGHT',
'NATURAL JOIN' => 'NATURAL',
'NATURAL LEFT JOIN' => 'NATURAL LEFT',
'NATURAL RIGHT JOIN' => 'NATURAL RIGHT',
'NATURAL LEFT OUTER JOIN' => 'NATURAL LEFT OUTER',
'NATURAL RIGHT OUTER JOIN' => 'NATURAL RIGHT OUTER',
'STRAIGHT_JOIN' => 'STRAIGHT',
];
/**
* Type of this join.
*
* @see JoinKeyword::JOINS
*/
public string|null $type = null;
/**
* Join expression.
*/
public Expression|null $expr = null;
/**
* Join conditions.
*
* @var Condition[]|null
*/
public array|null $on = null;
/**
* Columns in Using clause.
*/
public ArrayObj|null $using = null;
/**
* Index hints
*
* @var IndexHint[]
*/
public array $indexHints = [];
/**
* @see JoinKeyword::JOINS
*
* @param string|null $type Join type
* @param Expression|null $expr join expression
* @param Condition[]|null $on join conditions
* @param ArrayObj|null $using columns joined
* @param IndexHint[] $indexHints index hints
*/
public function __construct(
string|null $type = null,
Expression|null $expr = null,
array|null $on = null,
ArrayObj|null $using = null,
array $indexHints = [],
) {
$this->type = $type;
$this->expr = $expr;
$this->on = $on;
$this->using = $using;
$this->indexHints = $indexHints;
}
public function build(): string
{
return array_search($this->type, self::JOINS) . ' ' . $this->expr
. ($this->indexHints !== [] ? ' ' . IndexHints::buildAll($this->indexHints) : '')
. (! empty($this->on) ? ' ON ' . Conditions::buildAll($this->on) : '')
. (! empty($this->using) ? ' USING ' . $this->using->build() : '');
}
public function __toString(): string
{
return $this->build();
}
}