SQLChunkProcessor.php
7.71 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php
/**
* SQLChunkProcessor.php
*
* This file implements the processor for the SQL chunks.
*
* PHP version 5
*
* LICENSE:
* Copyright (c) 2010-2014 Justin Swanhart and André Rothe
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* @author André Rothe <andre.rothe@phosco.info>
* @copyright 2010-2014 Justin Swanhart and André Rothe
* @license http://www.debian.org/misc/bsd.license BSD License (3 Clause)
* @version SVN: $Id$
*
*/
namespace PHPSQLParser\processors;
/**
* This class processes the SQL chunks.
*
* @author André Rothe <andre.rothe@phosco.info>
* @license http://www.debian.org/misc/bsd.license BSD License (3 Clause)
*
*/
class SQLChunkProcessor extends AbstractProcessor {
protected function moveLIKE(&$out) {
if (!isset($out['TABLE']['like'])) {
return;
}
$out = $this->array_insert_after($out, 'TABLE', array('LIKE' => $out['TABLE']['like']));
unset($out['TABLE']['like']);
}
public function process($out) {
if (!$out) {
return false;
}
if (!empty($out['BRACKET'])) {
// TODO: this field should be a global STATEMENT field within the output
// we could add all other categories as sub_tree, it could also work with multipe UNIONs
$processor = new BracketProcessor($this->options);
$out['BRACKET'] = $processor->process($out['BRACKET']);
}
if (!empty($out['CREATE'])) {
$processor = new CreateProcessor($this->options);
$out['CREATE'] = $processor->process($out['CREATE']);
}
if (!empty($out['TABLE'])) {
$processor = new TableProcessor($this->options);
$out['TABLE'] = $processor->process($out['TABLE']);
$this->moveLIKE($out);
}
if (!empty($out['INDEX'])) {
$processor = new IndexProcessor($this->options);
$out['INDEX'] = $processor->process($out['INDEX']);
}
if (!empty($out['EXPLAIN'])) {
$processor = new ExplainProcessor($this->options);
$out['EXPLAIN'] = $processor->process($out['EXPLAIN'], array_keys($out));
}
if (!empty($out['DESCRIBE'])) {
$processor = new DescribeProcessor($this->options);
$out['DESCRIBE'] = $processor->process($out['DESCRIBE'], array_keys($out));
}
if (!empty($out['DESC'])) {
$processor = new DescProcessor($this->options);
$out['DESC'] = $processor->process($out['DESC'], array_keys($out));
}
if (!empty($out['SELECT'])) {
$processor = new SelectProcessor($this->options);
$out['SELECT'] = $processor->process($out['SELECT']);
}
if (!empty($out['FROM'])) {
$processor = new FromProcessor($this->options);
$out['FROM'] = $processor->process($out['FROM']);
}
if (!empty($out['USING'])) {
$processor = new UsingProcessor($this->options);
$out['USING'] = $processor->process($out['USING']);
}
if (!empty($out['UPDATE'])) {
$processor = new UpdateProcessor($this->options);
$out['UPDATE'] = $processor->process($out['UPDATE']);
}
if (!empty($out['GROUP'])) {
// set empty array if we have partial SQL statement
$processor = new GroupByProcessor($this->options);
$out['GROUP'] = $processor->process($out['GROUP'], isset($out['SELECT']) ? $out['SELECT'] : array());
}
if (!empty($out['ORDER'])) {
// set empty array if we have partial SQL statement
$processor = new OrderByProcessor($this->options);
$out['ORDER'] = $processor->process($out['ORDER'], isset($out['SELECT']) ? $out['SELECT'] : array());
}
if (!empty($out['LIMIT'])) {
$processor = new LimitProcessor($this->options);
$out['LIMIT'] = $processor->process($out['LIMIT']);
}
if (!empty($out['WHERE'])) {
$processor = new WhereProcessor($this->options);
$out['WHERE'] = $processor->process($out['WHERE']);
}
if (!empty($out['HAVING'])) {
$processor = new HavingProcessor($this->options);
$out['HAVING'] = $processor->process($out['HAVING'], isset($out['SELECT']) ? $out['SELECT'] : array());
}
if (!empty($out['SET'])) {
$processor = new SetProcessor($this->options);
$out['SET'] = $processor->process($out['SET'], isset($out['UPDATE']));
}
if (!empty($out['DUPLICATE'])) {
$processor = new DuplicateProcessor($this->options);
$out['ON DUPLICATE KEY UPDATE'] = $processor->process($out['DUPLICATE']);
unset($out['DUPLICATE']);
}
if (!empty($out['INSERT'])) {
$processor = new InsertProcessor($this->options);
$out = $processor->process($out);
}
if (!empty($out['REPLACE'])) {
$processor = new ReplaceProcessor($this->options);
$out = $processor->process($out);
}
if (!empty($out['DELETE'])) {
$processor = new DeleteProcessor($this->options);
$out = $processor->process($out);
}
if (!empty($out['VALUES'])) {
$processor = new ValuesProcessor($this->options);
$out = $processor->process($out);
}
if (!empty($out['INTO'])) {
$processor = new IntoProcessor($this->options);
$out = $processor->process($out);
}
if (!empty($out['DROP'])) {
$processor = new DropProcessor($this->options);
$out['DROP'] = $processor->process($out['DROP']);
}
if (!empty($out['RENAME'])) {
$processor = new RenameProcessor($this->options);
$out['RENAME'] = $processor->process($out['RENAME']);
}
if (!empty($out['SHOW'])) {
$processor = new ShowProcessor($this->options);
$out['SHOW'] = $processor->process($out['SHOW']);
}
if (!empty($out['OPTIONS'])) {
$processor = new OptionsProcessor($this->options);
$out['OPTIONS'] = $processor->process($out['OPTIONS']);
}
if (!empty($out['WITH'])) {
$processor = new WithProcessor($this->options);
$out['WITH'] = $processor->process($out['WITH']);
}
return $out;
}
}
?>